/* =========================================
   Header (Luxury)
   ========================================= */
.fmh-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:999;
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(24,22,17,.82);
  backdrop-filter: blur(12px);
}

.fmh-header__inner{
  max-width:1440px;
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
@media (min-width:768px){
  .fmh-header__inner{ padding:18px 40px; }
}

.fmh-nav{
  display:none;
  align-items:center;
  gap:22px;
}
@media (min-width:1024px){
  .fmh-nav{ display:flex; }
}

.fmh-nav__link{
  font-family:"Noto Sans", sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-decoration:none;
  color: rgba(255,255,255,.78);
  transition: color .2s ease;
}
.fmh-nav__link:hover{ color: var(--primary); }

.fmh-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.fmh-brand__icon{
  color: var(--primary);
  font-size:32px;
}
.fmh-brand__name{
  font-family:"Noto Sans", sans-serif;
  font-weight:900;
  letter-spacing:-.01em;
  font-size:18px;
}
@media (min-width:768px){
  .fmh-brand__name{ font-size:20px; }
}

.fmh-menuBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:transparent;
  color:#fff;
  cursor:pointer;
}
@media (min-width:1024px){
  .fmh-menuBtn{ display:none; }
}

.fmh-mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  padding:12px 24px 18px;
}
.fmh-mobile a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  font-family:"Noto Sans", sans-serif;
  font-weight:700;
  color: rgba(255,255,255,.85);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.fmh-mobile a:hover{ color: var(--primary); }

.fmh-headerSpacer{
  height:82px;
}
@media (min-width:768px){
  .fmh-headerSpacer{ height:90px; }
}

/* =========================================
   Buttons / Links
   ========================================= */
.fmh-linkLine{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  border-bottom:1px solid var(--primary);
  padding-bottom:6px;
  font-family:"Noto Sans", sans-serif;
  font-weight:800;
  color:#fff;
}
.fmh-linkLine:hover{ color: var(--primary); }

.fmh-btnOutline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  text-decoration:none;
  font-family:"Noto Sans", sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  font-size:12px;
  color:#fff;
}
.fmh-btnOutline:hover{
  border-color: var(--primary);
  background: rgba(236,164,19,.08);
}

/* =========================================
   Marquee (your slider)
   ========================================= */
.fmh-marquee{
  overflow:hidden;
  position:relative;
}
.fmh-marquee:before,
.fmh-marquee:after{
  content:"";
  position:absolute;
  top:0;
  width:80px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.fmh-marquee:before{
  left:0;
  background: linear-gradient(to right, rgba(34,28,16,1), rgba(34,28,16,0));
}
.fmh-marquee:after{
  right:0;
  background: linear-gradient(to left, rgba(34,28,16,1), rgba(34,28,16,0));
}

.fmh-track{
  display:flex;
  align-items:center;
  gap:48px;
  width:max-content;
  will-change: transform;
  animation: fmh-marquee 18s linear infinite;
  opacity:.7;
  padding: 8px 0;
}
.fmh-marquee:hover .fmh-track{ animation-play-state: paused; }

.fmh-item{
  white-space: nowrap;
  font-family:"Noto Sans", sans-serif;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:13px;
  color: rgba(255,255,255,.85);
}
@media (max-width:768px){
  .fmh-track{ gap:28px; animation-duration:14s; }
  .fmh-item{ font-size:12px; letter-spacing:.18em; }
  .fmh-marquee:before,
  .fmh-marquee:after{ width:40px; }
}
@media (prefers-reduced-motion: reduce){
  .fmh-track{ animation:none; transform:none; }
}
@keyframes fmh-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
