/* ============================================================
   Lions Wedding & Banqueting Hall — premium design layer v2
   Warm-luxury direction (champagne gold · aubergine · cream).
   No navy. Cinematic hero, editorial blocks, refined motion.
   ============================================================ */

/* ---------- Fonts (enqueued via functions.php) ---------- */

:root{
  /* Warm luxury palette */
  --ink:#241019;          /* deep wine-black: dark sections + body text */
  --ink-2:#160A10;
  --plum:#3A1E2B;         /* aubergine */
  --wine:#7A2E43;         /* burgundy accent */
  --rose:#9C3E56;
  --gold:#B0894C;         /* antique gold — primary accent */
  --gold-bright:#E4C486;
  --gold-soft:#CDB68B;
  --champagne:#BCA877;    /* solid panel gold (reference) */
  --cream:#F8F2E9;        /* warm ivory background */
  --cream-2:#F1E8D9;
  --card:#FFFFFF;
  --muted:#8A756B;
  --line:#E7DAC6;
  --shadow:rgba(36,16,25,.16);
  --shadow-lg:rgba(36,16,25,.28);

  --serif:'Cormorant Garamond', Constantia, Cambria, Georgia, serif;
  --sans:'Jost', 'Segoe UI', -apple-system, system-ui, sans-serif;

  scroll-behavior:smooth;
}

*{ box-sizing:border-box; }
html, body{ overflow-x:hidden; max-width:100vw; }

/* ============================================================
   LIVE SITE FIX — this domain has its own pre-existing Divi
   Theme Builder header (a real logo + its own top bar), separate
   from the classic header we designed against. Its scroll-toggle
   JS was showing both the transparent overlay bar AND the sticky
   branded bar at once, stacked on top of our own strip — hence
   the duplicate header / horizontal-scroll glitch. Force one
   clean, always-visible state instead of relying on that JS.
   ============================================================ */
.et_pb_section_0_tb_header{ display:none !important; }
.et_pb_section_1_tb_header{
  display:block !important; position:relative !important;
  opacity:1 !important; visibility:visible !important; top:auto !important;
}

body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

/* Hide Divi's default footer — we use our own */
#main-footer, #footer-bottom, #footer-widgets{ display:none !important; }

/* Kill Divi's default page padding so full-bleed sections work */
.et_pb_section{ padding:0 !important; }
.et_pb_row{ padding:0 !important; width:100% !important; max-width:100% !important; }
.et_pb_column{ margin-bottom:0 !important; }
#main-content .container{ width:100% !important; max-width:100% !important; padding:0 !important; }
.et_builder_inner_content{ padding:0 !important; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; margin:0; color:var(--ink); }

a{ color:var(--wine); }
a:focus-visible, button:focus-visible, summary:focus-visible,
.lh-occ-card:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.lh-mono{ font-variant-numeric:tabular-nums; }

/* ============================================================
   HEADER — text logo, warm accents
   ============================================================ */
#main-header{ transition:box-shadow .35s ease, background-color .35s ease; box-shadow:0 1px 0 rgba(0,0,0,.04); }
#main-header.lh-scrolled{ box-shadow:0 10px 30px var(--shadow); }
.logo_container img#logo{ display:none !important; }
.logo_container{ position:relative; min-width:300px; display:flex; align-items:center; }

/* ---- Premium heraldic crest logo ---- */
.lh-logo{ display:inline-flex; align-items:center; gap:14px; text-decoration:none; }
.lh-emblem{ width:56px; height:56px; flex-shrink:0; filter:drop-shadow(0 2px 5px rgba(140,106,40,.28)); overflow:visible; }
/* ring draw-in + lion reveal + welcome smile */
.lh-emblem .lh-ring{ stroke-dasharray:400; stroke-dashoffset:400; }
.lh-emblem .lh-lion, .lh-emblem .lh-dot{ opacity:0; }
.lh-emblem .lh-eyes-happy, .lh-emblem .lh-mouth-smile{ opacity:0; } /* neutral face by default */
.lh-emblem .lh-lion{ transform-box:fill-box; transform-origin:center 58%; }
.lh-logo.in .lh-ring1{ animation:lhRingDraw 1.05s cubic-bezier(.4,0,.2,1) forwards; }
.lh-logo.in .lh-ring2{ animation:lhRingDraw 1.05s cubic-bezier(.4,0,.2,1) .16s forwards; }
.lh-logo.in .lh-dot{ animation:lhCrestIn .5s ease .9s forwards; }
.lh-logo.in .lh-lion{ animation:lhLionIn .8s cubic-bezier(.34,1.2,.4,1) .4s forwards; }
/* the welcome smile — plays once on load / navigation */
.lh-logo.in .lh-eyes-happy, .lh-logo.in .lh-mouth-smile{ animation:lhSmileShow 2.6s ease 1.15s 1; }
.lh-logo.in .lh-eyes-neutral, .lh-logo.in .lh-mouth-neutral{ animation:lhSmileHide 2.6s ease 1.15s 1; }
@keyframes lhRingDraw{ to{ stroke-dashoffset:0; } }
@keyframes lhCrestIn{ from{ opacity:0; } to{ opacity:1; } }
@keyframes lhLionIn{ 0%{ opacity:0; transform:scale(.55); } 60%{ opacity:1; transform:scale(1.07); } 100%{ opacity:1; transform:scale(1); } }
@keyframes lhSmileShow{ 0%,16%{opacity:0} 30%,72%{opacity:1} 88%,100%{opacity:0} }
@keyframes lhSmileHide{ 0%,16%{opacity:1} 30%,72%{opacity:0} 88%,100%{opacity:1} }
/* keep the lion visible no matter which animation is currently assigned to it */
.lh-logo.in .lh-lion{ opacity:1; }
@keyframes lhLionBob{ 0%,100%{transform:scale(1)} 45%{transform:scale(1.07)} }
/* hover: ring spins continuously for as long as the pointer stays over the logo */
/* keep the rings drawn-in once revealed, even while the spin animation below replaces lhRingDraw */
.lh-logo.in .lh-ring{ stroke-dashoffset:0; }
.lh-logo:hover .lh-ring{ animation:lhRingSpin 2.6s linear infinite; transform-origin:60px 60px; }
@keyframes lhRingSpin{ to{ transform:rotate(360deg); } }

/* ---- Image-based lion (user asset, deep gold via mask) ---- */
.lh-emblem-img{ position:relative; display:inline-block; width:58px; height:58px; flex-shrink:0; }
.lh-emblem-rings{ position:absolute; inset:0; width:100%; height:100%; overflow:visible; filter:drop-shadow(0 1px 3px rgba(120,84,20,.3)); }
/* soft gold glow inside the ring, behind the lion */
.lh-emblem-img:before{ content:""; position:absolute; inset:11%; border-radius:50%; z-index:0;
  background:radial-gradient(circle at 50% 42%, rgba(240,205,120,.35), rgba(240,205,120,.08) 55%, transparent 72%); }
