:root {
  --text: #111518;
  --primary: #fefefe;
  --primaryLight: rgba(254, 254, 254, 0.6);
  --secondary: #161616;
  --secondaryLight: rgba(22, 22, 22, 0.6);
  --tertiary: #c0a570;
  --headerColor: #161b1d;
  --stroke: #c9cfd7;
  --error: #dd2020;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
  
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html,
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}
*,
*:before,
*:after {
  /* prevents padding from affecting height and width */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023.5px */
@media only screen and (max-width: 1023.5px) {
  body.open {
    overflow: hidden;
  }
  #navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.75rem 1rem;
    background-color: var(--secondary);
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
  }
  #navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    -webkit-transition: height 0.5s,
        opacity 0.5s;
    transition: height 0.5s,
        opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #navigation.active:before {
    height: 150vh;
    opacity: 1;
  }
  #navigation.active .ul-wrapper {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  #navigation.active .li {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #navigation .container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #navigation .logo {
    width: 27%;
    max-width: 6.625rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding and border from affecting height and width */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10;
  }
  #navigation .logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    -o-object-fit: contain;
       object-fit: contain;
  }
  #navigation .toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #navigation .active .line1 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
            transform: translate(-50%, -50%) rotate(225deg);
  }
  #navigation .active .line2 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
            transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #navigation .active .line3 {
    opacity: 0;
    bottom: 100%;
  }
  #navigation .box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }
  #navigation .line {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #navigation .line1 {
    top: 0;
    -webkit-transition: top 0.3s,
        left 0.3s,
        -webkit-transform 0.5s;
    transition: top 0.3s,
        left 0.3s,
        -webkit-transform 0.5s;
    transition: transform 0.5s,
        top 0.3s,
        left 0.3s;
    transition: transform 0.5s,
        top 0.3s,
        left 0.3s,
        -webkit-transform 0.5s;
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #navigation .line2 {
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-transition: top 0.3s,
        left 0.3s,
        -webkit-transform 0.5s;
    transition: top 0.3s,
        left 0.3s,
        -webkit-transform 0.5s;
    transition: top 0.3s,
        left 0.3s,
        transform 0.5s;
    transition: top 0.3s,
        left 0.3s,
        transform 0.5s,
        -webkit-transform 0.5s;
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  #navigation .line3 {
    bottom: 0;
    -webkit-transition: bottom 0.3s,
        opacity 0.3s;
    transition: bottom 0.3s,
        opacity 0.3s;
  }
}
/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (max-width: 1023.5px) {
  #navigation .ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: var(--secondary);
    -webkit-box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
            box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transition: opacity 0.3s,
        -webkit-transform 0.4s;
    transition: opacity 0.3s,
        -webkit-transform 0.4s;
    transition: transform 0.4s,
        opacity 0.3s;
    transition: transform 0.4s,
        opacity 0.3s,
        -webkit-transform 0.4s;
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  #navigation .ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    overflow: scroll;
  }
  #navigation .li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    -webkit-transform: translateY(-4.375rem);
            transform: translateY(-4.375rem);
    -webkit-transition: opacity 0.9s,
        -webkit-transform 0.6s;
    transition: opacity 0.9s,
        -webkit-transform 0.6s;
    transition: transform 0.6s,
        opacity 0.9s;
    transition: transform 0.6s,
        opacity 0.9s,
        -webkit-transform 0.6s;
  }
  #navigation .li:nth-of-type(1) {
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
  }
  #navigation .li:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  #navigation .li:nth-of-type(3) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  #navigation .li:nth-of-type(4) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  #navigation .li:nth-of-type(5) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  #navigation .li:nth-of-type(6) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  #navigation .li:nth-of-type(7) {
    -webkit-transition-delay: 0.35s;
            transition-delay: 0.35s;
  }
  #navigation .li:nth-of-type(8) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  #navigation .li:nth-of-type(9) {
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
  }
  #navigation .li:nth-of-type(10) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  #navigation .li:nth-of-type(11) {
    -webkit-transition-delay: 0.55s;
            transition-delay: 0.55s;
  }
  #navigation .li:nth-of-type(12) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  #navigation .li:nth-of-type(13) {
    -webkit-transition-delay: 0.65s;
            transition-delay: 0.65s;
  }
  #navigation .li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--primary);
    display: inline-block;
    position: relative;
  }
  #navigation .li-link:before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }
  #navigation .li-link.active:before {
    display: block;
  }
  #navigation .button-solid {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 1024px) {
  #navigation {
    height: 100%;
    /* Collapsed width — just enough for icons + padding */
    width: 74px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(10, 10, 10, 0.85);
    position: fixed;
    z-index: 10000;
    /* The magic: smooth width transition on hover */
    -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    overflow: hidden;
    /* Show labels when nav is hovered */
  }
  #navigation:hover {
    width: 220px;
  }
  #navigation .toggle {
    display: none;
  }
  #navigation:hover .li-link {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    opacity: 1;
  }
  #navigation .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /* left-align for expand effect */
    padding: 1.25rem 0;
    gap: 0.25rem;
  }
  #navigation .nav {
    margin-top: auto;
    margin-bottom: auto;
  }
  #navigation .logo {
    width: 74px;
    /* match your collapsed nav width exactly */
    -ms-flex-negative: 0;
        flex-shrink: 0;
    /* prevent it from squishing */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.25rem 0 1.25rem;
  }
  #navigation .logo img {
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #navigation .ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
  #navigation .li {
    list-style: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 1.25rem;
    padding-left: 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    white-space: nowrap;
    /* prevents text wrapping during expansion */
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
    cursor: pointer;
  }
  #navigation .li img {
    width: 28px;
    height: 28px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    /* icon never squishes */
  }
  #navigation .li:hover .li-link::before {
    width: 100%;
  }
  #navigation .li-link {
    position: relative;
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.3rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    /* Hidden by default, fade in on nav hover */
    opacity: 0;
    -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
    /* slight delay so it fades in after width starts expanding */
  }
  #navigation .li-link::before {
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
  #navigation .li-link.active {
    color: var(--primary);
  }
}
.topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}
.title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
  font-family: "Inter", sans-serif;
}
.h3 {
  font-family: "Inter", sans-serif;
}
.form-button.back {
  color: var(--secondary);
  border: 1px solid var(--secondaryLight);
}
.form-button.forward {
  background: var(--secondary);
  color: #fff;
}
.form-button.forward:disabled {
  background: #717171;
  pointer-events: none;
}
.form-button {
  gap: 0.5rem;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: clamp(2.275rem, 3.5vw, 2.5rem);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin: 0;
  border-radius: 2rem;
  padding: 0 1rem;
  background-color: var(--primary);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  cursor: pointer;
}
.text {
  font-family: "Inter", sans-serif;
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer {
    font-size: 1rem;
  }
}
