@charset "UTF-8";

/* ==========================================
   GLOBAL
========================================== */

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


/* ==========================================
   HEADER
========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(9, 12, 16, 0.38);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(10,13,17,0.92);
  border-bottom: 1px solid rgba(216,181,106,0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.header__container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  padding-left: clamp(16px,4vw,80px);
  padding-right: clamp(16px,4vw,80px);

  height: 96px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: height 0.3s ease;
}

.header.is-scrolled .header__container {
  height: 78px;
}


/* ==========================================
   BRAND
========================================== */

.header__brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;

  text-decoration: none;
  line-height: 1.1;

  color: #ffffff;

  max-width: 72%;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.header__brand:hover {
  opacity: 0.92;
}

.header__brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: #ffffff;
}

.header__brand-sub {
  margin-top: 5px;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #d8b56a;
}


/* ==========================================
   TOGGLE
========================================== */

.header__toggle {
  width: 34px;
  height: 24px;

  position: relative;

  display: none;

  border: none;
  background: transparent;

  padding: 0;
  margin: 0;

  cursor: pointer;

  flex-shrink: 0;
}

.header__toggle span {
  position: absolute;
  left: 0;

  width: 100%;
  height: 2px;

  background: #ffffff;
  border-radius: 2px;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    top 0.25s ease,
    bottom 0.25s ease;
}

.header__toggle span:nth-child(1) {
  top: 2px;
}

.header__toggle span:nth-child(2) {
  top: 11px;
}

.header__toggle span:nth-child(3) {
  bottom: 2px;
}

.header__toggle.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  bottom: 11px;
  transform: rotate(-45deg);
}


/* ==========================================
   DESKTOP NAV
========================================== */

.header__nav {
  display: block;
}

.header__menu {
  list-style: none;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu li {
  margin: 0;
  padding: 0;
}

.header__link,
.header__cta {
  text-decoration: none;
}

.header__link {
  position: relative;

  display: inline-block;

  padding: 6px 0;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.78);

  transition: color 0.25s ease;
}

.header__link:hover,
.header__link:focus {
  color: #ffffff;
}

.header__link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #d8b56a 0%,
    #b57a52 100%
  );

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform 0.25s ease;
}

.header__link:hover::after,
.header__link:focus::after,
.header__link.is-active::after {
  transform: scaleX(1);
}

.header__link.is-active {
  color: #ffffff;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 20px;

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #d8b56a 0%,
    #b57a52 100%
  );

  color: #111111;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  white-space: nowrap;

  box-shadow: 0 10px 24px rgba(0,0,0,0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.header__cta:hover,
.header__cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.24);
}


/* ==========================================
   MOBILE NAV
========================================== */

@media screen and (max-width: 1024px) {

  .header__toggle {
    display: block;
  }

  .header__nav {
    position: absolute;

    top: 96px;
    right: clamp(16px,4vw,80px);

    width: auto;
    min-width: 230px;
    max-width: calc(100vw - 32px);

    display: none;

    background: rgba(10,13,17,0.98);

    border: 1px solid rgba(216,181,106,0.18);
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  }

  .header__nav.active {
    display: block;
  }

  .header.is-scrolled .header__nav {
    top: 78px;
  }

  .header__menu {
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 8px;
  }

  .header__menu li {
    width: auto;
  }

  .header__link {
    display: block;

    width: auto;

    padding: 10px 14px;

    font-size: 12px;
    letter-spacing: 1.1px;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    white-space: nowrap;
  }

  .header__link::after {
    display: none;
  }

  .header__cta {
    width: auto;

    min-height: 40px;

    margin-top: 10px;
    margin-bottom: 2px;

    padding: 0 14px;

    font-size: 11px;

    text-align: center;

    white-space: nowrap;
  }
}


/* ==========================================
   SMALL DEVICES
========================================== */

@media screen and (max-width: 640px) {

  .header__container {
    height: 84px;
  }

  .header.is-scrolled .header__container {
    height: 72px;
  }

  .header__brand {
    max-width: 78%;
  }

  .header__brand-name {
    font-size: 15px;
    letter-spacing: 1.3px;
  }

  .header__brand-sub {
    margin-top: 4px;

    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .header__nav {
    top: 84px;
    right: 16px;
  }

  .header.is-scrolled .header__nav {
    top: 72px;
  }
}

@media screen and (max-width: 420px) {

  .header__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__brand-name {
    font-size: 14px;
  }

  .header__brand-sub {
    font-size: 9px;
  }

  .header__nav {
    min-width: 210px;
  }

  .header__link {
    font-size: 11px;
    padding: 9px 12px;
  }

  .header__cta {
    font-size: 10px;
  }
}

@media screen and (max-width: 300px) {

  .header__brand-name {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .header__brand-sub {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .header__nav {
    min-width: 190px;
  }
}