.lh-lion-img{
  position:absolute; inset:14%; z-index:1;
  /* deep, metallic gold with a bright sheen band */
  background:linear-gradient(125deg, #F7DE90 0%, #E4BC55 16%, #C0912F 38%, #9C6E1B 60%, #F3D888 76%, #A9781F 92%, #7C5613 100%);
  background-size:240% 240%;
  background-position:74% 32%;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-size:contain; mask-size:contain;
  opacity:0; transform:scale(.55); transform-origin:center 55%;
  filter:drop-shadow(0 1px 2px rgba(110,74,14,.45));
}
.lh-logo.in .lh-emblem-img .lh-lion-img{ animation:lhLionIn .85s cubic-bezier(.34,1.2,.4,1) .4s forwards, lhLionShine 1.7s ease 1.15s 1; }
/* keep the lion fully visible & full-size once revealed, regardless of any other
   animation later assigned to it (fixes it vanishing on hover) */
.lh-logo.in .lh-lion-img{ opacity:1; transform:scale(1); }
@keyframes lhLionShine{ 0%{ background-position:130% 32%; } 100%{ background-position:-30% 32%; } }
/* welcome glow pulse once on load / navigation */
.lh-logo.in .lh-emblem-img{ animation:lhWelcomeGlow 2.2s ease 1.15s 1; }
@keyframes lhWelcomeGlow{ 0%,100%{ filter:none; } 45%{ filter:drop-shadow(0 0 9px rgba(236,200,120,.9)); } }
/* hover: gentle glow + the ring spin (defined above) — lion itself stays put */
.lh-logo:hover .lh-emblem-img{ filter:drop-shadow(0 0 6px rgba(236,200,120,.6)); }
/* footer image-lion — static, visible */
.lh-logo-footer .lh-lion-img{ opacity:1 !important; transform:none !important; }
#main-header.lh-scrolled .lh-emblem-img{ width:50px; height:50px; }

.lh-logo-text{ display:flex; flex-direction:column; line-height:1; }
.lh-logo-name{ font-family:var(--serif); font-weight:600; font-size:27px; letter-spacing:.28em; color:var(--ink); padding-left:.28em;
  opacity:0; transform:translateY(6px); transition:opacity .7s ease .35s, transform .7s cubic-bezier(.2,.7,.2,1) .35s; }
.lh-logo-rule{ height:1px; width:0; margin:7px 0 6px; background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transition:width .8s cubic-bezier(.4,0,.2,1) .7s; align-self:stretch; }
.lh-logo-sub{ font-family:var(--sans); font-weight:500; font-size:8.5px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold);
  opacity:0; transition:opacity .7s ease .85s; text-align:center; }
.lh-logo.in .lh-logo-name{ opacity:1; transform:none; }
.lh-logo.in .lh-logo-rule{ width:100%; }
.lh-logo.in .lh-logo-sub{ opacity:1; }
#main-header.lh-scrolled .lh-emblem{ width:48px; height:48px; }
#main-header.lh-scrolled .lh-logo-name{ font-size:24px; }
#top-menu li a{ font-family:var(--sans) !important; font-weight:500 !important; letter-spacing:.02em; color:var(--ink) !important; }
#top-menu li a:hover{ color:var(--gold) !important; }

/* Info ribbon — sits BELOW the site's own real header, not sticky
   (this site already has its own logo/nav header; this strip is a
   secondary info row, not a competing top bar). */
.lh-strip{
  position:relative; top:auto; z-index:1;
  background:var(--ink); color:var(--cream);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:9px 30px; font-size:13px; flex-wrap:wrap;
  border-bottom:1px solid rgba(228,196,134,.22);
}
.lh-strip .lh-strip-l{ opacity:.9; letter-spacing:.02em; }
.lh-strip .lh-strip-l b{ color:var(--gold-bright); font-weight:600; }
.lh-strip-r{ display:flex; gap:16px; align-items:center; }
.lh-strip-r a.tel{ color:var(--cream); text-decoration:none; font-weight:600; }
.lh-book-tour{
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold));
  color:var(--ink-2) !important; font-weight:600; padding:9px 22px; border-radius:2px;
  text-decoration:none !important; letter-spacing:.03em; font-size:12.5px; text-transform:uppercase;
  box-shadow:0 6px 18px rgba(176,137,76,.4); transition:transform .25s, box-shadow .25s;
}
.lh-book-tour:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(176,137,76,.55); color:var(--ink-2) !important; }

/* ============================================================
   HERO — cinematic, animated
   ============================================================ */
