/* ── RESET & ROOT ── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --black:#080808;
  --ink:#181818;
  --charcoal:#2c2c2c;
  --mid:#6a6a6a;
  --muted:#9a9a9a;
  --border:#e4e4e0;
  --bg:#f8f7f4;
  --white:#ffffff;
  --gold:#b8962e;
  --gold-l:#d4af5a;
  --px:22px;
}
@media(min-width:640px){:root{--px:44px;}}
@media(min-width:1100px){:root{--px:80px;}}

html{scroll-behavior:auto;overflow-x:hidden;}
body{
  font-family:'Jost',sans-serif;
  background:var(--white);
  color:var(--black);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:3px;}
::-webkit-scrollbar-track{background:var(--bg);}
::-webkit-scrollbar-thumb{background:var(--gold);}

/* ── PROGRESS BAR ── */
#prog{
  position:fixed;top:0;left:0;height:1px;
  background:var(--gold);z-index:1000;width:0%;
  transform-origin:left;
}

/* ── LOADER ── */
#loader{
  position:fixed;inset:0;background:var(--black);
  z-index:9999;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:28px;
  pointer-events:none;
}
#ldr-name{
  font-family:'Playfair Display',serif;
  font-size:clamp(18px,3vw,26px);
  color:var(--white);letter-spacing:3px;
  opacity:0;transform:translateY(16px);
}
#ldr-sub{
  font-size:9px;letter-spacing:6px;text-transform:uppercase;
  color:var(--gold);opacity:0;
}
#ldr-track{
  width:140px;height:1px;
  background:rgba(255,255,255,0.1);
  overflow:hidden;
}
#ldr-fill{
  height:100%;width:0%;
  background:var(--gold);
  transition:width .04s linear;
}

/* ── GRAIN ── */
#grain{
  position:fixed;inset:0;z-index:8000;
  pointer-events:none;opacity:.022;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size:260px;
}

/* ── CUSTOM CURSOR (desktop) ── */
@media(pointer:fine){
  body{cursor:none;}
  #c-dot{
    position:fixed;width:7px;height:7px;
    background:var(--gold);border-radius:50%;
    pointer-events:none;z-index:7000;
    transform:translate(-50%,-50%);
    transition:width .25s,height .25s,background .25s,border-radius .25s;
    will-change:transform;
  }
  #c-ring{
    position:fixed;width:30px;height:30px;
    border:1px solid rgba(184,150,46,.45);
    border-radius:50%;
    pointer-events:none;z-index:6999;
    transform:translate(-50%,-50%);
    will-change:transform;
  }
  .cursor-grow #c-dot{width:44px;height:44px;background:rgba(184,150,46,.12);border-radius:0;}
  .cursor-grow #c-ring{opacity:0;}
}
@media(pointer:coarse){#c-dot,#c-ring{display:none!important;}}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;
  z-index:500;
  display:flex;align-items:center;justify-content:space-between;
  padding:26px var(--px);
  transition:padding .5s ease,background .5s ease,border-color .5s ease;
  border-bottom:1px solid transparent;
}
nav.scrolled{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  padding:15px var(--px);
  border-color:var(--border);
}
.n-brand{text-decoration:none;display:flex;align-items:center;gap:12px;}
.n-logo{
  width:168px;
  height:auto;
  filter:brightness(0) invert(1);
  transition:filter .4s,opacity .4s;
}
nav.scrolled .n-logo{filter:none;}
.n-links{display:none;}
@media(min-width:900px){
  .n-links{
    display:flex;gap:40px;list-style:none;
    position:absolute;left:50%;transform:translateX(-50%);
  }
  .n-links a{
    font-size:10px;letter-spacing:3px;text-transform:uppercase;
    color:rgba(255,255,255,.65);transition:color .3s;
  }
  nav.scrolled .n-links a{color:var(--charcoal);}
  .n-links a:hover{color:var(--gold)!important;}
}
.n-right{display:flex;align-items:center;gap:24px;}
.n-tel{
  display:none;font-size:12px;
  color:rgba(255,255,255,.7);transition:color .4s;
  font-family:'EB Garamond',serif;
}
nav.scrolled .n-tel{color:var(--charcoal);}
@media(min-width:700px){.n-tel{display:block;}}
.n-cta{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:rgba(255,255,255,.8);
  border-bottom:1px solid rgba(255,255,255,.35);
  padding-bottom:2px;transition:color .4s,border-color .4s;
}
nav.scrolled .n-cta{color:var(--charcoal);border-color:var(--charcoal);}
.n-cta:hover{color:var(--gold)!important;border-color:var(--gold)!important;}

