/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #b89a68;
    /* champagne gold accent */
    --primaryShade: #d9d3e4;
    /* light lavender */
    --primaryDark: #4c4162;
    /* muted plum */
    --bodyText: #261f33;
    /* aubergine ink */
  }
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('../fonts/Marcellus-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */;
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Marcellus', serif;
    color: var(--bodyText);
    overflow-x: hidden;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: #1a1a1a;
  }
  p,
  li,
  a {
    font-size: 1.125em;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: #575757;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .button-solid {
    font-size: 0.875em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: auto;
    line-height: 3.57142857em;
    height: 3.57142857em;
    text-align: center;
    padding: 0 2.14285714em;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    color: #000;
    transition: color .3s;
    transition-delay: .1s;
  }
  .button-solid:hover {
    color: #fff;
  }
  .button-solid:hover:before {
    width: 100%;
  }
  .button-solid:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    width: 0;
    transition: width .3s;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: .85vw;
  }
}
/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile - Top Drop Down */
@media only screen and (max-width: 1023px) {
  #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: auto;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primaryShade);
    width: 100%;
    height: 100%;
    box-shadow: rgba(38, 31, 51, 0.12) 0px 8px 24px;
  }
  #navigation .container {
    padding: 0.625em 0;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #navigation .logo {
    width: 3.625em;
    height: 3.625em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
  }
  #navigation .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #navigation .nav-socials,
  #navigation .nav-order {
    display: none;
  }
  #navigation .hamburger-menu {
    border: none;
    height: 3em;
    width: 3em;
    z-index: 100;
    display: block;
    background: transparent;
    padding: 0;
    position: relative;
  }
  #navigation .hamburger-menu span {
    height: 2px;
    width: 1.875em;
    background-color: var(--bodyText);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s;
  }
  #navigation .hamburger-menu span:before,
  #navigation .hamburger-menu span:after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: var(--bodyText);
    left: 0;
    transition: width .3s, left .3s, top .3s, transform .3s;
  }
  #navigation .hamburger-menu span:before {
    top: -6px;
  }
  #navigation .hamburger-menu span:after {
    top: 6px;
  }
  #navigation .hamburger-menu.clicked span {
    background-color: transparent;
  }
  #navigation .hamburger-menu.clicked span:before {
    width: 100%;
    transform: translate(-50%, -50%) rotate(225deg);
    left: 50%;
    top: 50%;
  }
  #navigation .hamburger-menu.clicked span:after {
    width: 100%;
    transform: translate(-50%, -50%) rotate(-225deg);
    left: 50%;
    top: 50%;
  }
  #navigation #navbar-menu {
    position: fixed;
    right: 0;
    left: 0;
    padding: 0;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--primaryShade);
    top: 4.875em;
    height: 0;
    min-height: 0;
    transition: height 0.3s, min-height 0.3s;
  }
  #navigation #navbar-menu ul {
    padding: 0;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(-0.4375em);
    transition: opacity .4s, transform .4s;
  }
  #navigation #navbar-menu ul li a {
    display: block;
    width: 100%;
    padding: 0.625em 1.75em;
    text-decoration: none;
    color: var(--bodyText);
    font-size: 1.125em;
    line-height: 1.6em;
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.3s, background-color 0.3s;
  }
  #navigation #navbar-menu ul li a:hover,
  #navigation #navbar-menu ul li a:focus {
    background-color: transparent;
    color: var(--primaryDark);
  }
  #navigation #navbar-menu ul .mobile-order {
    margin: 1.125em 1.75em 0;
    padding-top: 1.375em;
    border-top: 1px solid rgba(38, 31, 51, 0.16);
  }
  #navigation #navbar-menu ul .mobile-order a {
    width: fit-content;
    padding: 0.75em 1.5em;
    border: 1px solid var(--bodyText);
    color: var(--bodyText);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 0.8125em;
    line-height: 1em;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  }
  #navigation #navbar-menu ul .mobile-order a:hover,
  #navigation #navbar-menu ul .mobile-order a:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
  }
  #navigation #navbar-menu ul .mobile-socials {
    display: flex;
    align-items: center;
    gap: 1.25em;
    padding: 1.5em 1.75em;
  }
  #navigation #navbar-menu ul .mobile-socials a {
    width: 1.375em;
    height: 1.375em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #navigation #navbar-menu ul .mobile-socials a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .3s, opacity .3s;
  }
  #navigation #navbar-menu ul .mobile-socials a .icon-white {
    display: none;
  }
  #navigation #navbar-menu ul .mobile-socials a .icon-color {
    display: block;
    opacity: 1;
  }
  #navigation #navbar-menu ul .mobile-socials a:hover {
    background-color: transparent;
  }
  #navigation #navbar-menu ul .mobile-socials a:hover img {
    transform: scale(1.08);
  }
  #navigation #navbar-menu.open {
    height: calc(100vh - 78px);
    min-height: calc(100vh - 78px);
  }
  #navigation #navbar-menu.open ul li {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Desktop */
