/* ================================================================
   FRESHLAND HOTELS — Master Stylesheet v3.0.0
   Forest Green #2E7D32 · Gold #C8A84B · Charcoal #1A1A1A
   Cormorant Garamond (headings) · DM Sans (body)
   ================================================================ */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --flh-green:      #2E7D32;
  --flh-green-dk:   #1B5E20;
  --flh-green-md:   #388E3C;
  --flh-green-pale: #E8F5E9;
  --flh-green-lt:   #A5D6A7;
  --flh-gold:       #C8A84B;
  --flh-gold-lt:    #E8C878;
  --flh-gold-dk:    #9E7C2A;
  --flh-charcoal:   #1A1A1A;
  --flh-gray:       #4A4A4A;
  --flh-gray-md:    #6B6B6B;
  --flh-gray-lt:    #9E9E9E;
  --flh-border:     #E0E4D8;
  --flh-cream:      #F9F9F6;
  --flh-serif:      'Cormorant Garamond', Georgia, serif;
  --flh-sans:       'DM Sans', system-ui, -apple-system, sans-serif;
  --flh-ease:       cubic-bezier(.25,.46,.45,.94);
  --flh-dur:        0.3s;
  --flh-r:          4px;
  --flh-r-md:       8px;
  --flh-r-lg:       12px;
  --flh-sh-sm:      0 2px 12px rgba(0,0,0,.07);
  --flh-sh:         0 4px 20px rgba(0,0,0,.10);
  --flh-sh-lg:      0 12px 48px rgba(0,0,0,.14);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--flh-sans); font-size: 1rem; line-height: 1.75; color: var(--flh-gray); background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--flh-dur) var(--flh-ease); }
a:hover { color: var(--flh-green); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--flh-sans); }
input, textarea, select { font-family: var(--flh-sans); }
p { margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--flh-serif); color: var(--flh-charcoal); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-family: var(--flh-sans); font-weight: 600; }

/* ── Layout ────────────────────────────────────────────────────── */
.flh-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flh-section { padding: 96px 0; }
.flh-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Section Tags ──────────────────────────────────────────────── */
.flh-section-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--flh-green); border: 1px solid var(--flh-green-lt); border-radius: 2px; padding: 5px 14px; margin-bottom: 16px; }

/* ── Section Header ────────────────────────────────────────────── */
.flh-section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.flh-section-header h2 { margin-bottom: 16px; }
.flh-section-header p { color: var(--flh-gray-md); font-size: 1.05rem; }