/* ── HERO ── */
.hero{
  position:relative;height:100svh;min-height:620px;
  overflow:hidden;
}
.hero-slides{position:absolute;inset:0;}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  opacity:0;transition:opacity 1.4s cubic-bezier(.4,0,.2,1);
  will-change:opacity;
}
.hero-slide.active{opacity:1;}
.hero-slide::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.10) 35%,
    rgba(0,0,0,.55) 65%,
    rgba(0,0,0,.80) 100%
  );
}
/* parallax inner image per slide handled via JS */
.hero-inner{
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  z-index:4;
  display:flex;
  flex-direction:column;
  /* push everything to the BOTTOM third of the screen */
  justify-content:flex-end;
  padding:0 var(--px) 72px;
}
/* Constrain headline width on wide screens */
@media(min-width:1024px){
  .hero-inner{padding-bottom:100px;}
  .hero-headline{max-width:720px;}
  .h-sub{max-width:480px;}
}
.h-eye{
  font-size:10px;letter-spacing:6px;text-transform:uppercase;
  color:rgba(255,255,255,.66);
  display:flex;align-items:center;gap:14px;
  margin-bottom:20px;
  opacity:0;
  /* clip-path set by JS — start transparent to avoid flash */
}
.h-eye::before{content:'';width:30px;height:1px;background:var(--gold);flex-shrink:0;}
.hero-headline{
  font-family:'Playfair Display',serif;
  /* Smaller clamp — lines stay compact in bottom section */
  font-size:clamp(28px,4.8vw,68px);
  font-weight:400;line-height:1.1;
  color:var(--white);
  margin-bottom:18px;
  overflow:visible;
}
.hero-headline .ln{
  display:block;overflow:hidden;
}
.hero-headline .ln span{
  display:block;
  transform:translateY(110%);
  opacity:0;
}
.hero-headline em{font-style:italic;color:rgba(255,255,255,.8);}
.h-sub{
  font-size:14px;line-height:1.82;
  color:rgba(255,255,255,.58);
  max-width:460px;margin-bottom:40px;
  opacity:0;transform:translateY(20px);
}
.h-btns{
  display:flex;flex-wrap:wrap;gap:12px;
  opacity:0;transform:translateY(18px);
}
.hero-dots{
  position:absolute;bottom:38px;right:var(--px);
  display:flex;gap:7px;z-index:5;
}
.h-dot{
  width:18px;height:2px;
  background:rgba(255,255,255,.28);
  cursor:pointer;transition:all .4s;
}
.h-dot.on{background:var(--gold);width:36px;}
.hero-scroll-hint{
  position:absolute;bottom:42px;left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  color:rgba(255,255,255,.35);font-size:8px;letter-spacing:4px;text-transform:uppercase;
}
.hero-scroll-hint::after{
  content:'';width:1px;height:38px;
  background:linear-gradient(to bottom,rgba(255,255,255,.35),transparent);
  animation:hscroll 2s ease-in-out infinite;
}
@keyframes hscroll{0%,100%{transform:translateY(0);}50%{transform:translateY(7px);}}

