@charset "UTF-8";

/* =========================
   NAV + FOOTER
========================= */

body {
  margin: 0;
  padding: 0;
}

/* =========================
   SKIP LINK
========================= */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.nav-shell {
  max-width: 1920px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

/* =========================
   LOGO
========================= */

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f1712;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c79557 0%, #8b5b34 100%);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(139, 91, 52, 0.25);
}

.site-logo__text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(11, 15, 20, 0.06);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(11, 15, 20, 0.10);
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f1712;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   PRIMARY NAV
========================= */

.primary-nav {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 18px;
  right: 18px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(31, 23, 18, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.primary-nav.is-open {
  display: block;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu__item {
  margin: 0;
  padding: 0;
}

.main-menu__item > a,
.dropdown-toggle {
  width: 100%;
  display: block;
  padding: 13px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
}

.main-menu__item > a:hover,
.dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  padding-right: 42px;
}

.dropdown-toggle::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.85;
}

.dropdown-toggle[aria-expanded="true"]::after {
  content: "▴";
}

/* active mobile dropdown button state */
.has-dropdown.is-open > .dropdown-toggle {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-menu {
  display: none;
  list-style: none;
  margin: 4px 0 12px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.has-dropdown.is-open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-top: 10px;
}

.nav-cta__link {
  display: block;
  padding: 13px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c79557 0%, #8b5b34 100%);
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(139, 91, 52, 0.24);
}

.nav-cta__link:hover {
  filter: brightness(1.04);
}

body.nav-open {
  overflow: hidden;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: linear-gradient(180deg, #1d140f 0%, #0f0b08 100%);
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 22px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c79557 0%, #8b5b34 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(139, 91, 52, 0.25);
}

.footer-logo__text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-links-group h3 {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.4px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 16px 22px 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

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

@media screen and (min-width: 1200px) {
  .nav-shell {
    padding: 14px 22px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: block;
    position: static;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-left: auto;
  }

  .main-menu {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .main-menu__item {
    position: relative;
  }

  .main-menu__item > a,
  .dropdown-toggle {
    width: auto;
    padding: 10px 12px;
    color: #1f1712;
    font-size: 13px;
    border-radius: 12px;
  }

  .main-menu__item > a:hover,
  .dropdown-toggle:hover,
  .has-dropdown.is-open > .dropdown-toggle {
    background: rgba(11, 15, 20, 0.06);
  }

  .has-dropdown .dropdown-toggle {
    padding-right: 30px;
  }

  .dropdown-toggle::after {
    right: 12px;
  }

  /* IMPORTANT: remove the hover gap */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(31, 23, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    z-index: 5000;
  }

  /* keep menu open on hover */
  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu,
  .has-dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #ffffff;
    padding: 10px 12px;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 8px;
  }

  .nav-cta__link {
    padding: 11px 16px;
    white-space: nowrap;
  }
}


/* =========================
   1200 AND DOWN
========================= */

@media screen and (max-width: 1200px) {
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   768
========================= */

@media screen and (max-width: 768px) {
  .nav-shell {
    padding: 12px 14px;
  }

  .site-logo__text {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .primary-nav {
    left: 14px;
    right: 14px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 34px 14px 24px;
  }

  .footer-bottom {
    padding: 14px 14px 18px;
  }
}

/* =========================
   480
========================= */

@media screen and (max-width: 480px) {
  .site-logo__mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .site-logo__text {
    font-size: 11px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-menu__item > a,
  .dropdown-toggle {
    font-size: 13px;
    padding: 12px;
  }

  .dropdown-toggle {
    padding-right: 40px;
  }

  .dropdown-menu a {
    font-size: 13px;
  }

  .footer-logo__mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .footer-logo__text {
    font-size: 11px;
  }
}

/* =========================
   300
========================= */

@media screen and (max-width: 300px) {
  .nav-shell {
    padding: 10px;
    gap: 10px;
  }

  .site-logo__text {
    display: none;
  }

  .primary-nav {
    left: 10px;
    right: 10px;
  }

  .footer-logo__text {
    display: none;
  }

  .footer-shell {
    padding: 28px 10px 20px;
  }

  .footer-bottom {
    padding: 12px 10px 16px;
  }
}