.lh-hero{
  position:relative; min-height:78vh; display:flex; align-items:center;
  padding:70px 0; background:var(--ink-2); overflow:hidden; color:var(--cream);
}
@media (max-width:600px){ .lh-hero{ min-height:82vh; } }
.lh-hero-bg{
  position:absolute; inset:-4% ; background-size:cover; background-position:center;
  animation:lhKenBurns 22s ease-in-out infinite alternate;
  will-change:transform;
}
@keyframes lhKenBurns{
  from{ transform:scale(1.04) translate(0,0); }
  to{ transform:scale(1.16) translate(-1.5%, -1.5%); }
}
.lh-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 20% 40%, rgba(58,30,43,.55) 0%, rgba(22,10,16,.78) 60%, rgba(22,10,16,.92) 100%),
    linear-gradient(100deg, rgba(22,10,16,.85) 0%, rgba(58,30,43,.35) 55%, rgba(122,46,67,.20) 100%);
}
#lh-hero-canvas{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.lh-hero-inner{ position:relative; z-index:2; max-width:1220px; margin:0 auto; padding:0 40px; width:100%; }
.lh-eyebrow{
  display:inline-block; font-family:var(--sans); font-size:12px; letter-spacing:.34em; text-transform:uppercase;
  color:var(--gold-bright); font-weight:500; margin-bottom:22px;
  opacity:0; transform:translateY(14px); animation:lhRise .9s .2s ease forwards;
}
.lh-eyebrow:before{ content:""; display:inline-block; width:34px; height:1px; background:var(--gold); vertical-align:middle; margin-right:14px; transform:translateY(-3px); }
.lh-hero h1{
  font-family:var(--serif) !important; font-weight:600 !important;
  font-size:clamp(40px,5.6vw,74px) !important; line-height:1.04; margin:0 0 20px !important;
  max-width:15ch; color:var(--cream) !important; letter-spacing:.005em;
}
.lh-hero h1 .l1, .lh-hero h1 .l2{ display:block; opacity:0; transform:translateY(26px); }
.lh-hero h1 .l1{ animation:lhRise 1s .38s cubic-bezier(.2,.7,.2,1) forwards; }
.lh-hero h1 .l2{ animation:lhRise 1s .54s cubic-bezier(.2,.7,.2,1) forwards; color:var(--gold-bright) !important; font-style:italic; }
.lh-hero .lh-sub{
  font-size:clamp(16px,1.5vw,19px); color:rgba(248,242,233,.82); max-width:46ch; margin-bottom:36px; line-height:1.75;
  opacity:0; transform:translateY(16px); animation:lhRise 1s .72s ease forwards;
}
.lh-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; opacity:0; animation:lhFadeIn 1s .9s ease forwards; }
.lh-badge{
  display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:500; letter-spacing:.02em;
  background:rgba(248,242,233,.07); border:1px solid rgba(228,196,134,.28);
  backdrop-filter:blur(8px); padding:8px 16px; border-radius:2px; color:var(--cream);
}
.lh-badge:before{ content:"✦"; color:var(--gold-bright); font-size:11px; }
.lh-cta-row{ display:flex; flex-wrap:wrap; gap:16px; opacity:0; animation:lhFadeIn 1s 1.05s ease forwards; }
.lh-btn-primary{
  position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:var(--ink-2);
  font-weight:600; padding:16px 34px; border-radius:2px; text-decoration:none; font-size:13px;
  letter-spacing:.08em; text-transform:uppercase;
  box-shadow:0 12px 30px rgba(176,137,76,.4); transition:transform .3s, box-shadow .3s;
}
.lh-btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(176,137,76,.55); color:var(--ink-2); }
.lh-btn-primary:after{
  content:""; position:absolute; top:0; left:-60%; width:45%; height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.55),transparent); transform:skewX(-20deg);
  opacity:0;
}
.lh-btn-primary:hover:after{ animation:lhShine .8s ease; }
@keyframes lhShine{ 0%{ left:-60%; opacity:1; } 100%{ left:150%; opacity:1; } }
.lh-btn-ghost{
  border:1px solid rgba(248,242,233,.5); color:#fff; padding:15px 30px; border-radius:2px;
  text-decoration:none; font-weight:500; font-size:13px; letter-spacing:.08em; text-transform:uppercase;
  transition:background .3s, border-color .3s;
}
.lh-btn-ghost:hover{ background:rgba(248,242,233,.12); border-color:#fff; color:#fff; }
.lh-scroll-cue{
  position:absolute; left:50%; bottom:28px; transform:translateX(-50%); z-index:2;
  color:rgba(248,242,233,.6); font-size:10px; letter-spacing:.3em; text-transform:uppercase; text-align:center;
  animation:lhFadeIn 1s 1.4s ease both;
}
.lh-scroll-cue span{ display:block; width:1px; height:44px; margin:10px auto 0; background:linear-gradient(var(--gold-bright),transparent); animation:lhCue 1.8s ease-in-out infinite; transform-origin:top; }
@keyframes lhCue{ 0%,100%{ transform:scaleY(.4); opacity:.4; } 50%{ transform:scaleY(1); opacity:1; } }

@keyframes lhRise{ to{ opacity:1; transform:none; } }
@keyframes lhFadeIn{ to{ opacity:1; } }

/* ============================================================
   STAT BAR — warm, glowing
   ============================================================ */
.lh-stat-bar{
  background:linear-gradient(120deg,var(--plum),var(--ink)); color:var(--cream);
  padding:44px 24px; border-top:1px solid rgba(228,196,134,.25); border-bottom:1px solid rgba(228,196,134,.25);
}
.lh-stat-row{ max-width:1180px; margin:0 auto; display:flex; flex-wrap:wrap; text-align:center; }
.lh-stat{ flex:1 1 150px; padding:8px 14px; position:relative; }
.lh-stat + .lh-stat:before{ content:""; position:absolute; left:0; top:20%; height:60%; width:1px; background:rgba(228,196,134,.22); }
.lh-stat .lh-num{ font-family:var(--serif); font-size:clamp(30px,3.6vw,44px); font-weight:600; font-variant-numeric:tabular-nums; color:var(--gold-bright); line-height:1; }
.lh-stat .lh-label{ font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(248,242,233,.6); margin-top:10px; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.lh-section{ padding:110px 40px; max-width:1220px; margin:0 auto; }
.lh-section-head{ max-width:680px; margin:0 auto 60px; text-align:center; }
.lh-kicker{ font-family:var(--sans); font-size:12px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:16px; }
.lh-kicker:before, .lh-kicker:after{ content:"✦"; color:var(--gold-soft); font-size:9px; margin:0 12px; vertical-align:middle; }
.lh-section-head h2{ font-family:var(--serif) !important; font-size:clamp(34px,4.6vw,56px) !important; font-weight:600 !important; color:var(--ink) !important; line-height:1.08; opacity:1 !important; }
.lh-section-head h2 em{ font-style:italic; color:var(--wine); }
.lh-section-head p{ color:var(--muted); margin-top:16px; font-size:16.5px; }

/* ============================================================
   HALLS — premium portrait cards w/ 3D tilt + gold caption bar
   ============================================================ */
.lh-hall-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media (max-width:920px){ .lh-hall-grid{ grid-template-columns:1fr; max-width:460px; margin:0 auto; } }
.lh-tilt{ perspective:1300px; }
.lh-tilt-inner{
  position:relative; border-radius:4px; overflow:hidden; height:480px;
  transform-style:preserve-3d; transition:transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  box-shadow:0 18px 40px var(--shadow);
}
.lh-tilt:hover .lh-tilt-inner{ transform:rotateX(4deg) rotateY(-5deg) translateY(-8px); box-shadow:0 34px 60px var(--shadow-lg); }
.lh-tilt-inner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.lh-tilt:hover .lh-tilt-inner img{ transform:scale(1.07); }
.lh-tilt-scrim{ position:absolute; inset:0; background:linear-gradient(0deg,rgba(22,10,16,.9) 8%,rgba(22,10,16,.15) 50%,transparent 72%); }
.lh-tilt-body{ position:absolute; left:0; right:0; bottom:0; padding:30px 28px; color:var(--cream); z-index:2; transform:translateZ(30px); }
.lh-tilt-body .lh-cap{
  display:inline-block; font-family:var(--sans); font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:var(--ink-2); padding:5px 14px; border-radius:2px; margin-bottom:14px;
}
.lh-tilt-body h3{ font-family:var(--serif) !important; font-size:28px !important; margin:0 0 8px !important; color:var(--cream) !important; opacity:1 !important; }
.lh-tilt-body p{ font-size:14px; color:rgba(248,242,233,.78); margin:0; }

/* ============================================================
   EDITORIAL ALTERNATING BLOCKS (reference-style)
   ============================================================ */
.lh-editorial{ display:grid; grid-template-columns:1fr 1fr; align-items:stretch; }
.lh-editorial.rev .lh-ed-media{ order:2; }
.lh-ed-media{ min-height:520px; background-size:cover; background-position:center; }
.lh-ed-panel{ background:var(--champagne); color:var(--ink); display:flex; align-items:center; padding:80px 70px; }
.lh-ed-panel.dark{ background:var(--ink); color:var(--cream); }
.lh-ed-panel .lh-kicker{ color:var(--ink); opacity:.7; }
.lh-ed-panel.dark .lh-kicker{ color:var(--gold-bright); }
.lh-ed-panel h2{ font-family:var(--serif) !important; font-size:clamp(30px,3.4vw,46px) !important; font-weight:600 !important; line-height:1.08; margin:0 0 18px !important; color:inherit !important; opacity:1 !important; }
.lh-ed-panel.dark h2{ color:var(--cream) !important; }
.lh-ed-panel p{ font-size:16px; line-height:1.8; margin:0 0 28px; opacity:.9; }
.lh-ed-btn{
  display:inline-block; border:1px solid currentColor; padding:14px 32px; border-radius:2px; text-decoration:none;
  color:inherit; font-family:var(--sans); font-weight:500; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; transition:all .3s;
}
.lh-ed-panel:not(.dark) .lh-ed-btn:hover{ background:var(--ink); color:var(--cream); border-color:var(--ink); }
.lh-ed-panel.dark .lh-ed-btn{ border-color:var(--gold); color:var(--gold-bright); }
.lh-ed-panel.dark .lh-ed-btn:hover{ background:var(--gold); color:var(--ink-2); }
@media (max-width:900px){ .lh-editorial{ grid-template-columns:1fr; } .lh-editorial.rev .lh-ed-media{ order:0; } .lh-ed-media{ min-height:340px; } .lh-ed-panel{ padding:56px 34px; } }

/* ============================================================
   AMENITIES — cinematic full-bleed image band w/ glass cards
   ============================================================ */
.lh-amenities-band{ position:relative; padding:100px 40px; background-size:cover; background-position:center; overflow:hidden; }
.lh-amenities-band:before{ content:""; position:absolute; inset:0; background:linear-gradient(120deg, rgba(22,10,16,.95) 0%, rgba(58,30,43,.88) 60%, rgba(122,46,67,.72) 100%); }
.lh-amenities-inner{ position:relative; z-index:1; max-width:1220px; margin:0 auto; }
.lh-amenities-inner .lh-section-head h2{ color:var(--cream) !important; }
.lh-amenities-inner .lh-section-head .lh-kicker{ color:var(--gold-bright); }
.lh-amenity-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .lh-amenity-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .lh-amenity-grid{ grid-template-columns:1fr; } }
.lh-glass{
  background:rgba(248,242,233,.055); border:1px solid rgba(228,196,134,.22); border-radius:4px;
  padding:32px 26px; color:#fff; transition:transform .35s, background .35s, border-color .35s; position:relative;
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
}
.lh-glass:hover{ transform:translateY(-6px); background:rgba(228,196,134,.12); border-color:rgba(228,196,134,.5); }
.lh-glass .lh-idx{ font-family:var(--serif); font-size:34px; color:var(--gold-bright); line-height:1; display:block; }
.lh-glass .lh-idx-line{ width:32px; height:1px; background:var(--gold-soft); margin:16px 0; opacity:.7; }
.lh-glass h4{ font-family:var(--serif) !important; font-size:20px !important; margin:0 0 8px !important; color:#fff !important; opacity:1 !important; font-weight:600; }
.lh-glass p{ font-size:13px; color:rgba(248,242,233,.7); margin:0; line-height:1.6; }

/* ---------- Occasions CTA ---------- */
.lh-occ-cta{ text-align:center; margin-top:44px; }
.lh-occ-cta p{ color:var(--muted); font-size:15px; margin-bottom:18px; }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.lh-journal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media (max-width:860px){ .lh-journal-grid{ grid-template-columns:1fr; max-width:440px; margin:0 auto; } }
.lh-post{ background:var(--card); border:1px solid var(--line); border-radius:4px; overflow:hidden; transition:transform .35s, box-shadow .35s; display:flex; flex-direction:column; }
.lh-post:hover{ transform:translateY(-6px); box-shadow:0 20px 40px var(--shadow); }
.lh-post-img{ height:210px; background-size:cover; background-position:center; }
.lh-post-body{ padding:26px 24px 28px; flex:1; display:flex; flex-direction:column; }
.lh-post-date{ font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.lh-post-body h3{ font-family:var(--serif) !important; font-size:22px !important; line-height:1.2; margin:0 0 10px !important; color:var(--ink) !important; }
.lh-post-body p{ font-size:14px; color:var(--muted); margin:0 0 16px; flex:1; }
.lh-post-link{ font-family:var(--sans); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--wine); text-decoration:none; font-weight:600; }
.lh-post-link:hover{ color:var(--gold); }

/* ============================================================
   RICH FOOTER
   ============================================================ */
.lh-footer{ background:var(--ink); color:rgba(248,242,233,.75); padding:72px 40px 0; }
.lh-footer-inner{ max-width:1220px; margin:0 auto; display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:44px; }
@media (max-width:860px){ .lh-footer-inner{ grid-template-columns:1fr 1fr; gap:36px; } }
@media (max-width:520px){ .lh-footer-inner{ grid-template-columns:1fr; } }
.lh-footer h4{ font-family:var(--sans) !important; font-size:12px !important; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-bright) !important; margin:0 0 18px !important; opacity:1 !important; }
.lh-footer .lh-fbrand{ display:block; margin-bottom:4px; }
/* footer logo — always visible, light on dark */
.lh-logo-footer .lh-logo-name, .lh-logo-footer .lh-logo-sub{ opacity:1 !important; transform:none !important; }
.lh-logo-footer .lh-ring{ stroke-dashoffset:0 !important; }
.lh-logo-footer .lh-lion, .lh-logo-footer .lh-dot{ opacity:1 !important; }
.lh-logo-footer .lh-eyes-happy, .lh-logo-footer .lh-mouth-smile{ opacity:0 !important; }
.lh-logo-footer .lh-logo-rule{ width:100% !important; }
.lh-logo-footer .lh-logo-name{ color:var(--cream); }
.lh-logo-footer .lh-logo-sub{ color:var(--gold-bright); }
.lh-footer p{ font-size:13.5px; line-height:1.8; margin:16px 0 0; }
.lh-footer ul{ list-style:none; margin:0; padding:0; }
.lh-footer li{ margin-bottom:11px; }
.lh-footer a{ color:rgba(248,242,233,.75); text-decoration:none; font-size:13.5px; transition:color .25s; }
.lh-footer a:hover{ color:var(--gold-bright); }
.lh-footer .lh-fcontact b{ color:var(--gold-bright); font-weight:600; }
.lh-footer-bottom{ max-width:1220px; margin:56px auto 0; border-top:1px solid rgba(228,196,134,.16); padding:24px 0 30px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color:rgba(248,242,233,.5); }

/* ============================================================
   OFFERS / PACKAGES
   ============================================================ */
.lh-offers-band{ position:relative; padding:100px 40px; background:linear-gradient(140deg,var(--wine),var(--plum) 60%,var(--ink)); overflow:hidden; }
.lh-offers-inner{ position:relative; z-index:1; max-width:1220px; margin:0 auto; }
.lh-offers-inner .lh-section-head h2{ color:var(--cream) !important; }
.lh-offers-inner .lh-section-head .lh-kicker{ color:var(--gold-bright); }
.lh-offers-inner .lh-section-head p{ color:rgba(248,242,233,.8); }
.lh-offer-badge{ display:inline-block; background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:var(--ink-2); font-family:var(--sans); font-weight:700; font-size:13px; letter-spacing:.1em; text-transform:uppercase; padding:10px 26px; border-radius:2px; margin-bottom:22px; box-shadow:0 10px 26px rgba(176,137,76,.4); }
.lh-pkg-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:20px; }
@media (max-width:900px){ .lh-pkg-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .lh-pkg-grid{ grid-template-columns:1fr; } }
.lh-pkg{ background:rgba(248,242,233,.06); border:1px solid rgba(228,196,134,.28); border-radius:6px; padding:32px 24px; text-align:center; transition:transform .35s, border-color .35s, background .35s; }
.lh-pkg:hover{ transform:translateY(-8px); border-color:var(--gold-bright); background:rgba(228,196,134,.12); }
.lh-pkg .lh-pkg-guests{ font-family:var(--sans); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-bright); }
.lh-pkg .lh-pkg-price{ font-family:var(--serif); font-size:44px; color:var(--cream); line-height:1.1; margin:8px 0 4px; }
.lh-pkg .lh-pkg-note{ font-size:12px; color:rgba(248,242,233,.6); }
.lh-offer-incl{ margin-top:40px; display:flex; flex-wrap:wrap; gap:10px 26px; justify-content:center; max-width:900px; margin-left:auto; margin-right:auto; }
.lh-offer-incl span{ font-size:13.5px; color:rgba(248,242,233,.82); }
.lh-offer-incl span:before{ content:"✓"; color:var(--gold-bright); margin-right:8px; font-weight:700; }
.lh-offers-cta{ text-align:center; margin-top:40px; }
.lh-offer-terms{ text-align:center; margin-top:16px; font-size:12.5px; color:rgba(248,242,233,.55); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.lh-insta-head{ text-align:center; }
.lh-insta-handle{ font-family:var(--sans); color:var(--wine); font-weight:600; text-decoration:none; letter-spacing:.02em; }
.lh-insta-handle:hover{ color:var(--gold); }
.lh-insta-grid{ display:flex; flex-wrap:nowrap; gap:6px; margin:36px auto 0; max-width:1100px; }
.lh-insta-grid a{ flex:1 1 0; min-width:0; position:relative; display:block; aspect-ratio:1; overflow:hidden; border-radius:4px; }
@media (max-width:900px){ .lh-insta-grid{ flex-wrap:wrap; } .lh-insta-grid a{ flex:0 0 calc(33.333% - 4px); } }
@media (max-width:520px){ .lh-insta-grid a{ flex:0 0 calc(50% - 3px); } }
.lh-insta-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.lh-insta-grid a:hover img{ transform:scale(1.09); }
.lh-insta-grid a:after{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .35s;
  background:linear-gradient(150deg, rgba(122,46,67,.45), rgba(58,30,43,.55));
  background-image:linear-gradient(150deg, rgba(122,46,67,.45), rgba(58,30,43,.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.6'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.2' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center, center;
}
.lh-insta-grid a:hover:after{ opacity:1; }
.lh-insta-note{ text-align:center; margin-top:32px; }

/* ============================================================
   FLOATING WHATSAPP + CALL BUTTONS
   ============================================================ */
.lh-float{ position:fixed; right:20px; bottom:22px; z-index:99990; display:flex; flex-direction:column; gap:12px; }
.lh-float a{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; text-decoration:none; box-shadow:0 8px 22px rgba(0,0,0,.28); transition:transform .25s;
  position:relative;
}
.lh-float a:hover{ transform:scale(1.08); }
.lh-float .wa{ background:#25D366; }
.lh-float .call{ background:linear-gradient(135deg,var(--gold),var(--wine)); }
.lh-float svg{ width:28px; height:28px; fill:#fff; }
.lh-float a:before{
  content:attr(data-label); position:absolute; right:68px; top:50%; transform:translateY(-50%);
  background:var(--ink); color:var(--cream); font-family:var(--sans); font-size:12px; letter-spacing:.02em;
  padding:6px 12px; border-radius:3px; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .25s;
}
.lh-float a:hover:before{ opacity:1; }
.lh-float .wa:after{
  content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25D366;
  animation:lhPulse 2s ease-out infinite;
}
@keyframes lhPulse{ 0%{ transform:scale(1); opacity:.7; } 100%{ transform:scale(1.6); opacity:0; } }
@media (max-width:600px){ .lh-float a{ width:52px; height:52px; } }

/* ============================================================
   CATERING — tabbed, warm
   ============================================================ */
/* smaller, refined heading for the catering section head */
.lh-catering-section .lh-section-head{ margin-bottom:44px; }
.lh-catering-section .lh-section-head h2{ font-size:clamp(28px,3vw,40px) !important; }
.lh-catering{ display:grid; grid-template-columns:1fr 1.02fr; gap:48px; align-items:stretch; }
@media (max-width:880px){ .lh-catering{ grid-template-columns:1fr; } }
.lh-catering-img{ position:relative; border-radius:6px; overflow:hidden; box-shadow:0 30px 60px var(--shadow); min-height:100%; }
.lh-catering-img img{ width:100%; height:100%; display:block; object-fit:cover; }
.lh-catering-img:after{ content:""; position:absolute; inset:0; border:1px solid rgba(248,242,233,.55); margin:16px; pointer-events:none; border-radius:2px; }
/* the menu copy sits on an elegant cream card */
.lh-catering-copy{ background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:44px 42px; box-shadow:0 18px 40px var(--shadow); position:relative; }
.lh-catering-copy:before{ content:""; position:absolute; top:0; left:0; width:70px; height:3px; background:linear-gradient(90deg,var(--gold-bright),var(--gold)); border-radius:0 0 3px 0; }
@media (max-width:880px){ .lh-catering-copy{ padding:34px 26px; } }
.lh-menu-label{ font-family:var(--sans); font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:18px; }
.lh-menu-label:before{ content:"❦"; margin-right:8px; color:var(--gold-soft); }
.lh-tab-btns{ display:flex; gap:10px; margin-bottom:26px; flex-wrap:wrap; }
.lh-tab-btn{ padding:10px 24px; border-radius:999px; border:1px solid var(--line); background:transparent; font-family:var(--sans); font-weight:500; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; color:var(--muted); transition:all .25s; }
.lh-tab-btn:hover{ border-color:var(--gold-soft); color:var(--ink); }
.lh-tab-btn.active{ background:linear-gradient(135deg,var(--gold-bright),var(--gold)); border-color:var(--gold); color:var(--ink-2); box-shadow:0 6px 16px rgba(176,137,76,.3); }
.lh-tab-panel{ display:none; }
.lh-tab-panel.active{ display:block; animation:lhFadeUp .4s ease; }
@keyframes lhFadeUp{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }
.lh-tab-panel ul{ margin:0; padding:0; list-style:none; }
.lh-tab-panel li{ padding:15px 0 15px 4px; border-bottom:1px solid var(--line); font-size:18px; font-family:var(--serif); color:var(--ink); display:flex; align-items:center; gap:14px; transition:padding-left .3s, color .3s; }
.lh-tab-panel li:last-child{ border-bottom:none; }
.lh-tab-panel li:before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--gold); flex-shrink:0; box-shadow:0 0 0 3px rgba(176,137,76,.18); transition:transform .3s; }
.lh-tab-panel li:hover{ padding-left:12px; color:var(--wine); }
.lh-tab-panel li:hover:before{ transform:scale(1.25); }
.lh-tea-note{ margin-top:22px; font-size:13.5px; color:var(--muted); border-left:2px solid var(--gold); padding-left:14px; font-style:italic; line-height:1.6; }

/* ============================================================
   OCCASIONS — interactive, editorial (no giant gap)
   ============================================================ */
.lh-occasions{ padding-bottom:70px; }
.lh-occasions-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:820px){ .lh-occasions-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .lh-occasions-grid{ grid-template-columns:1fr; } }
.lh-occ-card{
  position:relative; cursor:pointer; border:1px solid var(--line); border-radius:4px;
  padding:34px 22px; text-align:center; background:var(--card); overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.lh-occ-card:before{ content:""; position:absolute; inset:0; background:linear-gradient(160deg,rgba(188,168,119,.1),transparent 60%); opacity:0; transition:opacity .35s; }
.lh-occ-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px var(--shadow); border-color:var(--gold-soft); }
.lh-occ-card:hover:before{ opacity:1; }
.lh-occ-icon{ width:64px; height:64px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:linear-gradient(140deg,var(--wine),var(--plum)); box-shadow:0 8px 20px rgba(122,46,67,.3); position:relative; z-index:1; }
.lh-occ-icon img{ width:32px; height:32px; object-fit:contain; filter:brightness(0) invert(1); }
.lh-occ-card h4{ font-family:var(--serif) !important; font-size:20px !important; margin:0 0 6px !important; color:var(--ink) !important; opacity:1 !important; position:relative; z-index:1; }
.lh-occ-card p{ font-size:13px; color:var(--muted); margin:0; position:relative; z-index:1; }
.lh-occ-hint{ font-family:var(--sans); font-size:10px; color:var(--gold); margin-top:12px; letter-spacing:.14em; text-transform:uppercase; opacity:0; transition:opacity .3s; position:relative; z-index:1; }
.lh-occ-card:hover .lh-occ-hint{ opacity:1; }
#lh-fx-canvas{ position:fixed; inset:0; pointer-events:none; z-index:9999; }

/* ============================================================
   GALLERY — masonry + lightbox
   ============================================================ */
.lh-gallery-filters{ display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom:34px; }
.lh-gallery-filters button{ padding:9px 22px; border-radius:2px; border:1px solid var(--line); background:transparent; font-family:var(--sans); font-weight:500; font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; cursor:pointer; color:var(--muted); transition:all .25s; }
.lh-gallery-filters button.active{ background:var(--gold); border-color:var(--gold); color:var(--ink-2); }
.lh-gallery-grid{ columns:4 240px; column-gap:14px; }
@media (max-width:700px){ .lh-gallery-grid{ columns:2 150px; } }
.lh-gallery-grid figure{ margin:0 0 14px; break-inside:avoid; border-radius:4px; overflow:hidden; position:relative; cursor:zoom-in; }
.lh-gallery-grid img{ width:100%; display:block; transition:transform .6s ease, filter .4s; }
.lh-gallery-grid figure:after{ content:"⤢"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:26px; background:rgba(58,30,43,.4); opacity:0; transition:opacity .35s; }
.lh-gallery-grid figure:hover:after{ opacity:1; }
.lh-gallery-grid figure:hover img{ transform:scale(1.08); }
.lh-gallery-grid .lh-hide{ display:none; }

/* Homepage teaser — uniform equal tiles (flex = reliable in this Divi env) */
.lh-gallery-teaser{ display:flex !important; flex-wrap:wrap; gap:12px; columns:auto !important; }
.lh-gallery-teaser figure{ flex:0 0 calc(25% - 9px); margin:0 !important; position:relative; aspect-ratio:1; overflow:hidden; border-radius:4px; cursor:zoom-in; min-width:0; }
@media (max-width:820px){ .lh-gallery-teaser figure{ flex-basis:calc(50% - 6px); } }
.lh-gallery-teaser img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.lh-gallery-teaser figure:hover img{ transform:scale(1.08); }
.lh-gallery-teaser figure:after{ content:"\2922"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:24px; background:rgba(58,30,43,.4); opacity:0; transition:opacity .35s; }
.lh-gallery-teaser figure:hover:after{ opacity:1; }

/* ============================================================
   TESTIMONIALS — warm dark
   ============================================================ */
.lh-testi-section{ background:linear-gradient(150deg,var(--ink),var(--plum)); position:relative; overflow:hidden; padding:100px 40px; }
.lh-testi-section:before{ content:"\201C"; position:absolute; top:-30px; left:40px; font-family:var(--serif); font-size:280px; color:rgba(228,196,134,.05); line-height:1; pointer-events:none; }
.lh-testi-section .lh-section-head h2{ color:var(--cream) !important; }
.lh-rating-badge{ display:flex; align-items:center; gap:10px; justify-content:center; margin-top:10px; color:var(--cream); font-family:var(--sans); font-size:14px; }
.lh-rating-badge .stars{ color:var(--gold-bright); letter-spacing:3px; }
.lh-testi-grid{ position:relative; z-index:1; max-width:1180px; margin:52px auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .lh-testi-grid{ grid-template-columns:1fr; max-width:620px; } }
.lh-testi-card{
  background:rgba(248,242,233,.055); border:1px solid rgba(228,196,134,.2); border-radius:6px;
  padding:34px 30px; display:flex; flex-direction:column; transition:transform .35s, border-color .35s, background .35s;
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
}
.lh-testi-card:hover{ transform:translateY(-6px); border-color:rgba(228,196,134,.5); background:rgba(228,196,134,.08); }
.lh-testi-card .qmark{ font-family:var(--serif); font-size:56px; line-height:.6; color:var(--gold); height:26px; }
.lh-testi-card .stars{ color:var(--gold-bright); letter-spacing:2px; font-size:14px; margin:6px 0 14px; }
.lh-testi-card p{ color:rgba(248,242,233,.86); font-size:14.5px; line-height:1.75; margin:0 0 20px; flex:1; }
.lh-testi-card .who{ font-family:var(--serif); font-size:18px; color:var(--gold-bright); }
.lh-testi-card .role{ font-family:var(--sans); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:rgba(248,242,233,.5); margin-top:3px; }

/* ============================================================
   FAQ accordion (Divi) — premium restyle
   ============================================================ */
.et_pb_accordion{ border:0 !important; box-shadow:none !important; max-width:860px; margin:0 auto !important; }
.et_pb_accordion .et_pb_toggle{
  border:1px solid var(--line) !important; border-radius:6px !important; margin-bottom:14px !important;
  padding:6px 30px !important; background:var(--card) !important; box-shadow:0 4px 14px rgba(36,16,25,.05) !important;
  transition:border-color .3s, box-shadow .3s !important; overflow:hidden;
}
.et_pb_accordion .et_pb_toggle:hover{ border-color:var(--gold-soft) !important; box-shadow:0 10px 26px rgba(36,16,25,.1) !important; }
.et_pb_accordion .et_pb_toggle.et_pb_toggle_open{ background:var(--cream) !important; border-color:var(--gold) !important; border-left:3px solid var(--gold) !important; }
.et_pb_accordion .et_pb_toggle_title{
  font-family:var(--serif) !important; font-size:20px !important; font-weight:600 !important; color:var(--ink) !important;
  padding:16px 40px 16px 0 !important; line-height:1.3 !important;
}
.et_pb_accordion .et_pb_toggle_open .et_pb_toggle_title{ color:var(--wine) !important; }
.et_pb_accordion .et_pb_toggle_title:before{
  color:var(--gold) !important; font-size:22px !important; right:0 !important; top:16px !important;
  width:auto !important; height:auto !important;
}
.et_pb_accordion .et_pb_toggle_content{ font-family:var(--sans) !important; font-size:15px !important; line-height:1.75 !important; color:var(--muted) !important; padding-bottom:20px !important; }

/* ============================================================
   LOCATION
   ============================================================ */
.lh-location{ display:grid; grid-template-columns:1.25fr 1fr; border-radius:4px; overflow:hidden; box-shadow:0 24px 50px var(--shadow); background:var(--cream-2); }
@media (max-width:860px){ .lh-location{ grid-template-columns:1fr; } }
.lh-map{ position:relative; display:block; min-height:440px; background-size:cover; background-position:center; overflow:hidden; text-decoration:none; }
.lh-map:before{ content:""; position:absolute; inset:0; background:linear-gradient(160deg,rgba(36,16,25,.4),rgba(58,30,43,.58)); z-index:1; transition:background .35s; }
.lh-map:hover:before{ background:linear-gradient(160deg,rgba(36,16,25,.5),rgba(58,30,43,.68)); }
.lh-map .lh-map-pin{ position:absolute; z-index:2; left:50%; top:44%; transform:translate(-50%,-50%); text-align:center; color:#fff; pointer-events:none; width:90%; }
.lh-map .lh-map-pin .dot{ width:16px; height:16px; border-radius:50%; background:var(--gold-bright); margin:0 auto 12px; box-shadow:0 0 0 8px rgba(228,196,134,.25), 0 0 0 16px rgba(228,196,134,.12); animation:lhMapPulse 2.4s ease-in-out infinite; }
@keyframes lhMapPulse{ 0%,100%{ box-shadow:0 0 0 8px rgba(228,196,134,.28), 0 0 0 16px rgba(228,196,134,.12); } 50%{ box-shadow:0 0 0 11px rgba(228,196,134,.34), 0 0 0 22px rgba(228,196,134,.16); } }
.lh-map .lh-map-pin span{ font-family:var(--serif); font-size:22px; letter-spacing:.02em; display:block; }
.lh-map .lh-map-pin small{ font-family:var(--sans); font-size:11px; letter-spacing:.16em; text-transform:uppercase; opacity:.85; display:block; margin-top:4px; }
.lh-map .lh-map-btn{ position:absolute; z-index:2; left:50%; bottom:28px; transform:translateX(-50%); display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:var(--ink-2); font-family:var(--sans); font-weight:600; font-size:12px; letter-spacing:.08em; text-transform:uppercase; padding:12px 26px; border-radius:2px; box-shadow:0 10px 24px rgba(0,0,0,.3); transition:transform .3s; }
.lh-map:hover .lh-map-btn{ transform:translateX(-50%) translateY(-3px); }
/* real embedded Google map — sits over the fallback photo; renders on the live domain */
.lh-map .lh-map-iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; z-index:4; }
.lh-location-panel{ background:var(--ink); color:var(--cream); padding:44px; }
.lh-location-panel h3{ font-family:var(--serif) !important; font-size:26px !important; margin:0 0 20px !important; color:var(--cream) !important; opacity:1 !important; }
.lh-loc-row{ display:flex; gap:12px; padding:13px 0; border-top:1px solid rgba(228,196,134,.16); font-size:14px; }
.lh-loc-row:first-of-type{ border-top:none; }
.lh-loc-row strong{ color:var(--gold-bright); min-width:92px; display:inline-block; font-weight:600; }
.lh-loc-row a{ color:var(--cream); }

/* ============================================================
   CUSTOM FLOWER CURSOR + PETAL TRAIL (desktop, fine pointer only)
   ============================================================ */
@media (hover:hover) and (pointer:fine){
  .lh-cursor-on, .lh-cursor-on a, .lh-cursor-on button, .lh-cursor-on .lh-occ-card,
  .lh-cursor-on .lh-tab-btn, .lh-cursor-on input, .lh-cursor-on summary{ cursor:none !important; }
}
#lh-cursor{
  position:fixed; top:0; left:0; width:34px; height:34px; margin:-17px 0 0 -17px;
  pointer-events:none; z-index:100000; will-change:transform;
  transition:opacity .3s;
  opacity:0;
}
#lh-cursor.ready{ opacity:1; }
#lh-cursor svg{ width:100%; height:100%; display:block; filter:drop-shadow(0 3px 6px rgba(122,46,67,.4)); }
#lh-cursor .bloom{ opacity:0; transform:scale(.35) rotate(-45deg); transform-origin:center; transition:opacity .5s ease, transform .6s cubic-bezier(.34,1.15,.4,1); position:absolute; inset:0; }
#lh-cursor .bud{ opacity:1; transform:scale(1) rotate(0); transition:opacity .5s ease .05s, transform .5s cubic-bezier(.4,0,.5,1); position:absolute; inset:0; }
#lh-cursor.bloomed .bloom{ opacity:1; transform:scale(1) rotate(0); }
#lh-cursor.bloomed .bud{ opacity:0; transform:scale(.55) rotate(20deg); }
.lh-petal-trail{ position:fixed; pointer-events:none; z-index:99999; will-change:transform,opacity; }

/* ---------- Soft hover "feel" on media ---------- */
.lh-ed-media, .lh-catering-img, .lh-tilt-inner{ will-change:transform; }
.lh-ed-media{ transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.lh-editorial:hover .lh-ed-media{ transform:scale(1.03); }

/* ---------- Watery light sheen following cursor over images ---------- */
.lh-sheen{ position:relative; }
.lh-sheen:after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:3; opacity:0;
  transition:opacity .4s ease;
  background:
    radial-gradient(circle 90px at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), rgba(255,255,255,.08) 45%, transparent 68%),
    radial-gradient(circle 150px at var(--mx,50%) var(--my,50%), rgba(228,196,134,.14), transparent 70%);
  mix-blend-mode:soft-light;
}
.lh-sheen:hover:after{ opacity:1; }

