/* ============================================================

* ─── FNHT Brand color tokens ─────────────────────────────── */
:root {
  /* Primary — deep crimson (logo red blocks) */
  --red:             #8B1A1A;
  --red-bright:      #b02222;
  --red-light:       #c94040;
 
  /* Secondary — forest green (logo green accent) */
  --green:           #3d6b41;
  --green-light:     #559459;
 
  /* Neutrals */
  --cream:           #f7f4f0;
  --warm-white:      #faf8f5;
  --dark:            #0d0b0b;
  --dark-mid:        #1a1414;
  --charcoal:        #2a2420;
  --text-body:       #2e2825;
  --text-muted:      #7a7068;
  --text-dim:        rgba(247, 244, 240, 0.50);
 
  /* Borders */
  --border:          rgba(139, 26, 26, 0.18);
  --border-light:    rgba(139, 26, 26, 0.10);
 
  /* Animation */
  --slide-duration:  1.1s;
  --ease-cinema:     cubic-bezier(0.77, 0, 0.175, 1);
}
/* ─── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }



/* ─── Shared utilities ────────────────────────────────────── */

.section-pad { padding: 7rem 0; }

.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1rem;
}
.section-heading h2 em { font-style: italic; color: var(--red); }

.section-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.75rem;
}

.heading-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--red), var(--green));
  margin: 1rem 0 0;
}
.section-heading.text-center .heading-line { margin: 1rem auto 0; }

.section-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ─── Brand button (red fill sweep) ──────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  background: transparent;
  border: 1px solid var(--red);
  padding: 0.85rem 2rem;
  position: relative; overflow: hidden; cursor: pointer;
  transition: color .4s ease;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.btn-gold:hover { color: var(--cream); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold > * { position: relative; z-index: 1; }
.btn-gold.full-width { width: 100%; justify-content: center; }

/* ─── Preloader ───────────────────────────────────────────── */
 
   

    .js-preloader.loaded {
      opacity: 0 !important;
      pointer-events: none !important;
  
    }

.js-preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, transform 0.4s ease ;
}
.js-preloader.loaded {  opacity: 0 ;
      pointer-events: none ; }
.preloader-inner { display: flex; align-items: center; gap: 0.5rem; }
.preloader-inner .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); animation: pulse 1.2s ease-in-out infinite;
}
.preloader-inner .dots { display: flex; gap: 0.35rem; }
.preloader-inner .dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(139, 26, 26, 0.35);
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader-inner .dots span:nth-child(2) { animation-delay: .2s; }
.preloader-inner .dots span:nth-child(3) { animation-delay: .4s; }
@keyframes pulse {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50%       { opacity: 1;  transform: scale(1); }
}

/* ─── Sub header ──────────────────────────────────────────── */
.sub-header {
  background: var(--dark); padding: 0.6rem 0;
  position: relative; z-index: 1000;
  border-bottom: 1px solid rgba(139, 26, 26, 0.2);
}
.sub-header .info,
.sub-header .social-links {
  list-style: none; display: flex; align-items: center;
  gap: 1.5rem; margin: 0; padding: 0;
}
.sub-header .info li,
.sub-header .social-links li a {
  font-size: 0.75rem; color: rgba(247, 244, 240, 0.55); letter-spacing: 0.05em;
}
.sub-header .info li i    { color: var(--red-light); margin-right: 0.4rem; }
.sub-header .info a       { color: rgba(247, 244, 240, 0.55); }
.sub-header .info a:hover { color: var(--red-light); }
.sub-header .social-links { justify-content: flex-end; }
.sub-header .social-links a       { transition: color .3s; }
.sub-header .social-links a:hover { color: var(--red-light); }

/* ─── Header / nav ────────────────────────────────────────── */
.header-area {
  
  position: sticky; top: 0; z-index: 999;
  border-bottom: 1px solid rgba(139, 26, 26, 0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background-color: var(--cream);
}
.header-sticky { position: sticky; top: 0; }

.main-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
 
}
.main-nav .logo img { height: 48px; width: auto; }

