html, body{
  max-width: 100%;
  overflow-x: hidden;
}

/* ---------------- Header ---------------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f6f3ec;
  border-bottom: 1px solid rgba(25, 70, 38, .12);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.header > .container{
  position: relative;
  z-index: 1;
}

.header__inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}

.brand{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
}
.brand-badge{
  display:flex;
  align-items:center;
}
.brand-badge img{
  height: 55px;
  width: auto;
  display:block;
}
.brand-badge--drawer img{
  height: 36px;
}
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 30%, #e3c982, #c49a42 70%);
  color:#17361f;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.brand__name{
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: .2px;
  color: #d9c07a;
  font-size: 26px;
  line-height: 1;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 36px;
  flex: 1;
  min-width: 0;
}
.nav a{
  color: #5c7363;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav a:hover{
  color: #194626;
}
.nav a.is-active{
  color: #d0ad58;
}
.nav a.is-active:hover{
  color: #bf983f;
}
.nav-indicator{
  display: none;
}

.header__right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 16px;
  flex: 0 0 auto;
}

.header .btn--gold{
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: .2px;
  background: transparent;
  color: #d0ad58;
  border: 1px solid rgba(208, 173, 88, .8);
  box-shadow: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.header .btn--gold:hover{
  background: rgba(208, 173, 88, .08);
  color: #bf983f;
  border-color: rgba(191, 152, 63, .9);
}

.hamburger{
  display:none;
  background: transparent;
  border: 1px solid rgba(25, 70, 38, .18);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: #194626;
  cursor:pointer;
}

.header--transparent{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: none;
}
.header--transparent .nav a{
  color: rgba(233, 226, 205, .88);
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
}
.header--transparent .nav a:hover{
  color: rgba(255, 246, 220, 1);
}
.header--transparent .nav a.is-active{
  color: #d0ad58;
}
.header--transparent .brand-badge img{
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.30));
}
.header--transparent .btn--gold{
  color: #e1c271;
  border-color: rgba(225, 194, 113, .88);
  text-shadow: 0 1px 10px rgba(0,0,0,.22);
}
.header--transparent .btn--gold:hover{
  background: rgba(225, 194, 113, .10);
  color: #f0d794;
  border-color: rgba(240, 215, 148, .92);
}
.header--transparent .hamburger{
  border-color: rgba(255,255,255,.24);
  color: rgba(233, 226, 205, .94);
}
.header--transparent.is-scrolled,
.header--transparent.is-solid{
  background: linear-gradient(180deg, #0b2213 0%, #123519 100%);
  border-bottom: 1px solid rgba(220,196,122,.16);
  box-shadow: 0 12px 30px rgba(5, 16, 10, .24);
  backdrop-filter: none;
}
.header--transparent.is-scrolled .nav a,
.header--transparent.is-solid .nav a{
  color: rgba(233, 226, 205, .88);
  text-shadow: none;
}
.header--transparent.is-scrolled .nav a:hover,
.header--transparent.is-solid .nav a:hover{
  color: rgba(255, 246, 220, 1);
}
.header--transparent.is-scrolled .nav a.is-active,
.header--transparent.is-solid .nav a.is-active{
  color: #d0ad58;
}
.header--transparent.is-scrolled .btn--gold,
.header--transparent.is-solid .btn--gold{
  color: #e1c271;
  border-color: rgba(225, 194, 113, .88);
  text-shadow: none;
}
.header--transparent.is-scrolled .hamburger,
.header--transparent.is-solid .hamburger{
  border-color: rgba(255,255,255,.24);
  color: rgba(233, 226, 205, .94);
}

/* ---------------- Mobile drawer ---------------- */
.drawer{
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 24, .58);
  backdrop-filter: none;
  display:none;
  z-index: 90;
}
.drawer[aria-hidden="false"]{ display:block; }

.drawer__panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(372px, 92vw);
  max-width: 100vw;
  box-sizing: border-box;
  background: #0f2a18;
  border-left: 1px solid rgba(220,196,122,.26);
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  box-shadow: -24px 0 56px rgba(0,0,0,.34);
  display:flex;
  flex-direction:column;
  gap: 18px;
  overflow: hidden;
}
.drawer__panel::before{
  content: none;
}
.drawer__panel::after{
  content: none;
}
.drawer__panel > *{
  position: relative;
  z-index: 1;
}
.drawer__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(220,196,122,.22);
}
.drawer__brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.drawer .hamburger{
  background: rgba(255,255,255,.03);
  border-color: rgba(220,196,122,.30);
  color: rgba(233, 226, 205, .94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 22px rgba(0,0,0,.20);
}
.drawer .hamburger:hover{
  background: rgba(220,196,122,.10);
  border-color: rgba(220,196,122,.54);
}
.drawer__nav{
  display:flex;
  flex-direction:column;
  gap: 2px;
  padding-top: 4px;
}
.drawer__nav a{
  position: relative;
  padding: 12px 30px 12px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(233, 226, 205, .92);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .01em;
  box-shadow: none;
  transition: color .2s ease, transform .2s ease;
}
.drawer__nav a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(220,196,122,.95), rgba(220,196,122,0));
  opacity: 0;
  transition: width .22s ease, opacity .22s ease;
}
.drawer__nav a::after{
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: .42;
  transition: opacity .2s ease, transform .2s ease;
}
.drawer__nav a:hover{
  color: rgba(243, 236, 216, .98);
  transform: translateX(2px);
}
.drawer__nav a:hover::before{
  width: 42%;
  opacity: .72;
}
.drawer__nav a:hover::after{
  opacity: .84;
  transform: translate(1px, -50%) rotate(45deg);
}
.drawer__nav a.is-active{
  color: rgba(239,219,158,.98);
  font-weight: 700;
}
.drawer__nav a.is-active::after{
  opacity: 1;
}
.drawer__nav a.is-active::before{
  width: 56%;
  opacity: 1;
}
.drawer__footer{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(220,196,122,.22);
}
.drawer__cta{
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
  color: #17361f !important;
  background: linear-gradient(180deg, #e7cf88 0%, #d7b060 58%, #c79e4a 100%);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 14px 30px rgba(10,25,15,.32), inset 0 1px 0 rgba(255,255,255,.42);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.drawer__cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 18px 38px rgba(10,25,15,.38), inset 0 1px 0 rgba(255,255,255,.48);
}

/* ---------------- Mobile ---------------- */
@media (max-width: 980px){
  .header__inner{ height: 74px; }
  .brand{ min-width: unset; }
  .nav{ display:none; }
  .header__right{
    min-width: unset;
    gap: 10px;
  }
  .header .btn--gold{
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.2;
    max-width: 58vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 0 8px rgba(220,196,122,.22);
  }
  .hamburger{ display:inline-grid; place-items:center; }
  .hamburger{
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .hamburger svg{
    width: 18px;
    height: 18px;
  }
  .header .brand-badge img{
    height: 49px;
  }
}

@media (max-width: 560px){
  .brand__name{ font-size: 22px; }
  .header .btn--gold{
    padding: 7px 10px;
    font-size: 10.5px;
    max-width: 54vw;
  }
  .hamburger{
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
  .hamburger svg{
    width: 16px;
    height: 16px;
  }
  .header .brand-badge img{
    height: 44px;
  }
}