/* ============================================================
   INNER PAGE HEADER + CONTACT FORM (CF7)
   ============================================================ */
.lh-page-header{ background:linear-gradient(120deg,var(--plum),var(--ink)); color:var(--cream); text-align:center; padding:120px 24px 70px; position:relative; overflow:hidden; }
.lh-page-header:before{ content:""; position:absolute; inset:0; background:radial-gradient(120% 80% at 50% 0%, rgba(228,196,134,.1), transparent 60%); }
.lh-page-header .lh-kicker{ color:var(--gold-bright); position:relative; }
.lh-page-header h1{ font-family:var(--serif); font-size:clamp(38px,5vw,60px); color:var(--cream); margin:0; position:relative; }
.lh-page-header p{ color:rgba(248,242,233,.8); max-width:60ch; margin:14px auto 0; position:relative; }
/* Divi shows the page title by default — hide it on our custom pages */
.lh-custom-page .et_pb_title_container, .lh-custom-page h1.entry-title{ display:none !important; }

.lh-contact-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1120px; margin:0 auto; align-items:stretch; }
@media (max-width:860px){ .lh-contact-wrap{ grid-template-columns:1fr; } }
.lh-contact-col{ display:flex; flex-direction:column; }
.lh-contact-h{ font-family:var(--serif); font-size:30px; color:var(--ink); margin:6px 0 20px; line-height:1.15; }
.lh-contact-card{ background:var(--card); border:1px solid var(--line); border-radius:8px; padding:30px 32px; box-shadow:0 14px 34px var(--shadow); flex:1; }
.lh-contact-col .wpcf7{ flex:1; }
.lh-contact-info .lh-loc-row{ display:flex; gap:12px; padding:13px 0; border-top:1px solid var(--line); font-size:15px; color:var(--ink); }
.lh-contact-info .lh-loc-row:first-child{ border-top:none; padding-top:0; }
.lh-contact-info strong{ color:var(--gold); min-width:96px; display:inline-block; }
.lh-contact-info a{ color:var(--wine); text-decoration:none; font-weight:500; border-bottom:1px solid rgba(122,46,67,.25); transition:color .25s, border-color .25s; }
.lh-contact-info a:hover{ color:var(--gold); border-color:var(--gold); }