/* ── BUTTONS ── */
.btn-gold{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:var(--white);
  padding:14px 32px;
  font-size:10px;letter-spacing:3px;text-transform:uppercase;
  font-family:'Jost',sans-serif;font-weight:500;
  transition:background .35s,transform .35s;
  cursor:pointer;border:none;
  position:relative;overflow:hidden;
}
.btn-gold::after{
  content:'';position:absolute;inset:0;
  background:rgba(255,255,255,.12);
  transform:translateX(-101%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.btn-gold:hover{background:#9a7a22;}
.btn-gold:hover::after{transform:translateX(0);}
.btn-ghost-w{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid rgba(255,255,255,.38);
  color:rgba(255,255,255,.8);
  padding:14px 32px;
  font-size:10px;letter-spacing:3px;text-transform:uppercase;
  font-family:'Jost',sans-serif;font-weight:400;
  transition:border-color .3s,color .3s;
}
.btn-ghost-w:hover{border-color:var(--white);color:var(--white);}

/* ── STRIP (stats) ── */
.strip{
  background:var(--black);
  display:grid;grid-template-columns:1fr 1fr;
}
@media(min-width:700px){.strip{grid-template-columns:repeat(4,1fr);}}
.s-item{
  padding:32px 24px;
  border-right:1px solid rgba(255,255,255,.06);
  text-align:center;
  opacity:0;transform:translateY(20px);
}
.s-item:last-child{border-right:none;}
.s-num{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3.5vw,42px);
  color:var(--gold-l);font-weight:400;line-height:1;
  margin-bottom:7px;
}
.s-lbl{font-size:9px;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.28);}

/* ── SECTION BASE ── */
section{padding:80px var(--px);}
@media(min-width:768px){section{padding:110px var(--px);}}
@media(min-width:1100px){section{padding:140px var(--px);}}

.eyebrow{
  font-size:9px;letter-spacing:5px;text-transform:uppercase;
  color:var(--gold);display:flex;align-items:center;gap:14px;
  margin-bottom:16px;
  opacity:0;transform:translateY(14px);
}
.eyebrow::before{content:'';width:28px;height:1px;background:var(--gold);flex-shrink:0;}
.eyebrow.ec::before{display:none;}
.eyebrow.ec{justify-content:center;}

.sec-h{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,54px);
  font-weight:400;line-height:1.12;margin-bottom:20px;
}
.sec-h em{font-style:italic;color:var(--mid);}
/* line-by-line reveal for sec-h */
.sec-h .ln{display:block;overflow:hidden;}
.sec-h .ln span{display:block;transform:translateY(105%);opacity:0;}

.sec-p{
  font-size:14px;line-height:1.88;
  color:var(--charcoal);max-width:580px;
  opacity:0;transform:translateY(16px);
}
.gold-rule{
  width:0;height:1px;
  background:var(--gold);margin:28px 0;display:block;
}

/* ── FEATURED LISTING ── */
.featured{background:var(--white);}
.f-grid{display:flex;flex-direction:column;}
@media(min-width:900px){
  .f-grid{display:grid;grid-template-columns:1.1fr 1fr;min-height:580px;}
}
.f-img{
  overflow:hidden;position:relative;
  height:340px;
}
@media(min-width:900px){.f-img{height:auto;}}
.f-img img{
  width:100%;height:115%;
  object-fit:cover;
  transform:translateY(0);
  will-change:transform;
}
.f-badge{
  position:absolute;top:22px;left:22px;z-index:2;
  background:var(--gold);color:var(--white);
  font-size:8px;letter-spacing:3px;text-transform:uppercase;
  padding:6px 14px;opacity:0;transform:translateX(-20px);
}
.f-body{
  background:var(--bg);
  padding:44px 36px;
  display:flex;flex-direction:column;justify-content:center;
  opacity:0;transform:translateX(28px);
}
@media(min-width:1100px){.f-body{padding:70px 64px;}}
.f-price{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,3.5vw,50px);
  font-weight:400;color:var(--black);line-height:1;
  margin:14px 0 8px;
  opacity:0;transform:translateY(16px);
}
.f-addr{
  font-size:13px;color:var(--mid);
  margin-bottom:24px;line-height:1.6;
  opacity:0;transform:translateY(14px);
}
.f-specs{
  display:flex;flex-wrap:wrap;gap:24px;
  padding:22px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:28px;
  opacity:0;
}
.sp-v{
  font-family:'Playfair Display',serif;
  font-size:24px;color:var(--black);line-height:1;
}
.sp-k{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-top:3px;}
.f-desc{
  font-size:14px;line-height:1.8;color:var(--mid);
  margin-bottom:28px;
  opacity:0;transform:translateY(12px);
}
.f-cta-wrap{opacity:0;transform:translateY(12px);}

