/* ============================================================
   The Tessalar House — Option H "Crimson Velvet"
   prefix: lfvy
   ============================================================ */

:root{
  --lfvy-bg:#120708;
  --lfvy-c1:#e0a96d;              /* champagne */
  --lfvy-c2:#8b1e2d;              /* burgundy  */
  --lfvy-cta:#e0a96d;
  --lfvy-cta-text:#190a05;
  --lfvy-text:#efe0d6;
  --lfvy-muted:#ab8f83;
  --lfvy-card:#1b0d0f;
  --lfvy-border:rgba(224,169,109,.20);
  --lfvy-glass:rgba(27,13,15,.62);
  --lfvy-head-h:74px;

  --lfvy-serif:Georgia,'Times New Roman',Times,serif;
  --lfvy-sans:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--lfvy-head-h);
  -webkit-text-size-adjust:100%;
}
html,body{overflow-x:hidden}

body{
  margin:0;
  background:var(--lfvy-bg);
  color:var(--lfvy-text);
  font-family:var(--lfvy-sans);
  font-size:clamp(.9rem,2.5vw,1.05rem);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img,svg,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}

.lfvy-skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--lfvy-c1);color:var(--lfvy-cta-text);
  padding:10px 16px;border-radius:0 0 8px 0;font-weight:600;
}
.lfvy-skip:focus{left:0}

:focus-visible{outline:2px solid var(--lfvy-c1);outline-offset:3px;border-radius:3px}

/* ---------- shared type ---------- */
.lfvy-eyebrow{
  margin:0 0 14px;
  font-family:var(--lfvy-sans);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.72rem;
  font-weight:600;
  color:var(--lfvy-c1);
}
.lfvy-h2{
  margin:0 0 18px;
  font-family:var(--lfvy-serif);
  font-weight:400;
  line-height:1.1;
  letter-spacing:.3px;
  font-size:clamp(1.5rem,5vw,3rem);
  color:var(--lfvy-text);
}
.lfvy-h2 em,.lfvy-hero__title em{
  font-style:italic;
  color:var(--lfvy-c1);
}

.lfvy-bullets li{
  position:relative;
  padding-left:22px;
  margin:9px 0;
  color:var(--lfvy-text);
}
.lfvy-bullets li::before{
  content:"";
  position:absolute;left:0;top:.62em;
  width:7px;height:7px;border-radius:50%;
  background:var(--lfvy-c1);
  box-shadow:0 0 10px rgba(224,169,109,.5);
}

/* ---------- buttons ---------- */
.lfvy-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 26px;
  border-radius:2px;
  font-weight:600;font-size:.9rem;letter-spacing:.6px;
  text-transform:uppercase;
  cursor:pointer;border:1px solid transparent;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}
.lfvy-btn--solid{
  background:var(--lfvy-cta);color:var(--lfvy-cta-text);
}
.lfvy-btn--solid:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(224,169,109,.28);
}
.lfvy-btn--ghost{
  background:transparent;color:var(--lfvy-text);
  border-color:var(--lfvy-border);
}
.lfvy-btn--ghost:hover{
  transform:translateY(-2px);
  border-color:var(--lfvy-c1);
  box-shadow:0 12px 30px rgba(224,169,109,.16);
}

/* ============================================================
   HEADER
   ============================================================ */
.lfvy-head{
  position:fixed;inset:0 0 auto 0;z-index:100;
  transition:background .35s ease,box-shadow .35s ease,border-color .35s ease;
  border-bottom:1px solid transparent;
}
.lfvy-head.is-shaded{
  background:rgba(18,7,8,.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--lfvy-border);
  box-shadow:0 8px 30px rgba(0,0,0,.4);
}
.lfvy-head__inner{
  max-width:1240px;margin:0 auto;
  min-height:var(--lfvy-head-h);
  padding:0 clamp(16px,4vw,40px);
  display:flex;align-items:center;gap:20px;
}

.lfvy-brand{display:flex;align-items:center;gap:11px;color:var(--lfvy-c1);flex:0 0 auto}
.lfvy-brand__mark{width:34px;height:34px;flex:0 0 auto}
.lfvy-brand__name{
  font-family:var(--lfvy-serif);
  font-size:1.18rem;letter-spacing:1px;color:var(--lfvy-text);
  white-space:nowrap;
}
.lfvy-brand__the{color:var(--lfvy-muted);font-style:italic;font-size:.86em}
.lfvy-brand__sub{color:var(--lfvy-c1)}