.main-nav .nav {
  list-style: none; display: flex; align-items: center;
  gap: 0.25rem; margin: 0; padding: 0;
}
.main-nav .nav li a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(3, 2, 0, 0.925);
  padding: 0.5rem 0.9rem; position: relative; transition: color .3s;
}
.main-nav .nav li a::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform .3s ease;
}
.main-nav .nav li a:hover,
.main-nav .nav li a.active { color: "white"; }
.main-nav .nav li a:hover::after,
.main-nav .nav li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important; color: var(--cream) !important;
  padding: 0.5rem 1.2rem !important; font-weight: 500 !important;
  transition: background .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--red-bright) !important; color: var(--cream) !important; }
/* ─── Dropdown submenu ────────────────────────────────────── */

.nav li.has-dropdown {
  position: relative;
  width: fit-content;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > a::after { display: none !important; }

.has-dropdown > a .chevron {
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  display: inline-block;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.has-dropdown:hover > a .chevron { transform: rotate(180deg); }
.has-dropdown:hover > a { color: var(--red); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: max-content;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  list-style: none;
  z-index: 200;
}

.nav li.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
 margin-right: 3rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  
  border-bottom: 1px solid var(--border-light);
  transition: color .25s, border-color .25s, background .25s;
}

.dropdown li:last-child a { border-bottom: none; }
.dropdown li a::after { display: none !important; }

.dropdown li a:hover {
  color: var(--dark);
  border-left-color: var(--red);
  background: rgba(139, 26, 26, 0.04);
}
/* ─── Mobile menu trigger ─────────────────────────────────── */
.menu-trigger {
    display: none;
    
   flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background .2s;
}


.menu-trigger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor; 
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity .25s ease,
              width .3s ease;
  margin-bottom: 5px;            
}


.menu-trigger span:nth-child(2) {
  width: 16px;
  align-self: flex-start;
}

.menu-trigger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 22px;
}
.menu-trigger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-trigger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 991px) {
    .menu-trigger {
        display: block;
    }

    .main-nav .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--warm-white);
        padding: 1rem 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-nav .nav li a {
        padding: 0.75rem 1.5rem;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav {
        flex-wrap: wrap;
        position: relative;
    }
}


/* ─── Footer ──────────────────────────────────────────────── */
.fnht-footer {
  background: var(--dark); padding: 5rem 0 2rem;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(139, 26, 26, 0.12);
  margin-bottom: 2rem;
}
.footer-logo { width: 68px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(247, 244, 240, 0.4); max-width: 280px; }

.footer-contact h5,
.footer-social h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 1.25rem;
}
.footer-contact ul { list-style: none; padding: 0; }
.footer-contact ul li {
  font-size: 0.85rem; color: rgba(247, 244, 240, 0.45);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-contact ul li i { color: var(--red-light); font-size: 0.75rem; }
.footer-contact h3 {
  color: var(--cream) !important;
}

.footer-social h3 {
  color: var(--cream) !important;
}
.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(139, 26, 26, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247, 244, 240, 0.4); font-size: 0.8rem;
  transition: border-color .3s, color .3s, background .3s;
}
.social-row a:hover {
  border-color: var(--red-light); color: var(--red-light);
  background: rgba(139, 26, 26, 0.1);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; font-size: 0.72rem;
  color: rgba(247, 244, 240, 0.2); letter-spacing: 0.1em;
}
.footer-bottom-line { flex: 1; max-width: 200px; height: 1px; background: rgba(139, 26, 26, 0.15); }




/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4.5rem 0; }
  .sub-header .social-links { justify-content: flex-start; }
  .menu-trigger { display: block; }
  .main-nav .nav { display: none; }
  .main-nav .nav.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); padding: 1rem 0;
    border-top: 1px solid rgba(139, 26, 26, 0.15);
  }
 
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-brand    { grid-column: unset; }
  .contact-info-row { grid-template-columns: 1fr; }
}