/* ── LISTINGS ── */
.listings{background:var(--bg);}
.l-header{
  display:flex;flex-direction:column;gap:14px;
  margin-bottom:48px;
}
@media(min-width:768px){.l-header{flex-direction:row;align-items:flex-end;justify-content:space-between;}}
.l-more{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:var(--gold);border-bottom:1px solid var(--gold);
  padding-bottom:2px;white-space:nowrap;align-self:flex-start;
  opacity:0;
}
.l-grid{
  display:grid;grid-template-columns:1fr;gap:2px;
}
@media(min-width:600px){.l-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:960px){.l-grid{grid-template-columns:1fr 1fr 1fr;}}
.l-card{
  background:var(--white);overflow:hidden;
  opacity:0;transform:translateY(36px);
  transition:box-shadow .4s,transform .4s;
  cursor:pointer;
}
.l-card:hover{transform:translateY(-5px);box-shadow:0 20px 50px rgba(0,0,0,.09);}
.l-card:hover .l-img img{transform:scale(1.06);}
.l-img{height:240px;overflow:hidden;position:relative;}
.l-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .65s cubic-bezier(.4,0,.2,1);
}
.l-tag{
  position:absolute;bottom:14px;left:14px;
  background:rgba(8,8,8,.7);backdrop-filter:blur(4px);
  color:var(--white);
  font-size:8px;letter-spacing:2.5px;text-transform:uppercase;
  padding:5px 11px;
}
.l-body{padding:20px 18px 22px;}
.l-name{font-family:'Playfair Display',serif;font-size:20px;font-weight:400;margin-bottom:4px;}
.l-type{font-size:9px;letter-spacing:3px;text-transform:uppercase;color:var(--muted);margin-bottom:14px;}
.l-specs{
  display:flex;gap:18px;
  padding:12px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}
.ls-v{font-family:'EB Garamond',serif;font-size:18px;color:var(--black);}
.ls-k{font-size:8px;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-top:1px;}
.l-pr{display:flex;justify-content:space-between;align-items:center;}
.l-price{font-family:'Playfair Display',serif;font-size:22px;font-weight:400;}
.l-wa{font-size:9px;letter-spacing:2px;text-transform:uppercase;color:var(--gold);border-bottom:1px solid transparent;transition:border-color .25s;}
.l-wa:hover{border-color:var(--gold);}

/* ── GALLERY (horizontal scroll) ── */
.gallery-sec{
  background:var(--bg);
  padding:0 0 80px;
  overflow:hidden;
}
@media(min-width:768px){.gallery-sec{padding-bottom:110px;}}
.gallery-header{
  padding:80px var(--px) 44px;
}
@media(min-width:768px){.gallery-header{padding:110px var(--px) 44px;}}
.gallery-track-wrap{
  overflow:hidden;
  padding:0 var(--px);
}
.gallery-track{
  display:flex;gap:4px;
  /* JS will move this for parallax-scroll effect on desktop */
}
.g-item{
  flex-shrink:0;
  width:clamp(240px,38vw,520px);
  height:clamp(300px,52vh,580px);
  overflow:hidden;position:relative;cursor:pointer;
}
.g-item img{
  width:100%;height:110%;
  object-fit:cover;
  transform:translateY(0);
  will-change:transform;
  transition:transform .05s linear;
}
.g-cap{
  position:absolute;bottom:0;left:0;right:0;
  padding:48px 18px 16px;
  background:linear-gradient(to top,rgba(0,0,0,.65),transparent);
  color:var(--white);font-size:9px;letter-spacing:3px;text-transform:uppercase;
  opacity:0;transition:opacity .3s;
}
.g-item:hover .g-cap{opacity:1;}
.g-item:hover img{transform:scale(1.04) !important;}