.lfvy-nav{margin-left:auto;display:flex;gap:clamp(14px,2.2vw,30px)}
.lfvy-nav a{
  font-size:.82rem;letter-spacing:1.4px;text-transform:uppercase;
  color:var(--lfvy-text);opacity:.82;position:relative;padding:6px 0;
  transition:opacity .2s ease,color .2s ease;
}
.lfvy-nav a::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:0;
  background:var(--lfvy-c1);transition:width .3s ease;
}
.lfvy-nav a:hover{opacity:1;color:var(--lfvy-c1)}
.lfvy-nav a:hover::after{width:100%}

.lfvy-reserve-btn{
  flex:0 0 auto;
  border:1px solid var(--lfvy-border);
  color:var(--lfvy-c1);
  padding:10px 20px;border-radius:2px;
  font-size:.78rem;letter-spacing:1.6px;text-transform:uppercase;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.lfvy-reserve-btn:hover{border-color:var(--lfvy-c1);box-shadow:0 0 22px rgba(224,169,109,.2)}

/* HBG-3 dots */
.lfvy-dots{
  display:none;
  width:48px;height:48px;margin-left:auto;
  background:transparent;border:1px solid var(--lfvy-border);border-radius:2px;
  cursor:pointer;position:relative;
  align-items:center;justify-content:center;gap:5px;
}
.lfvy-dots span{
  width:5px;height:5px;border-radius:50%;
  background:var(--lfvy-c1);
  transition:transform .3s ease,opacity .3s ease,width .3s ease,height .3s ease,border-radius .3s ease;
}
.lfvy-dots.is-open span:nth-child(1){transform:translate(6px,0) rotate(45deg);width:20px;height:2px;border-radius:2px}
.lfvy-dots.is-open span:nth-child(2){opacity:0}
.lfvy-dots.is-open span:nth-child(3){transform:translate(-6px,0) rotate(-45deg);width:20px;height:2px;border-radius:2px}

/* panel expands under header */
.lfvy-panel{
  overflow:hidden;
  background:rgba(18,7,8,.97);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--lfvy-border);
}
.lfvy-panel__nav{
  max-width:1240px;margin:0 auto;
  padding:10px clamp(16px,4vw,40px) 26px;
  display:flex;flex-direction:column;
}
.lfvy-panel__nav a{
  font-family:var(--lfvy-serif);font-size:1.5rem;
  color:var(--lfvy-text);
  padding:14px 0;min-height:44px;
  border-bottom:1px solid var(--lfvy-border);
}
.lfvy-panel__nav a:hover{color:var(--lfvy-c1)}
.lfvy-panel__cta{
  margin-top:18px;border:none !important;
  color:var(--lfvy-c1) !important;letter-spacing:1px;
}
.lfvy-panel-scrim{
  position:fixed;inset:var(--lfvy-head-h) 0 0 0;z-index:90;
  background:rgba(0,0,0,.5);
}

/* ============================================================
   HERO (HERO-3 — content pinned to bottom)
   ============================================================ */
.lfvy-hero{
  position:relative;
  min-height:100svh;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:calc(var(--lfvy-head-h) + 40px) clamp(16px,5vw,64px) 8vh;
  overflow:hidden;
}
.lfvy-hero__media{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(120% 90% at 70% 10%,rgba(139,30,45,.42),transparent 60%),
    linear-gradient(180deg,#1c0c0f 0%,#120708 55%,#0c0405 100%),
    url('../assets/img/hero.webp');
  background-size:cover;background-position:center;
}
.lfvy-hero__veil{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(12,4,5,.55) 0%,rgba(12,4,5,.25) 40%,rgba(12,4,5,.86) 100%);
}
.lfvy-hero__inner{
  position:relative;z-index:2;
  max-width:900px;
}
.lfvy-hero__eyebrow{color:var(--lfvy-c1)}
.lfvy-hero__title{
  margin:0 0 22px;
  font-family:var(--lfvy-serif);font-weight:400;
  line-height:1.04;letter-spacing:.5px;
  font-size:min(clamp(1.9rem,8vw,6rem),12vh);
  max-width:15ch;
}
.lfvy-hero__lede{
  margin:0 0 30px;max-width:56ch;
  color:var(--lfvy-text);opacity:.9;
  font-size:clamp(.95rem,2.4vw,1.15rem);
}
.lfvy-hero__cta{display:flex;flex-wrap:wrap;gap:14px}