/* ── Buttons ───────────────────────────────────────────────────── */
.flh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-family: var(--flh-sans); font-size: .9rem; font-weight: 600; letter-spacing: .04em; border-radius: var(--flh-r); border: 2px solid transparent; transition: all var(--flh-dur) var(--flh-ease); cursor: pointer; white-space: nowrap; text-align: center; }
.flh-btn--primary { background: var(--flh-green); color: #fff; border-color: var(--flh-green); }
.flh-btn--primary:hover { background: var(--flh-green-dk); border-color: var(--flh-green-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,.3); }
.flh-btn--outline { background: transparent; color: var(--flh-green); border-color: var(--flh-green); }
.flh-btn--outline:hover { background: var(--flh-green); color: #fff; transform: translateY(-2px); }
.flh-btn--outline-lt { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.flh-btn--outline-lt:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.flh-btn--gold { background: var(--flh-gold); color: #fff; border-color: var(--flh-gold); }
.flh-btn--gold:hover { background: var(--flh-gold-dk); border-color: var(--flh-gold-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(200,168,75,.3); }
.flh-btn--wa { background: #25D366; color: #fff; border-color: #25D366; }
.flh-btn--wa:hover { background: #1DAE55; color: #fff; transform: translateY(-2px); }
.flh-btn--sm { padding: 10px 22px; font-size: .83rem; }
.flh-btn--lg { padding: 17px 40px; font-size: 1rem; }
.flh-btn--full { width: 100%; display: flex; }

/* ── Badge ─────────────────────────────────────────────────────── */
.flh-badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; background: var(--flh-gold); color: #fff; }

/* ── Topbar ────────────────────────────────────────────────────── */
.flh-topbar { background: var(--flh-green-dk); color: rgba(255,255,255,.82); font-size: .78rem; padding: 8px 0; }
.flh-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flh-topbar__links { display: flex; align-items: center; gap: 20px; }
.flh-topbar__links a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.82); transition: color .2s; }
.flh-topbar__links a:hover { color: #fff; }

/* ── Header ────────────────────────────────────────────────────── */
.flh-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--flh-border); transition: box-shadow var(--flh-dur); }
.flh-header--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
.flh-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
/* Logo */
.flh-header__logo img { max-height: 56px; width: auto; display: block; }
.flh-logo-text { display: block; text-decoration: none; line-height: 1.15; }
.flh-logo-text__name { display: block; font-family: var(--flh-serif); font-size: 1.35rem; font-weight: 700; color: var(--flh-green-dk); letter-spacing: .02em; }
.flh-logo-text__tag { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--flh-gold); }
/* Nav */
.flh-header__nav { flex: 1; display: flex; justify-content: center; }
.flh-nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.flh-nav-list > li { position: relative; }
.flh-nav-list > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: .87rem; font-weight: 500; color: var(--flh-charcoal); border-radius: var(--flh-r); transition: all var(--flh-dur); white-space: nowrap; }
.flh-nav-list > li > a:hover,
.flh-nav-list > li.current-menu-item > a,
.flh-nav-list > li.current-menu-ancestor > a { color: var(--flh-green); background: var(--flh-green-pale); }
.flh-nav-arrow { transition: transform .25s; }
.flh-nav-list > li:hover .flh-nav-arrow { transform: rotate(180deg); }
/* Dropdown */
.flh-nav-list .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid var(--flh-border); border-radius: var(--flh-r-md); box-shadow: var(--flh-sh-lg); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s var(--flh-ease); z-index: 999; list-style: none; margin: 0; }
.flh-nav-list li:hover > .sub-menu,
.flh-nav-list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.flh-nav-list .sub-menu li a { display: block; padding: 10px 20px; font-size: .87rem; color: var(--flh-charcoal); transition: all .2s; white-space: nowrap; }
.flh-nav-list .sub-menu li a:hover { background: var(--flh-cream); color: var(--flh-green); padding-left: 26px; }
/* Header actions */
.flh-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.flh-header__icon-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--flh-border); color: var(--flh-charcoal); transition: all var(--flh-dur); }
.flh-header__icon-btn:hover { background: var(--flh-green-pale); color: var(--flh-green); border-color: var(--flh-green-lt); }
.flh-header__icon-btn--wa:hover { background: #E8F5E0; color: #25D366; border-color: #A5D6A7; }
.flh-header__book { font-size: .85rem; padding: 10px 22px; }
/* Hamburger */
.flh-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 1.5px solid var(--flh-border); border-radius: var(--flh-r); }
.flh-hamburger span { display: block; width: 20px; height: 2px; background: var(--flh-charcoal); border-radius: 2px; transition: all var(--flh-dur); }
.flh-hamburger.flh-hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.flh-hamburger.flh-hamburger--open span:nth-child(2) { opacity: 0; }
.flh-hamburger.flh-hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile Menu ───────────────────────────────────────────────── */
.flh-mobile-menu { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.flh-mobile-menu.flh-mobile-menu--open { pointer-events: all; }
.flh-mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); opacity: 0; transition: opacity .3s; }
.flh-mobile-menu--open .flh-mobile-menu__overlay { opacity: 1; }
.flh-mobile-menu__panel { position: absolute; top: 0; right: 0; width: min(380px,100vw); height: 100%; background: #fff; padding: 28px; overflow-y: auto; transform: translateX(100%); transition: transform .35s var(--flh-ease); display: flex; flex-direction: column; gap: 20px; }
.flh-mobile-menu--open .flh-mobile-menu__panel { transform: translateX(0); }
.flh-mobile-menu__close { align-self: flex-end; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--flh-border); border-radius: 50%; transition: all .2s; font-size: 1.1rem; }
.flh-mobile-menu__close:hover { background: var(--flh-green); color: #fff; border-color: var(--flh-green); }
.flh-mobile-menu__brand { border-bottom: 1px solid var(--flh-border); padding-bottom: 16px; }
.flh-mobile-nav .flh-mobile-nav__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.flh-mobile-nav .flh-mobile-nav__list li a { display: block; padding: 13px 16px; font-family: var(--flh-serif); font-size: 1.2rem; font-weight: 600; color: var(--flh-charcoal); border-radius: var(--flh-r); border-left: 3px solid transparent; transition: all .2s; }
.flh-mobile-nav .flh-mobile-nav__list li a:hover,
.flh-mobile-nav .flh-mobile-nav__list li.current-menu-item a { color: var(--flh-green); background: var(--flh-green-pale); border-left-color: var(--flh-green); }
.flh-mobile-menu__ctas { display: flex; flex-direction: column; gap: 10px; }
.flh-mobile-menu__addr { font-size: .82rem; color: var(--flh-gray-md); border-top: 1px solid var(--flh-border); padding-top: 16px; }

/* ── Page Hero ─────────────────────────────────────────────────── */
.flh-page-hero { position: relative; min-height: 360px; display: flex; align-items: flex-end; background: var(--flh-green-dk) center / cover; overflow: hidden; }
.flh-page-hero__ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,94,32,.9) 0%, rgba(0,0,0,.28) 100%); z-index: 1; }
.flh-page-hero__content { position: relative; z-index: 2; padding: 60px 0 52px; width: 100%; }
.flh-page-hero__content h1 { color: #fff; margin-bottom: 10px; }
.flh-page-hero__content p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 540px; }
/* Breadcrumb */
.flh-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.flh-breadcrumb a { color: rgba(255,255,255,.6); }
.flh-breadcrumb a:hover { color: #fff; }
.flh-breadcrumb span { color: rgba(255,255,255,.35); }

/* ── Home Hero ─────────────────────────────────────────────────── */
.flh-hero-home { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.flh-hero-slides { position: absolute; inset: 0; }
.flh-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.flh-slide--active { opacity: 1; }
.flh-slide__ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,94,32,.74) 0%, rgba(0,0,0,.42) 100%); }
.flh-hero-home__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.flh-hero-home__title { font-family: var(--flh-serif); font-size: clamp(3rem,7vw,6rem); font-weight: 600; color: #fff; line-height: 1.05; margin-bottom: 20px; text-shadow: 0 3px 30px rgba(0,0,0,.2); }
.flh-hero-home__title em { font-style: italic; color: var(--flh-gold-lt); }
.flh-hero-home__sub { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 40px; line-height: 1.7; }
.flh-hero-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--flh-gold-lt); border: 1px solid rgba(200,168,75,.4); border-radius: 2px; padding: 5px 16px; margin-bottom: 20px; }
.flh-hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.flh-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); background: transparent; cursor: pointer; transition: all .3s; padding: 0; }
.flh-dot--active { background: #fff; border-color: #fff; }

/* ── Trust Bar ─────────────────────────────────────────────────── */
.flh-trust-bar { background: var(--flh-green-dk); }
.flh-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.flh-trust-item { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.flh-trust-item:last-child { border-right: none; }
.flh-ti-icon { font-size: 2rem; margin-bottom: 8px; }
.flh-ti-num { font-family: var(--flh-serif); font-size: 2.6rem; font-weight: 600; color: var(--flh-gold-lt); line-height: 1; }
.flh-ti-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ── About ─────────────────────────────────────────────────────── */
.flh-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.flh-about-imgs { position: relative; padding-bottom: 80px; }
.flh-about-img-main { border-radius: 16px; overflow: hidden; box-shadow: var(--flh-sh-lg); }
.flh-about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.flh-about-img-badge { position: absolute; bottom: 0; right: -20px; width: 52%; border-radius: 12px; overflow: hidden; border: 4px solid #fff; box-shadow: var(--flh-sh-lg); }
.flh-about-img-badge img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.flh-about-badge { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(27,94,32,.96), transparent); padding: 14px 12px; display: flex; align-items: center; gap: 8px; }
.flh-about-badge span:first-child { color: var(--flh-gold-lt); font-size: 1rem; }
.flh-about-badge span:last-child { color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.flh-about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 32px; }
.flh-about-feat { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--flh-gray); }
.flh-about-feat span { color: var(--flh-green); font-weight: 700; }

/* ── Features Grid ─────────────────────────────────────────────── */
.flh-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.flh-feat-card { display: flex; gap: 18px; padding: 28px; background: #fff; border-radius: var(--flh-r-lg); border: 1px solid var(--flh-border); box-shadow: var(--flh-sh-sm); transition: all var(--flh-dur); }
.flh-feat-card:hover { box-shadow: var(--flh-sh); transform: translateY(-3px); }
.flh-feat-card__icon { font-size: 1.8rem; flex-shrink: 0; width: 56px; height: 56px; background: var(--flh-green-pale); border-radius: var(--flh-r-md); display: flex; align-items: center; justify-content: center; }
.flh-feat-card__title { font-size: 1rem; font-weight: 600; color: var(--flh-charcoal); margin-bottom: 6px; }
.flh-feat-card__desc { font-size: .87rem; color: var(--flh-gray-md); line-height: 1.65; margin: 0; }

/* ── Rooms Grid & Cards ────────────────────────────────────────── */
.flh-rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.flh-room-card { background: #fff; border-radius: var(--flh-r-lg); overflow: hidden; border: 1px solid var(--flh-border); box-shadow: var(--flh-sh-sm); transition: all var(--flh-dur); display: flex; flex-direction: column; }
.flh-room-card:hover { transform: translateY(-6px); box-shadow: var(--flh-sh-lg); }
.flh-room-card__img { position: relative; height: 220px; overflow: hidden; background: #E8F0E8; }
.flh-room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--flh-ease); display: block; }
.flh-room-card:hover .flh-room-card__img img { transform: scale(1.06); }
.flh-room-card__img .flh-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.flh-room-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.flh-room-card__name { font-family: var(--flh-serif); font-size: 1.3rem; color: var(--flh-charcoal); margin: 0; }
.flh-room-card__desc { font-size: .88rem; color: var(--flh-gray-md); line-height: 1.6; flex: 1; margin: 0; }
.flh-prices { display: flex; flex-direction: column; gap: 5px; }
.flh-price-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; background: var(--flh-cream); border-radius: var(--flh-r); }
.flh-price-label { font-size: .73rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--flh-gray-md); }
.flh-price-val { font-size: .97rem; font-weight: 700; color: var(--flh-charcoal); }
.flh-price-val--promo { color: var(--flh-green-dk); }
.flh-room-card__actions { display: flex; gap: 8px; }
.flh-room-card__actions .flh-btn { flex: 1; font-size: .8rem; padding: 10px 12px; }