.wpcf7{ background:var(--card); border:1px solid var(--line); border-radius:8px; padding:34px 32px; box-shadow:0 14px 34px var(--shadow); }
.wpcf7 .lh-form-row{ display:flex; gap:14px; }
@media (max-width:520px){ .wpcf7 .lh-form-row{ flex-direction:column; } }
.wpcf7 p{ margin:0 0 16px; flex:1; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 input[type=date], .wpcf7 textarea{
  width:100%; font-family:var(--sans); font-size:14.5px; color:var(--ink);
  background:var(--cream); border:1px solid var(--line); border-radius:4px; padding:13px 15px; transition:border-color .25s, box-shadow .25s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(176,137,76,.15); }
.wpcf7 textarea{ min-height:130px; resize:vertical; }
.wpcf7 input[type=submit]{
  background:linear-gradient(135deg,var(--gold-bright),var(--gold)); color:var(--ink-2); font-family:var(--sans);
  font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:13px; border:0; border-radius:4px;
  padding:15px 34px; cursor:pointer; box-shadow:0 10px 24px rgba(176,137,76,.35); transition:transform .25s;
}
.wpcf7 input[type=submit]:hover{ transform:translateY(-2px); }
.wpcf7-response-output{ border-radius:4px !important; font-family:var(--sans); font-size:13.5px; margin:14px 0 0 !important; }

/* ---------- Reveal on scroll ---------- */
.lh-reveal{ opacity:0; transform:translateY(30px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.lh-reveal.lh-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .lh-reveal{ opacity:1; transform:none; transition:none; }
  .lh-tilt-inner, .lh-hero-bg{ transition:none; animation:none; }
  .lh-hero h1 .l1, .lh-hero h1 .l2, .lh-eyebrow, .lh-hero .lh-sub, .lh-badges, .lh-cta-row{ opacity:1; transform:none; animation:none; }
}