/* hero letter cascade */
.lfvy-hero__title .lfvy-ch{
  display:inline-block;
  opacity:0;transform:translateY(0.4em);
  transition:opacity .5s ease,transform .5s ease;
}
.lfvy-hero__title.is-cascaded .lfvy-ch{opacity:1;transform:none}

/* scroll dot */
.lfvy-scrolldot{
  position:absolute;left:50%;bottom:22px;z-index:2;
  transform:translateX(-50%);
  width:26px;height:44px;border:1px solid var(--lfvy-border);border-radius:16px;
  display:flex;justify-content:center;padding-top:8px;
}
.lfvy-scrolldot span{
  width:5px;height:5px;border-radius:50%;background:var(--lfvy-c1);
  animation:lfvy-dot 1.9s ease-in-out infinite;
}
@keyframes lfvy-dot{0%{transform:translateY(0);opacity:1}70%{transform:translateY(16px);opacity:0}100%{opacity:0}}

/* ============================================================
   TICKER (TICKER-2)
   ============================================================ */
.lfvy-ticker{
  border-top:1px solid var(--lfvy-border);
  border-bottom:1px solid var(--lfvy-border);
  background:linear-gradient(90deg,rgba(139,30,45,.10),rgba(224,169,109,.06));
  overflow:hidden;
  padding:16px 0;
}
.lfvy-ticker__track{
  display:flex;width:max-content;
  animation:lfvy-marquee 46s linear infinite;
}
.lfvy-ticker__set{
  display:flex;align-items:center;flex:0 0 auto;
  font-family:var(--lfvy-sans);
  text-transform:uppercase;letter-spacing:3px;
  font-size:clamp(.72rem,1.6vw,.86rem);
  color:var(--lfvy-text);
  white-space:nowrap;
}
.lfvy-ticker__set span{padding:0 clamp(14px,2vw,26px);opacity:.85}
.lfvy-ticker__set i{color:var(--lfvy-c1);font-style:normal;font-size:1.1em}
@keyframes lfvy-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.lfvy-ticker:hover .lfvy-ticker__track{animation-play-state:paused}

/* ============================================================
   SVG RULE
   ============================================================ */
.lfvy-rule{
  position:relative;
  max-width:1240px;margin:clamp(30px,6vw,64px) auto;
  padding:0 clamp(16px,4vw,40px);
  display:flex;align-items:center;justify-content:center;
}
.lfvy-rule svg{width:100%;height:14px}
.lfvy-rule__line{
  stroke:var(--lfvy-c1);stroke-width:1;opacity:.5;
  stroke-dasharray:1200;stroke-dashoffset:1200;
  transition:stroke-dashoffset 1.4s ease;
}
.lfvy-rule.is-in .lfvy-rule__line{stroke-dashoffset:0}
.lfvy-rule__mark{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) rotate(45deg);
  width:8px;height:8px;background:var(--lfvy-c2);border:1px solid var(--lfvy-c1);
}

/* ============================================================
   FEATURE SECTIONS (FEAT-4)
   ============================================================ */
.lfvy-feat{
  max-width:1240px;margin:0 auto;
  padding:clamp(28px,6vw,60px) clamp(16px,4vw,40px);
}
.lfvy-feat__frame{
  position:relative;
  min-height:clamp(460px,74vh,680px);
  border-radius:22px;overflow:hidden;
  border:1px solid var(--lfvy-border);
  box-shadow:0 30px 70px rgba(0,0,0,.45),0 0 0 1px rgba(224,169,109,.04);
}
.lfvy-feat__media{
  position:absolute;inset:0;
  background:
    linear-gradient(135deg,rgba(139,30,45,.5),rgba(18,7,8,.2)),
    linear-gradient(180deg,#1f0e11,#120708);
  background-size:cover;background-position:center;
}
.lfvy-feat__media[data-img="tower"]{background-image:linear-gradient(160deg,rgba(139,30,45,.42),rgba(18,7,8,.55)),url('../assets/img/tower.webp')}
.lfvy-feat__media[data-img="suite"]{background-image:linear-gradient(160deg,rgba(224,169,109,.28),rgba(18,7,8,.6)),url('../assets/img/suite.webp')}
.lfvy-feat__media[data-img="casino"]{background-image:linear-gradient(160deg,rgba(139,30,45,.5),rgba(9,3,4,.62)),url('../assets/img/casino.webp')}
.lfvy-feat__media[data-img="spa"]{background-image:linear-gradient(160deg,rgba(224,169,109,.24),rgba(18,7,8,.6)),url('../assets/img/spa.webp')}
.lfvy-feat__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(9,3,4,.9) 0%,rgba(9,3,4,.15) 55%,transparent 100%);
}
.lfvy-feat__panel{
  position:absolute;z-index:2;
  left:clamp(16px,3.5vw,40px);right:clamp(16px,3.5vw,40px);
  bottom:clamp(16px,3.5vw,40px);
  max-width:640px;
  padding:clamp(20px,3vw,34px);
  background:var(--lfvy-glass);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid var(--lfvy-border);
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
}
.lfvy-feat__text{margin:0 0 16px;color:var(--lfvy-text);opacity:.9}