/* ── Room Hero & Detail ────────────────────────────────────────── */
.flh-room-hero { height: min(70vh,580px); background: var(--flh-green-dk) center / cover; position: relative; display: flex; align-items: flex-end; }
.flh-room-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.18) 60%, transparent 100%); }
.flh-room-hero__content { position: relative; z-index: 2; padding-bottom: 48px; width: 100%; }
.flh-room-hero__content h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.flh-room-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.flh-feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; list-style: none; padding: 0; }
.flh-feat-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; padding: 10px 12px; background: var(--flh-cream); border-radius: var(--flh-r); }
/* Price Sidebar */
.flh-price-sidebar { border: 1px solid var(--flh-border); border-radius: var(--flh-r-lg); overflow: hidden; box-shadow: var(--flh-sh); position: sticky; top: 90px; }
.flh-price-sidebar__head { background: var(--flh-green-dk); color: #fff; padding: 28px; }
.flh-price-sidebar__head h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.flh-price-sidebar__head p { color: rgba(255,255,255,.7); font-size: .86rem; margin: 0; }
.flh-price-sidebar__rates { padding: 20px 24px; display: flex; flex-direction: column; gap: 4px; }
.flh-sr { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: var(--flh-r); font-size: .9rem; }
.flh-sr--hl { background: var(--flh-green-pale); border: 1px solid var(--flh-green-lt); }
.flh-sr--hl strong { color: var(--flh-green-dk); font-size: 1.05rem; }

/* ── Pricing Table ─────────────────────────────────────────────── */
.flh-price-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 560px; }
.flh-price-table th { background: var(--flh-green-dk); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.flh-price-table td { padding: 13px 18px; border-bottom: 1px solid var(--flh-border); color: var(--flh-gray); }
.flh-price-table tr:nth-child(even) td { background: var(--flh-cream); }
.flh-price-table tr:hover td { background: var(--flh-green-pale); }
.flh-price-table td:first-child { font-weight: 600; color: var(--flh-charcoal); }
.flh-ptc { font-weight: 700; color: var(--flh-green-dk); }

/* ── Split Sections ────────────────────────────────────────────── */
.flh-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.flh-split--reverse { }
.flh-split__img { overflow: hidden; }
.flh-split__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.flh-split:hover .flh-split__img img { transform: scale(1.04); }
.flh-split__content { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.flh-halls-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.flh-ht-card { background: #fff; border-radius: var(--flh-r-md); padding: 18px; border: 1px solid var(--flh-border); }
.flh-ht-card strong { display: block; font-family: var(--flh-serif); font-size: 1.2rem; color: var(--flh-charcoal); }
.flh-ht-card span { display: block; font-size: .8rem; color: var(--flh-gray-md); margin: 3px 0; }
.flh-ht-card em { display: block; font-size: .97rem; font-style: normal; font-weight: 700; color: var(--flh-green-dk); }

/* ── Recreation ────────────────────────────────────────────────── */
.flh-rec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.flh-rec-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--flh-r-lg); padding: 36px 28px; text-align: center; transition: all .3s; }
.flh-rec-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.flh-rc-icon { font-size: 3rem; margin-bottom: 14px; }
.flh-rec-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.flh-rec-card p { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 20px; }
.flh-rc-prices { display: flex; flex-direction: column; gap: 7px; }
.flh-rc-price-row { background: rgba(255,255,255,.1); border-radius: 5px; padding: 8px 14px; display: flex; justify-content: space-between; font-size: .86rem; color: rgba(255,255,255,.82); }
.flh-rc-price-row strong { color: var(--flh-gold-lt); }

/* ── Gallery ───────────────────────────────────────────────────── */
.flh-gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.flh-filter-btn { padding: 8px 20px; border: 1.5px solid var(--flh-border); border-radius: 30px; font-size: .84rem; font-weight: 500; color: var(--flh-gray-md); background: #fff; cursor: pointer; transition: all .2s; }
.flh-filter-btn:hover, .flh-filter-btn--active { background: var(--flh-green); color: #fff; border-color: var(--flh-green); }
.flh-gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.flh-gallery-item { border-radius: var(--flh-r-md); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; }
.flh-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--flh-ease); display: block; }
.flh-gallery-item:hover img { transform: scale(1.07); }
.flh-gallery-item__overlay { position: absolute; inset: 0; background: rgba(27,94,32,0); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.flh-gallery-item:hover .flh-gallery-item__overlay { background: rgba(27,94,32,.55); }
.flh-gallery-item__icon { width: 46px; height: 46px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--flh-green); opacity: 0; transform: scale(.6); transition: all .3s; font-size: 1.5rem; font-weight: 300; }
.flh-gallery-item:hover .flh-gallery-item__icon { opacity: 1; transform: scale(1); }
/* Homepage gallery preview */
.flh-gal-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.flh-gal-item { border-radius: var(--flh-r-md); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; }
.flh-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.flh-gal-item:hover img { transform: scale(1.07); }
.flh-gal-item__ov { position: absolute; inset: 0; background: rgba(27,94,32,0); display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: 1.6rem; color: #fff; opacity: 0; }
.flh-gal-item:hover .flh-gal-item__ov { background: rgba(27,94,32,.55); opacity: 1; }

/* ── Lightbox ──────────────────────────────────────────────────── */
.flh-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 10000; display: none; align-items: center; justify-content: center; }
.flh-lightbox.flh-lightbox--open { display: flex; }
.flh-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; transition: opacity .15s; }
.flh-lightbox__close, .flh-lightbox__prev, .flh-lightbox__next { position: absolute; color: #fff; background: rgba(255,255,255,.12); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.flh-lightbox__close { top: 20px; right: 24px; width: 44px; height: 44px; font-size: 1.3rem; }
.flh-lightbox__prev { top: 50%; left: 16px; width: 52px; height: 52px; font-size: 1.8rem; transform: translateY(-50%); }
.flh-lightbox__next { top: 50%; right: 16px; width: 52px; height: 52px; font-size: 1.8rem; transform: translateY(-50%); }
.flh-lightbox__close:hover, .flh-lightbox__prev:hover, .flh-lightbox__next:hover { background: rgba(255,255,255,.25); }

/* ── Testimonials ──────────────────────────────────────────────── */
.flh-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.flh-testi-card { background: #fff; border-radius: var(--flh-r-lg); padding: 32px 28px; border: 1px solid var(--flh-border); box-shadow: var(--flh-sh-sm); position: relative; overflow: hidden; }
.flh-testi-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-family: var(--flh-serif); font-size: 6rem; color: var(--flh-green-pale); line-height: 1; pointer-events: none; }
.flh-stars { color: var(--flh-gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.flh-testi-text { font-size: .93rem; color: var(--flh-gray); line-height: 1.75; margin-bottom: 22px; font-style: italic; position: relative; z-index: 1; }
.flh-testi-author { display: flex; align-items: center; gap: 12px; }
.flh-testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--flh-green); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.flh-testi-name { font-weight: 600; font-size: .9rem; color: var(--flh-charcoal); }
.flh-testi-role { font-size: .78rem; color: var(--flh-gray-md); }

/* ── CTA Strip ─────────────────────────────────────────────────── */
.flh-cta-strip { background: var(--flh-green-dk); padding: 80px 0; }
.flh-cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.flh-cta-strip h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 8px; }
.flh-cta-strip p { color: rgba(255,255,255,.75); max-width: 500px; }

/* ── Forms ─────────────────────────────────────────────────────── */
.flh-inquiry-form { }
.flh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.flh-form-group { display: flex; flex-direction: column; gap: 7px; }
.flh-form-group--full { grid-column: 1 / -1; }
.flh-form-group label { font-size: .8rem; font-weight: 600; color: var(--flh-charcoal); letter-spacing: .04em; text-transform: uppercase; }
.flh-form-group input,
.flh-form-group select,
.flh-form-group textarea { padding: 13px 16px; border: 1.5px solid var(--flh-border); border-radius: var(--flh-r); font-size: .93rem; color: var(--flh-charcoal); background: #fff; transition: border-color var(--flh-dur); outline: none; width: 100%; font-family: var(--flh-sans); }
.flh-form-group input:focus,
.flh-form-group select:focus,
.flh-form-group textarea:focus { border-color: var(--flh-green); box-shadow: 0 0 0 3px var(--flh-green-pale); }
.flh-form-group textarea { resize: vertical; min-height: 120px; }
.flh-form-msg { padding: 13px 16px; border-radius: var(--flh-r); font-size: .9rem; margin-top: 10px; display: none; }
.flh-form-msg--success { background: var(--flh-green-pale); color: var(--flh-green-dk); border: 1px solid var(--flh-green-lt); display: block; }
.flh-form-msg--error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; display: block; }

/* ── Contact Card ──────────────────────────────────────────────── */
.flh-contact-card { background: var(--flh-green-dk); border-radius: var(--flh-r-lg); padding: 32px; }
.flh-contact-card__title { font-family: var(--flh-serif); font-size: 1.5rem; color: #fff; margin-bottom: 24px; }
.flh-contact-card__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.flh-contact-card__item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.flh-contact-card__icon { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flh-contact-card__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--flh-gold-lt); margin-bottom: 4px; }
.flh-contact-card__val { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.7; }
.flh-contact-card__val a { color: rgba(255,255,255,.82); }
.flh-contact-card__val a:hover { color: #fff; }
.flh-contact-card__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.flh-faq-list { border-top: 1px solid var(--flh-border); }
.flh-faq-item { border-bottom: 1px solid var(--flh-border); }
.flh-faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--flh-serif); font-size: 1.1rem; color: var(--flh-charcoal); transition: color .2s; }
.flh-faq-question[aria-expanded="true"] { color: var(--flh-green); }
.flh-faq-question[aria-expanded="true"] .flh-faq-icon { transform: rotate(180deg); color: var(--flh-green); }
.flh-faq-icon { transition: transform .3s; flex-shrink: 0; }
.flh-faq-answer { overflow: hidden; max-height: 0; transition: max-height .4s var(--flh-ease); }
.flh-faq-answer[open], .flh-faq-answer.flh-faq-open { max-height: 400px; }
.flh-faq-answer p { padding: 0 8px 20px; color: var(--flh-gray); font-size: .93rem; line-height: 1.75; margin: 0; }