/* ── CTA BLOCKS ── */
.cta-blocks{background:var(--white);}
.cb-grid{
  display:grid;grid-template-columns:1fr;gap:3px;
}
@media(min-width:600px){.cb-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:900px){.cb-grid{grid-template-columns:1fr 1fr 1fr 1fr;}}
.cb{
  position:relative;overflow:hidden;
  height:300px;cursor:pointer;
  opacity:0;transform:translateY(24px);
}
@media(min-width:900px){.cb{height:380px;}}
.cb img{
  position:absolute;inset:0;
  width:100%;height:115%;
  object-fit:cover;
  transform:translateY(0);
  will-change:transform;
  transition:transform .05s linear;
}
.cb:hover img{transform:scale(1.05) !important;}
.cb-ov{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.08) 65%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:26px 22px;
  transition:background .35s;
}
.cb:hover .cb-ov{background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.15) 65%);}
.cb-lbl{font-size:8px;letter-spacing:3px;text-transform:uppercase;color:var(--gold-l);margin-bottom:7px;}
.cb-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(16px,2vw,24px);
  color:var(--white);font-weight:400;line-height:1.25;margin-bottom:12px;
}
.cb-link{
  font-size:9px;letter-spacing:2.5px;text-transform:uppercase;
  color:rgba(255,255,255,.55);
  display:inline-flex;align-items:center;gap:8px;
  transition:color .3s;
}
.cb-link::after{content:'→';transition:transform .3s;}
.cb:hover .cb-link{color:var(--white);}
.cb:hover .cb-link::after{transform:translateX(5px);}

/* ── ABOUT ── */
.about{background:var(--black);color:var(--white);}
.a-grid{
  display:flex;flex-direction:column;gap:48px;
}
@media(min-width:900px){
  .a-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
}
.a-img-wrap{position:relative;}
.a-main{
  width:100%;height:380px;
  object-fit:cover;
  opacity:0;transform:translateX(-28px);
}
@media(min-width:900px){.a-main{height:100%;min-height:520px;}}
.a-accent{
  position:absolute;bottom:-28px;right:-20px;
  width:56%;aspect-ratio:1;
  object-fit:cover;
  border:4px solid var(--black);
  display:none;
  opacity:0;transform:translateY(20px);
}
@media(min-width:900px){.a-accent{display:block;}}
.about .eyebrow{color:var(--gold);}
.about .eyebrow::before{background:var(--gold);}
.about .sec-h{color:var(--white);}
.about .sec-h em{color:rgba(255,255,255,.38);}
.a-txt{
  font-size:14px;line-height:1.88;
  color:rgba(255,255,255,.48);
  margin-bottom:22px;
  opacity:0;transform:translateY(16px);
}
.a-list{list-style:none;display:flex;flex-direction:column;gap:11px;opacity:0;transform:translateY(16px);}
.a-list li{
  font-size:13px;color:rgba(255,255,255,.45);
  display:flex;align-items:center;gap:14px;
}
.a-list li::before{content:'';width:14px;height:1px;background:var(--gold);flex-shrink:0;}

/* ── TESTIMONIAL ── */
.testi{background:var(--bg);}
.t-inner{max-width:720px;margin:0 auto;text-align:center;}
.t-mark{
  font-family:'Playfair Display',serif;
  font-size:90px;color:var(--border);
  line-height:.65;display:block;margin-bottom:16px;
  opacity:0;
}
.t-q{
  font-family:'EB Garamond',serif;
  font-size:clamp(19px,2.6vw,30px);
  font-style:italic;color:var(--ink);
  line-height:1.58;margin-bottom:24px;
  opacity:0;transform:translateY(16px);
}
.t-a{
  font-size:9px;letter-spacing:4px;text-transform:uppercase;
  color:var(--muted);
  opacity:0;
}
.t-dots{display:flex;gap:8px;justify-content:center;margin-top:30px;}
.t-dot{
  width:22px;height:2px;
  background:var(--border);cursor:pointer;transition:all .35s;
}
.t-dot.on{background:var(--gold);width:38px;}