@media only screen and (min-width: 64em) {
  body.scroll #navigation .background-color-div {
    height: 100%;
    background-color: var(--primaryShade);
    box-shadow: rgba(38, 31, 51, 0.14) 0px 7px 29px 0px;
  }
  body.scroll #navigation #navbar-menu ul li a,
  body.scroll #navigation .nav-order {
    color: var(--bodyText);
  }
  body.scroll #navigation .nav-socials {
    border-left-color: rgba(38, 31, 51, 0.25);
  }
  body.scroll #navigation .nav-socials a .icon-white {
    opacity: 0;
  }
  body.scroll #navigation .nav-socials a .icon-color {
    opacity: 1;
  }
  body.scroll #navigation .nav-order {
    border-color: var(--bodyText);
  }
  #navigation {
    width: 100%;
    height: 4.625em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200000;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primaryShade);
    transition: height .3s;
  }
  #navigation .container {
    width: 92%;
    max-width: 85em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.75em;
  }
  #navigation .logo {
    margin-right: auto;
    width: 3.875em;
    height: 3.875em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
  }
  #navigation .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.75em;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
  }
  #navigation #navbar-menu ul li a {
    text-decoration: none;
    font-size: 0.875em;
    letter-spacing: .18em;
    color: #fff;
    transition: color .3s;
    position: relative;
    padding-bottom: 0.57142857em;
  }
  #navigation #navbar-menu ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width .3s;
  }
  #navigation #navbar-menu ul li a:hover:before,
  #navigation #navbar-menu ul li a.active:before {
    width: 100%;
  }
  #navigation #navbar-menu ul .mobile-order,
  #navigation #navbar-menu ul .mobile-socials {
    display: none;
  }
  #navigation .nav-socials {
    display: flex;
    align-items: center;
    gap: 1.125em;
    padding-left: 1.375em;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }
  #navigation .nav-socials a {
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
  }
  #navigation .nav-socials a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: opacity .3s, transform .3s;
  }
  #navigation .nav-socials a .icon-white {
    opacity: 1;
  }
  #navigation .nav-socials a .icon-color {
    position: absolute;
    inset: 0;
    opacity: 0;
  }
  #navigation .nav-socials a:hover img {
    transform: scale(1.08);
  }
  #navigation .nav-order {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 0.8125em;
    padding: 1em 1.84615385em;
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  }
  #navigation .nav-order:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
  }
  #navigation .hamburger-menu {
    display: none;
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #int-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 30vh;
    padding-top: 3.125em;
  }
  #int-hero:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #int-hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    color: #fff;
    font-size: 2.13333333em;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 7.8125em;
    margin-top: 1.09375em;
    margin-bottom: 0.46875em;
  }
  #int-hero p {
    color: #fff;
    text-align: center;
    max-width: 22.22222222em;
    margin: auto;
    margin-bottom: 1.66666667em;
    display: block;
    width: 96%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #int-hero {
    font-size: 16px;
  }
  #int-hero h1 {
    font-size: 4em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #int-hero {
    min-height: 18.75em;
    height: auto;
    padding-top: 11.25em;
    padding-block-end: 6.25em;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #footer {
    background-color: #1D1730;
    padding: 5em 0 0;
    overflow: hidden;
  }
  #footer .container {
    width: 92%;
    margin: auto;
  }
  #footer .left-section {
    margin-bottom: 3.125em;
  }
  #footer .left-section .logo {
    width: 4em;
    height: 4em;
    display: block;
    margin-bottom: 1.5em;
  }
  #footer .left-section .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  #footer .left-section p {
    max-width: 18.75em;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1em;
    line-height: 1.65em;
  }
  #footer .right-section {
    width: 100%;
  }
  #footer .lists {
    display: grid;
    gap: 2.625em;
  }
  #footer .lists ul {
    padding: 0;
    margin: 0;
  }
  #footer .lists ul li {
    list-style: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1em;
    line-height: 1.7em;
    margin-bottom: 0.5em;
  }
  #footer .lists ul li:last-of-type {
    margin-bottom: 0;
  }
  #footer .lists ul li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color .3s;
  }
  #footer .lists ul li a:hover {
    color: var(--primary);
  }
  #footer .lists ul li strong {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-top: 0.875em;
  }
  #footer .lists ul li span {
    display: block;
  }
  #footer .lists ul h2 {
    color: #fff;
    font-size: 1.5em;
    line-height: 1.2em;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1em;
  }
  #footer .lists ul .socials {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-top: 1.25em;
  }
  #footer .lists ul .socials a {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .lists ul .socials a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: opacity .3s, transform .3s;
  }
  #footer .lists ul .socials a:hover img {
    opacity: .8;
    transform: scale(1.08);
  }
  #footer .credit {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    margin: 4.375em auto 0;
    padding: 1.5em 1.25em;
    text-align: center;
    line-height: 1.8em;
    font-size: 0.8125em;
    letter-spacing: .08em;
  }
  #footer .credit a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1em;
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .dot {
    display: none;
  }
  #footer .credit .copyright {
    display: block;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #footer .lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125em;
  }
  #footer .credit .dot {
    display: inline;
    margin: 0 0.61538462em;
  }
  #footer .credit .copyright {
    display: inline;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #footer {
    padding: 5.625em 0 0;
  }
  #footer .container {
    max-width: 78.125em;
    display: grid;
    grid-template-columns: 16.25em 1fr;
    gap: 5em;
    align-items: start;
  }
  #footer .left-section {
    margin-bottom: 0;
  }
  #footer .lists {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7.5em;
  }
  #footer .credit {
    margin-top: 5.625em;
  }
}