/* ── Float Buttons ─────────────────────────────────────────────── */
.flh-float-wa { position: fixed; bottom: 104px; right: 22px; z-index: 998; background: #25D366; color: #fff; display: flex; align-items: center; gap: 10px; padding: 13px 18px 13px 15px; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,.45); font-size: .84rem; font-weight: 600; transition: all var(--flh-dur); }
.flh-float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.55); color: #fff; }
.flh-float-call { position: fixed; bottom: 36px; right: 22px; z-index: 998; background: var(--flh-green); color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(46,125,50,.45); transition: all var(--flh-dur); }
.flh-float-call:hover { background: var(--flh-green-dk); transform: translateY(-3px); color: #fff; }
.flh-back-top { position: fixed; bottom: 36px; left: 22px; z-index: 998; background: var(--flh-charcoal); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all var(--flh-dur); pointer-events: none; font-size: 1.1rem; }
.flh-back-top.flh-back-top--show { opacity: 1; transform: translateY(0); pointer-events: all; }
.flh-back-top:hover { background: var(--flh-green); }

/* ── Footer ────────────────────────────────────────────────────── */
.flh-footer { background: var(--flh-green-dk); color: rgba(255,255,255,.68); }
.flh-footer__main { padding: 80px 0 56px; }
.flh-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 56px; }
.flh-footer__heading { font-family: var(--flh-sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--flh-gold-lt); margin-bottom: 22px; }
.flh-footer__name { font-family: var(--flh-serif); font-size: 1.4rem; font-weight: 600; color: #fff; display: block; margin-bottom: 6px; }
.flh-footer__brand img { max-height: 52px; margin-bottom: 12px; filter: brightness(0) invert(1); display: block; }
.flh-footer__tagline { font-size: .88rem; line-height: 1.7; margin: 12px 0 20px; max-width: 260px; }
.flh-footer__social { display: flex; gap: 10px; }
.flh-social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: all .2s; font-size: .8rem; }
.flh-social-link:hover { background: var(--flh-green); border-color: var(--flh-green); color: #fff; }
.flh-footer__menu { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.flh-footer__menu a { font-size: .88rem; color: rgba(255,255,255,.62); transition: all .2s; display: block; }
.flh-footer__menu a:hover { color: #fff; padding-left: 6px; }
.flh-footer__contacts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.flh-footer__ci { display: flex; gap: 10px; align-items: flex-start; }
.flh-footer__ci span { font-size: .9rem; flex-shrink: 0; color: var(--flh-gold-lt); margin-top: 2px; }
.flh-footer__ci a, .flh-footer__ci div, .flh-footer__ci p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.65; margin: 0; }
.flh-footer__ci a:hover { color: #fff; }
.flh-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.flh-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.flh-footer__bottom-inner p { font-size: .78rem; color: rgba(255,255,255,.4); margin: 0; }
.flh-footer__legal { display: flex; gap: 14px; align-items: center; }
.flh-footer__legal a { font-size: .78rem; color: rgba(255,255,255,.4); }
.flh-footer__legal a:hover { color: rgba(255,255,255,.75); }
.flh-footer__legal span { color: rgba(255,255,255,.2); }

/* ── Scroll Animations ─────────────────────────────────────────── */
.flh-fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--flh-ease), transform .7s var(--flh-ease); }
.flh-fade-up--visible { opacity: 1; transform: translateY(0); }
.flh-fade-up:nth-child(2) { transition-delay: .1s; }
.flh-fade-up:nth-child(3) { transition-delay: .2s; }
.flh-fade-up:nth-child(4) { transition-delay: .3s; }
.flh-fade-up:nth-child(5) { transition-delay: .4s; }
.flh-fade-up:nth-child(6) { transition-delay: .5s; }
@keyframes flh-fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── WordPress Alignment Utilities ────────────────────────────── */
.alignnone { margin: 1rem 0; }
.aligncenter { display: block; margin: 1rem auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--flh-gray-md); text-align: center; margin-top: 6px; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .flh-rooms-grid { grid-template-columns: repeat(2,1fr); }
  .flh-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .flh-trust-grid { grid-template-columns: repeat(2,1fr); }
  .flh-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .flh-room-detail-grid { grid-template-columns: 1fr 320px; gap: 40px; }
  .flh-gallery-grid { grid-template-columns: repeat(3,1fr); }
  .flh-features-grid { grid-template-columns: repeat(2,1fr); }
  .flh-testi-grid { grid-template-columns: repeat(2,1fr); }
  .flh-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .flh-about-imgs { max-width: 500px; margin: 0 auto; }
  .flh-gal-preview { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .flh-topbar__address { display: none; }
  .flh-header__nav { display: none; }
  .flh-hamburger { display: flex; }
  .flh-header__icon-btn { display: none; }
  .flh-header__book { display: none; }
  .flh-split { grid-template-columns: 1fr; }
  .flh-split__content { padding: 48px 36px; }
  .flh-rec-grid { grid-template-columns: repeat(2,1fr); }
  .flh-cta-strip__inner { flex-direction: column; }
  .flh-halls-teaser { grid-template-columns: 1fr; }
  .flh-hero-home__title { font-size: clamp(2.4rem,8vw,4rem); }
  .flh-about-feats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .flh-section { padding: 64px 0; }
  .flh-rooms-grid { grid-template-columns: 1fr; }
  .flh-testi-grid { grid-template-columns: 1fr; }
  .flh-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .flh-gal-preview { grid-template-columns: 1fr 1fr; }
  .flh-room-detail-grid { grid-template-columns: 1fr; }
  .flh-price-sidebar { position: static; }
  .flh-feat-list { grid-template-columns: 1fr; }
  .flh-form-grid { grid-template-columns: 1fr; }
  .flh-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .flh-footer__main { padding: 56px 0 36px; }
  .flh-features-grid { grid-template-columns: 1fr; }
  .flh-rec-grid { grid-template-columns: 1fr; }
  .flh-hero-home { height: 100svh; }
  .flh-float-wa span { display: none; }
  .flh-float-wa { padding: 13px; border-radius: 50%; }
  .flh-split__content { padding: 40px 24px; }
}