/* ── LOCATION ── */
.location{background:var(--white);}
.loc-grid{
  display:flex;flex-direction:column;gap:48px;
}
@media(min-width:900px){
  .loc-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:72px;align-items:start;}
}
.loc-pts{list-style:none;display:flex;flex-direction:column;margin-top:28px;}
.loc-pt{
  display:flex;gap:18px;align-items:flex-start;
  padding:18px 0;border-bottom:1px solid var(--border);
  opacity:0;transform:translateY(16px);
}
.loc-pt:first-child{border-top:1px solid var(--border);}
.loc-ico{
  width:36px;height:36px;flex-shrink:0;
  background:var(--black);
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;
}
.loc-ico svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.loc-name{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--black);margin-bottom:3px;}
.loc-val{font-size:13px;color:var(--mid);}
.loc-img-wrap{overflow:hidden;opacity:0;transform:translateX(28px);}
.loc-img{
  width:100%;height:380px;
  object-fit:cover;
  filter:grayscale(15%);
  transform:scale(1.08);
  will-change:transform;
}
@media(min-width:900px){.loc-img{height:480px;}}

/* ── CTA FORM ── */
.cta-form-sec{
  background:var(--black);color:var(--white);
  text-align:center;
  padding:80px var(--px);
}
@media(min-width:768px){.cta-form-sec{padding:110px var(--px);}}
.cta-form-sec .eyebrow{color:var(--gold);justify-content:center;opacity:0;}
.cta-form-sec .eyebrow::before{display:none;}
.cta-form-sec .sec-h{color:var(--white);}
.cta-form-sec .sec-h em{color:rgba(255,255,255,.35);}
.cta-form-sec .sec-h .ln span{transform:translateY(105%);opacity:0;}
.cta-desc{
  font-size:14px;line-height:1.8;
  color:rgba(255,255,255,.38);
  max-width:460px;margin:0 auto 40px;
  opacity:0;transform:translateY(14px);
}
.form-wrap{
  display:flex;flex-direction:column;gap:11px;
  max-width:460px;margin:0 auto;
  opacity:0;transform:translateY(18px);
}
.f-input{
  width:100%;padding:15px 18px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:var(--white);
  font-family:'Jost',sans-serif;font-size:13px;
  outline:none;transition:border-color .3s;
  -webkit-appearance:none;border-radius:0;
}
.f-input::placeholder{color:rgba(255,255,255,.22);}
.f-input:focus{border-color:var(--gold);}
.cf-c{display:flex;justify-content:center;}
.btn-wa{
  display:flex;align-items:center;justify-content:center;gap:11px;
  background:#25D366;color:var(--white);
  padding:16px 28px;width:100%;
  font-family:'Jost',sans-serif;
  font-size:10px;letter-spacing:2.5px;text-transform:uppercase;font-weight:500;
  border:none;cursor:pointer;transition:background .3s,transform .3s;
}
.btn-wa:hover{background:#1db954;}
.btn-wa svg{width:18px;height:18px;fill:white;flex-shrink:0;}
.f-note{font-size:10px;color:rgba(255,255,255,.18);letter-spacing:.5px;}

/* ══════════════════════════════════════════════════
   SUCI CHATBOT — rebuilt from scratch
   Compact, clean, minimalist floating chat widget
══════════════════════════════════════════════════ */

/* Container */
.suci-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9000;
  font-family: 'Jost', sans-serif;
}

/* Floating Action Button */
.suci-fab {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.34)),
    rgba(250,247,240,.26);
  color: rgba(255,255,255,.96);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 40px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
}
.suci-fab:hover {
  transform: scale(1.08);
  box-shadow:
    0 18px 44px rgba(15,23,42,.2),
    inset 0 1px 0 rgba(255,255,255,.86),
    inset 0 -1px 0 rgba(255,255,255,.16);
}
.suci-fab svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .15s, transform .15s;
}
.suci-fab .ico-close { display: none; }
.suci-chat.open .suci-fab .ico-chat { display: none; }
.suci-chat.open .suci-fab .ico-close { display: block; }
.suci-chat.open .suci-fab {
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.42)),
    rgba(250,247,240,.28);
}