/* ============================================================
   AMENITIES GRID (GRID-1)
   ============================================================ */
.lfvy-grid-wrap{
  max-width:1240px;margin:0 auto;
  padding:clamp(28px,6vw,60px) clamp(16px,4vw,40px);
}
.lfvy-grid-head{max-width:640px;margin:0 0 clamp(24px,4vw,44px)}
.lfvy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(14px,2vw,22px);
}
.lfvy-card{
  background:var(--lfvy-card);
  border:1px solid var(--lfvy-border);
  border-radius:16px;
  padding:clamp(22px,2.4vw,30px);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.lfvy-card:hover{
  transform:translateY(-6px);
  border-color:rgba(224,169,109,.4);
  box-shadow:0 22px 50px rgba(0,0,0,.45),0 0 26px rgba(224,169,109,.14);
}
.lfvy-card__ico{
  display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:12px;
  background:rgba(224,169,109,.10);
  border:1px solid var(--lfvy-border);
  color:var(--lfvy-c1);margin-bottom:18px;
}
.lfvy-card__ico svg{width:26px;height:26px}
.lfvy-card__title{
  margin:0 0 8px;
  font-family:var(--lfvy-serif);font-weight:400;font-size:1.3rem;
  color:var(--lfvy-text);
}
.lfvy-card__body{margin:0;color:var(--lfvy-muted);font-size:.94rem}

/* ============================================================
   RESERVE / FORM (FORM-2)
   ============================================================ */
.lfvy-reserve{
  padding:clamp(36px,7vw,80px) clamp(16px,4vw,40px);
  display:flex;justify-content:center;
  background:radial-gradient(90% 70% at 50% 0%,rgba(139,30,45,.16),transparent 60%);
}
.lfvy-reserve__card{
  width:100%;max-width:560px;
  background:var(--lfvy-glass);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid var(--lfvy-border);
  border-radius:20px;
  padding:clamp(24px,4vw,44px);
  box-shadow:0 30px 70px rgba(0,0,0,.5);
  text-align:center;
}
.lfvy-reserve__eyebrow{text-align:center}
.lfvy-reserve__title{text-align:center}
.lfvy-reserve__sub{margin:0 auto 26px;max-width:44ch;color:var(--lfvy-muted)}
.lfvy-form{display:flex;flex-direction:column;gap:14px;text-align:left}
.lfvy-field{display:flex;flex-direction:column;gap:6px;min-width:0}
.lfvy-field span{
  font-size:.72rem;text-transform:uppercase;letter-spacing:2px;color:var(--lfvy-c1);
}
.lfvy-field input,.lfvy-field select{
  width:100%;min-width:0;
  min-height:50px;padding:0 14px;
  background:rgba(9,3,4,.5);
  border:1px solid var(--lfvy-border);border-radius:3px;
  color:var(--lfvy-text);font-family:var(--lfvy-sans);
  font-size:16px; /* prevent iOS zoom */
  transition:border-color .2s ease,box-shadow .2s ease;
}
.lfvy-field select{padding-right:12px;-webkit-appearance:none;appearance:none;height:50px}
.lfvy-field input:focus,.lfvy-field select:focus{
  outline:none;border-color:var(--lfvy-c1);
  box-shadow:0 0 0 3px rgba(224,169,109,.18);
}
.lfvy-form__submit{width:100%;margin-top:6px}
.lfvy-form__notice{
  margin:6px 0 0;text-align:center;
  color:var(--lfvy-c1);font-family:var(--lfvy-serif);font-style:italic;
  font-size:1.05rem;
}
.lfvy-reserve__meta{
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px 22px;
  margin-top:24px;padding-top:20px;border-top:1px solid var(--lfvy-border);
  color:var(--lfvy-muted);font-size:.86rem;
}

/* ============================================================
   FOOTER (FOOTER-3 — centered minimal)
   ============================================================ */
.lfvy-foot{
  border-top:1px solid var(--lfvy-border);
  padding:clamp(40px,6vw,64px) clamp(16px,4vw,40px);
  background:#0c0405;
}
.lfvy-foot__inner{
  max-width:720px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:18px;
}
.lfvy-foot__brand{color:var(--lfvy-c1)}
.lfvy-foot__brand .lfvy-brand__name{font-size:1.3rem}
.lfvy-foot__line{margin:0;max-width:52ch;color:var(--lfvy-muted);font-size:.92rem}
.lfvy-foot__nav{
  display:flex;flex-wrap:wrap;justify-content:center;gap:6px 22px;
}
.lfvy-foot__nav a{
  color:var(--lfvy-text);opacity:.78;
  font-size:.82rem;letter-spacing:1px;text-transform:uppercase;
  padding:10px 4px;min-height:44px;display:inline-flex;align-items:center;
  transition:opacity .2s ease,color .2s ease;
}
.lfvy-foot__nav a:hover{opacity:1;color:var(--lfvy-c1)}
.lfvy-foot__copy{margin:0;color:var(--lfvy-muted);font-size:.8rem;letter-spacing:1px}

/* ============================================================
   REVEAL
   ============================================================ */
.lfvy-reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.lfvy-reveal.is-in{opacity:1;transform:none}
.lfvy-grid .lfvy-card.is-in:nth-child(2){transition-delay:.08s}
.lfvy-grid .lfvy-card.is-in:nth-child(3){transition-delay:.16s}
.lfvy-grid .lfvy-card.is-in:nth-child(4){transition-delay:.24s}
.lfvy-grid .lfvy-card.is-in:nth-child(5){transition-delay:.32s}
.lfvy-grid .lfvy-card.is-in:nth-child(6){transition-delay:.40s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:992px){
  .lfvy-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:768px){
  :root{--lfvy-head-h:62px}
  .lfvy-nav,.lfvy-reserve-btn{display:none}
  .lfvy-dots{display:inline-flex}

  /* FEAT-4 -> stacked, no overlap */
  .lfvy-feat__frame{
    min-height:0;border:none;box-shadow:none;overflow:visible;border-radius:0;
  }
  .lfvy-feat__media{
    position:relative;inset:auto;
    height:clamp(220px,50vw,360px);
    border-radius:16px;border:1px solid var(--lfvy-border);
  }
  .lfvy-feat__media::after{display:none}
  .lfvy-feat__panel{
    position:static;
    left:auto;right:auto;bottom:auto;
    max-width:none;margin-top:14px;
    background:var(--lfvy-card);
  }
}

@media (max-width:640px){
  .lfvy-grid{grid-template-columns:1fr}
}

@media (max-width:480px){
  .lfvy-eyebrow{letter-spacing:1.6px}
  .lfvy-head__inner{padding:0 16px}
  .lfvy-brand__name{font-size:1.02rem}
  .lfvy-brand__the{display:none}
  .lfvy-hero{padding-left:16px;padding-right:16px}
  .lfvy-hero__cta{flex-direction:column}
  .lfvy-hero__cta .lfvy-btn{width:100%}
  .lfvy-ticker__set{letter-spacing:2px}
  .lfvy-ticker__track{animation-duration:34s}
}

@media (max-width:360px){
  .lfvy-head__inner,.lfvy-hero,.lfvy-feat,.lfvy-grid-wrap,.lfvy-reserve,.lfvy-foot{
    padding-left:12px;padding-right:12px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important}
  .lfvy-ticker__track{animation:none}
  .lfvy-reveal{opacity:1;transform:none}
  .lfvy-rule__line{stroke-dashoffset:0}
  .lfvy-hero__title .lfvy-ch{opacity:1;transform:none}
  .lfvy-scrolldot span{animation:none}
}