/* Online pulse dot */
.suci-fab::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.88);
  animation: sucipulse 2s infinite;
}
@keyframes sucipulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* Panel */
.suci-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: min(580px, calc(100dvh - 100px));
  display: none;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.42);
  background:
    linear-gradient(160deg, rgba(255,255,255,.78), rgba(255,255,255,.36) 48%, rgba(255,255,255,.16)),
    rgba(248,244,236,.22);
  box-shadow:
    0 26px 64px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(34px) saturate(155%);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  overflow: hidden;
  animation: suciUp .2s ease-out;
}
@keyframes suciUp {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.suci-chat.open .suci-panel { display: flex; }

/* Panel Header */
.suci-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.08));
  color: #1f2937;
  border-bottom: 1px solid rgba(255,255,255,.34);
}
.suci-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(208,170,47,.82));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.suci-avatar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.suci-hdr-info strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.suci-hdr-info span {
  font-size: 11px;
  opacity: .7;
}

/* Chat Log */
.suci-log {
  flex: 1 1 0;
  min-height: 280px;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}
.suci-log::-webkit-scrollbar { width: 4px; }
.suci-log::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }

/* Bubbles */
.suci-bubble {
  max-width: 82%;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 14px;
  animation: suciFadeIn .2s ease;
}
@keyframes suciFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.suci-bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,.56);
  color: #1f2937;
  border: 1px solid rgba(255,255,255,.42);
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.suci-bubble.user {
  align-self: flex-end;
  background: rgba(17,24,39,.78);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.suci-bubble.thinking {
  color: #7b8794;
  font-style: italic;
  border-color: transparent;
  background: rgba(255,255,255,.34);
}

/* Input Form */
.suci-form {
  display: flex;
  gap: 8px;
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(255,255,255,.34);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
}
.suci-form input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 10px;
  background: rgba(255,255,255,.52);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #1f2937;
  outline: none;
  transition: border-color .2s, background .2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.suci-form input:focus {
  border-color: rgba(208,170,47,.8);
  background: rgba(255,255,255,.68);
}
.suci-form input::placeholder { color: #9ca3af; }
.suci-form button {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(214,181,76,.96), rgba(194,156,43,.92));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, filter .2s;
  box-shadow: 0 10px 24px rgba(208,170,47,.24);
}
.suci-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.suci-form button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Powered footer */
.suci-footer {
  text-align: center;
  padding: 6px 0 8px;
  font-size: 10px;
  color: rgba(71,85,105,.7);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .suci-chat { right: 14px; bottom: 14px; }
  .suci-fab { width: 46px; height: 46px; }
  .suci-fab svg { width: 20px; height: 20px; }
  .suci-panel {
    width: calc(100vw - 28px);
    max-height: min(480px, calc(100dvh - 80px));
    bottom: 58px;
    border-radius: 22px;
  }
  .suci-hdr { padding: 12px 14px; }
  .suci-log { padding: 12px 12px 6px; }
  .suci-form { padding: 8px 12px 10px; }
  .suci-form input { height: 36px; font-size: 13px; }
  .suci-form button { width: 36px; height: 36px; }
}

/* ── FOOTER ── */
footer{
  background:#040404;
  padding:60px var(--px) 30px;
  border-top:1px solid rgba(255,255,255,.04);
}
.ft-grid{
  display:flex;flex-direction:column;gap:40px;margin-bottom:44px;
}
@media(min-width:768px){.ft-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:48px;}}
.ft-name{font-family:'Playfair Display',serif;font-size:20px;color:var(--white);font-weight:400;margin-bottom:4px;}
.ft-sub{font-size:8px;letter-spacing:4px;text-transform:uppercase;color:rgba(255,255,255,.2);margin-bottom:18px;}
.ft-desc{font-size:13px;line-height:1.8;color:rgba(255,255,255,.25);max-width:280px;}
.ft-ct{font-size:8px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);margin-bottom:16px;}
.ft-lnks{list-style:none;display:flex;flex-direction:column;gap:9px;}
.ft-lnks a{font-size:13px;color:rgba(255,255,255,.28);transition:color .3s;}
.ft-lnks a:hover{color:var(--white);}
.ft-bot{
  border-top:1px solid rgba(255,255,255,.04);
  padding-top:22px;
  display:flex;flex-direction:column;gap:8px;
  font-size:10px;color:rgba(255,255,255,.14);
}
@media(min-width:600px){.ft-bot{flex-direction:row;justify-content:space-between;align-items:center;}}
