/* ═══════════════════════════════════════
   KALIA — Huile d'Olive Bio de Grèce
   Site Vitrine · SNC Kaska
   ═══════════════════════════════════════ */

/* ─── reset & base ─── */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;cursor:none}
body{
  font-family:'Josefin Sans',sans-serif;
  font-weight:400;
  color:#3a3a3a;
  background:#fff;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  font-size:16px;
  cursor:none;
}

/* ─── Custom cursor (desktop only) ─── */
.cursor{
  position:fixed;top:0;left:0;z-index:10000;
  pointer-events:none;
  width:7px;height:7px;
  background:var(--olive);
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width .2s, height .2s, background .2s;
}
.cursor.hover{
  width:12px;height:12px;
  background:var(--gold);
}
@media(max-width:768px){
  html,body{cursor:auto}
  .cursor{display:none}
}

/* ─── palette ─── */
:root{
  --gold:#C6A44E;
  --gold-l:#D9C07A;
  --gold-d:#A8883A;
  --olive:#5C7A4A;
  --olive-l:#8BAF74;
  --olive-d:#3B5230;
  --sand:#F7F3EC;
  --sand-d:#EDE7DB;
  --text:#2a2a2a;
  --text-m:#666;
  --white:#fff;
}
a,button,.pcard,.btn-g,.btn-o{cursor:none}

/* ─── timeline fil conducteur ─── */
.timeline{
  position:fixed;left:28px;top:0;bottom:0;z-index:80;
  display:flex;flex-direction:column;align-items:center;
  pointer-events:none;
}
.tl-line{
  position:absolute;top:0;bottom:0;width:1px;
  background:linear-gradient(to bottom, transparent 3%, rgba(198,164,78,.12) 10%, rgba(198,164,78,.12) 90%, transparent 97%);
}
.tl-glow{
  position:absolute;top:0;width:2px;height:80px;
  background:linear-gradient(to bottom, transparent, rgba(198,164,78,.6), var(--gold), rgba(198,164,78,.6), transparent);
  opacity:0;
  filter:blur(1px);
  transition:opacity .3s;
}
.tl-dot{
  position:absolute;
  width:8px;height:8px;
  border-radius:50%;
  border:1.5px solid rgba(198,164,78,.2);
  background:rgba(255,255,255,.9);
  transition:all .6s cubic-bezier(.4,0,.2,1);
}
.tl-dot.active{
  width:10px;height:10px;
  border-color:var(--gold);
  background:var(--gold);
  box-shadow:0 0 8px rgba(198,164,78,.5), 0 0 20px rgba(198,164,78,.2);
  animation:tlPulse 2.5s ease-in-out infinite;
}
@keyframes tlPulse{
  0%,100%{box-shadow:0 0 8px rgba(198,164,78,.5), 0 0 20px rgba(198,164,78,.2)}
  50%{box-shadow:0 0 14px rgba(198,164,78,.7), 0 0 30px rgba(198,164,78,.3)}
}
.tl-dot span{
  position:absolute;left:22px;top:50%;transform:translateY(-50%);
  font-size:.58rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-d);opacity:0;
  white-space:nowrap;
  transition:opacity .5s, transform .5s;
  transform:translateY(-50%) translateX(-5px);
  font-family:'Cormorant Garamond',serif;font-weight:600;
}
.tl-dot.active span{
  opacity:.8;
  transform:translateY(-50%) translateX(0);
}

@media(max-width:768px){
  .timeline{display:none}
}

/* ─── nav ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:90;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.4rem 4vw;
  background:transparent;
  transition:all .5s;
}
nav.solid{
  background:var(--olive-d);
  backdrop-filter:blur(14px);
  box-shadow:0 2px 20px rgba(0,0,0,.15);
  padding:0.8rem 4vw;
}
.nav-logo{height:75px;transition:height .4s}
nav.solid .nav-logo{height:50px}
/* Logo swap: dark logo visible at start, white logo on scroll */
.nav-logo-dark{display:block}
.nav-logo-white{display:none}
nav.solid .nav-logo-dark{display:none}
nav.solid .nav-logo-white{display:block}

.nav-items{display:flex;gap:2.4rem;align-items:center;list-style:none}
.nav-items a{
  text-decoration:none;color:var(--text);
  font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;
  font-weight:400;position:relative;transition:color .3s;
}
nav.solid .nav-items a{color:rgba(255,255,255,.85)}
.nav-items a::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;background:var(--gold);transition:width .3s}
.nav-items a:hover{color:var(--gold-d)}
nav.solid .nav-items a:hover{color:var(--gold-l)}
.nav-items a:hover::after{width:100%}
.nav-items .cta-link{
  border:1px solid var(--gold);padding:.45rem 1.2rem;border-radius:0;
}
nav.solid .nav-items .cta-link{color:var(--gold-l)}
.nav-items .cta-link::after{display:none}
.nav-items .cta-link:hover{background:var(--gold);color:#fff}
.menu-btn{display:none;background:none;border:none;cursor:pointer;padding:.5rem;position:relative;z-index:100}
.menu-btn svg{width:24px;height:24px;stroke:var(--text);stroke-width:1.5;transition:all .3s}
nav.solid .menu-btn svg{stroke:rgba(255,255,255,.85)}
.menu-btn.active svg line:nth-child(1){transform:rotate(45deg) translate(5px,-2px);transform-origin:center}
.menu-btn.active svg line:nth-child(2){opacity:0}
.menu-btn.active svg line:nth-child(3){transform:rotate(-45deg) translate(5px,2px);transform-origin:center}

/* Mobile nav overlay */
.nav-overlay{
  position:fixed;inset:0;z-index:85;
  background:rgba(0,0,0,.4);
  backdrop-filter:blur(3px);
  opacity:0;pointer-events:none;
  transition:opacity .4s;
}
.nav-overlay.open{
  opacity:1;pointer-events:auto;
}

/* ─── hero ─── */
.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
  background:#fff;
  overflow:hidden;
}
.hero-left{
  display:flex;
  align-items:center;
  padding:8rem 4vw 4rem 6vw;
  position:relative;
}
.hero-left::before{
  content:'';position:absolute;
  top:15%;right:0;width:1px;height:70%;
  background:linear-gradient(transparent,var(--gold-l),transparent);
  opacity:.3;
}
.hero-content{
  max-width:500px;
}
.hero-label{
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:400;
  display:block;
  margin-bottom:1.2rem;
  animation:rise 1.2s ease-out both;
}
.hero-right{
  position:relative;
  overflow:hidden;
}
.hero-img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  animation:heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  from{transform:scale(1)}
  to{transform:scale(1.05)}
}
.hero-logo{
  width:180px;
  margin-bottom:2.5rem;
  animation:rise 1.2s ease-out;
}
@keyframes rise{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1.15;
  color:var(--text);
  animation:rise 1.2s ease-out .15s both;
}
.hero h1 .cursive{
  font-family:'Dancing Script',cursive;
  color:var(--olive);
  font-weight:500;
  font-size:1.05em;
  display:block;
  margin-top:.3rem;
}
.hero-subtitle{
  font-family:'Josefin Sans',sans-serif;
  font-size:.82rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--olive-d);
  font-weight:300;
  margin-top:.3rem;
  margin-bottom:.8rem;
  animation:rise 1.2s ease-out .2s both;
}
.hero-wave{
  margin:1.6rem 0;
  animation:rise 1.2s ease-out .3s both;
}
.hero-p{
  font-size:1rem;color:var(--text-m);
  max-width:420px;line-height:1.85;
  animation:rise 1.2s ease-out .4s both;
}
.hero-tags{
  display:flex;gap:.6rem;flex-wrap:wrap;
  margin-top:1.5rem;
  animation:rise 1.2s ease-out .55s both;
}
.htag{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-d);
  border:1px solid var(--gold-l);
  padding:.4rem 1rem;border-radius:40px;
}
.hero-btns{
  display:flex;gap:1rem;margin-top:2rem;
  animation:rise 1.2s ease-out .65s both;
}
.btn-g{
  display:inline-block;padding:.85rem 2.2rem;
  background:var(--gold);color:#fff;
  text-decoration:none;font-family:'Josefin Sans',sans-serif;
  font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;font-weight:400;
  transition:all .3s;border:none;cursor:pointer;
}
.btn-g:hover{background:var(--gold-d);transform:translateY(-2px);box-shadow:0 6px 20px rgba(198,164,78,.25)}
/* Hero CTA pulse */
.hero .btn-g{
  animation:heroPulse 2.5s ease-in-out infinite;
}
.hero .btn-g:hover{animation:none}
@keyframes heroPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(198,164,78,.3)}
  50%{box-shadow:0 0 0 10px rgba(198,164,78,0)}
}
.btn-o{
  display:inline-block;padding:.85rem 2.2rem;
  border:1px solid var(--gold);color:var(--gold-d);
  text-decoration:none;font-family:'Josefin Sans',sans-serif;
  font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;font-weight:400;
  transition:all .3s;
}
.btn-o:hover{background:rgba(198,164,78,.07)}

.hero-bottom{
  position:absolute;bottom:2rem;
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  animation:rise 1.2s ease-out 1s both;
}
.hero-bottom span{font-size:.55rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-m);opacity:.4}
.hero-bottom .line{width:1px;height:30px;background:linear-gradient(var(--gold-l),transparent);animation:blink 2.2s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:.2;transform:scaleY(.5)}50%{opacity:1;transform:scaleY(1)}}

/* ─── shared ─── */
.sec{padding:6rem 4vw}
.sec-center{text-align:center}
.lbl{
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);font-weight:400;margin-bottom:.6rem;display:block;
}
.ttl{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:clamp(2rem,3.2vw,2.6rem);
  line-height:1.2;color:var(--text);margin-bottom:.4rem;
}
.ttl .c{font-family:'Dancing Script',cursive;color:var(--olive);font-weight:500}
.gline{width:40px;height:1.5px;background:var(--gold);margin:1rem 0}
.gline.ctr{margin:1rem auto}
.sub{font-size:.95rem;color:var(--text-m);line-height:1.75;max-width:520px}
.sub.ctr{margin:0 auto}

/* ─── sand band ─── */
.sand-bg{background:var(--sand)}

/* ─── about ─── */
.about-grid{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1.15fr;gap:5rem;align-items:center;
}
.about-vis{position:relative}
.about-frame{
  width:100%;aspect-ratio:3/4;
  border:1px solid var(--sand-d);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#faf7f0,#f3edd9);
}
.about-frame::before{
  content:'';position:absolute;inset:10px;
  border:1px solid rgba(198,164,78,.12);
}
.about-frame svg{width:55%;opacity:.12}
.about-img{width:100%;height:100%;object-fit:cover}
.about-tag{
  position:absolute;bottom:-1rem;right:-1rem;
  background:var(--olive-d);color:#fff;
  padding:1.4rem 1.6rem;text-align:center;
}
.about-tag .big{
  font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:600;line-height:1;
}
.about-tag .sm{font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;opacity:.65;margin-top:.25rem}

.about-text p{font-size:1rem;color:var(--text-m);line-height:1.85;margin-bottom:1rem}
.vals{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.8rem}
.val{
  padding:1rem 1.2rem;
  border-left:2px solid var(--gold);
  background:var(--sand);
}
.val h4{font-size:.85rem;font-weight:400;letter-spacing:.04em;margin-bottom:.15rem}
.val span{font-size:.78rem;color:var(--text-m)}

/* ─── products ─── */
.tabs{display:flex;justify-content:center;gap:.4rem;margin-bottom:2.8rem;flex-wrap:wrap}
.tbtn{
  padding:.5rem 1.3rem;border:1px solid #ddd;background:none;
  font-family:'Josefin Sans',sans-serif;font-size:.74rem;
  letter-spacing:.1em;text-transform:uppercase;cursor:pointer;
  color:var(--text-m);font-weight:400;transition:all .3s;
}
.tbtn.on,.tbtn:hover{background:var(--olive-d);border-color:var(--olive-d);color:#fff}

.pgrid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:1.6rem;max-width:1100px;margin:0 auto;
}
.pcard{
  background:#fff;border:1px solid rgba(0,0,0,.04);
  overflow:hidden;transition:all .4s;display:none;
}
.pcard.show{display:block}
.pcard:hover{transform:translateY(-4px);box-shadow:0 14px 35px rgba(0,0,0,.06)}
.pimg{
  aspect-ratio:3/2;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(155deg,#faf7f0,#f0ead8);
  position:relative;overflow:hidden;
}
.pimg img,.pimg-photo{width:100%;height:100%;object-fit:cover}
.pimg .emo{font-size:3.8rem;filter:drop-shadow(0 3px 6px rgba(0,0,0,.06))}
.pbio{
  position:absolute;top:.6rem;right:.6rem;
  font-size:.55rem;letter-spacing:.1em;text-transform:uppercase;
  background:var(--olive-d);color:#fff;padding:.2rem .6rem;
}
.pbody{padding:1.2rem 1.3rem}
.pbody h3{
  font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:500;
  margin-bottom:.15rem;color:var(--text);
}
.pbody .pscript{
  font-family:'Dancing Script',cursive;color:var(--olive);
  font-size:.95rem;display:block;margin-bottom:.4rem;
}
.pbody .pdesc{font-size:.82rem;color:var(--text-m);line-height:1.55;margin-bottom:.6rem}
.pfmts{display:flex;gap:.3rem;flex-wrap:wrap}
.pfmt{font-size:.68rem;padding:.2rem .55rem;background:var(--sand);color:var(--text-m);letter-spacing:.02em}

/* ─── certs ─── */
.certs-sec{background:var(--olive-d);color:#fff;text-align:center;position:relative;overflow:hidden}
.certs-sec::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(198,164,78,.06),transparent 65%)}
.cgrid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;
  max-width:850px;margin:2.5rem auto 0;position:relative;
}
.ci{display:flex;flex-direction:column;align-items:center;gap:.6rem}
.ci-icon{
  width:52px;height:52px;border:1px solid rgba(198,164,78,.3);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:1.1rem;
  transition:all .3s;
}
.ci:hover .ci-icon{border-color:var(--gold);background:rgba(198,164,78,.1)}
.ci h4{font-family:'Cormorant Garamond',serif;font-size:.95rem;font-weight:500}
.ci p{font-size:.68rem;color:rgba(255,255,255,.4);line-height:1.4}

/* ─── gamme detail ─── */
.gamme{max-width:1100px;margin:0 auto}
.grow{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;
  align-items:center;margin-bottom:4.5rem;
}
.grow.rev{direction:rtl}
.grow.rev>*{direction:ltr}
.gvis{
  aspect-ratio:3/2;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(155deg,var(--sand),var(--sand-d));
  position:relative;overflow:hidden;
}
.gvis img{width:100%;height:100%;object-fit:cover}
.gvis::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--gold)}
.gvis .ge{font-size:5rem;filter:drop-shadow(0 5px 12px rgba(0,0,0,.06))}
.gvis .gl{
  position:absolute;top:1rem;left:1.2rem;
  font-family:'Dancing Script',cursive;font-size:1.1rem;color:var(--olive);opacity:.45;
}
.ginfo h3{
  font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-weight:400;margin-bottom:.6rem;
}
.ginfo h3 .c{font-family:'Dancing Script',cursive;color:var(--olive);font-weight:500}
.ginfo p{font-size:.95rem;color:var(--text-m);line-height:1.8;margin-bottom:1rem}
.glist{list-style:none}
.glist li{
  font-size:.8rem;color:var(--text);padding:.4rem 0;
  display:flex;align-items:center;gap:.5rem;
  border-bottom:1px solid rgba(0,0,0,.03);
}
.glist li::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0}

/* ─── distribution ─── */
.dist-grid{
  max-width:1050px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;
}
.dist-text p{font-size:.95rem;color:var(--text-m);line-height:1.8;margin-bottom:1rem}
.dfeats{display:flex;flex-direction:column;gap:1.2rem;margin-top:1.5rem}
.dfeat{display:flex;gap:.9rem;align-items:flex-start}
.dfeat-i{
  width:36px;height:36px;background:var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:.9rem;flex-shrink:0;
}
.dfeat h4{font-size:.9rem;font-weight:400;margin-bottom:.1rem}
.dfeat p{font-size:.8rem;color:var(--text-m);line-height:1.4}
.dcard{
  background:#fff;padding:2.2rem;
  box-shadow:0 6px 30px rgba(0,0,0,.04);border:1px solid rgba(0,0,0,.03);
}
.dcard h3{
  font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:500;
  margin-bottom:1.2rem;padding-bottom:.8rem;border-bottom:2px solid var(--gold);
}
.irow{display:flex;justify-content:space-between;padding:.7rem 0;border-bottom:1px solid var(--sand-d);font-size:.78rem}
.irow:last-of-type{border:none}
.ilbl{color:var(--text-m)}
.ival{font-weight:400;text-align:right}

/* ─── contact ─── */
.contact{
  background:var(--text);color:#fff;text-align:center;
  padding:6rem 3rem;position:relative;overflow:hidden;
}
.contact::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(198,164,78,.08),transparent 55%)}
.contact .ttl{color:#fff}
.contact .sub{color:rgba(255,255,255,.45)}
.crow{display:flex;justify-content:center;gap:3rem;margin-top:2.5rem}
.citem{text-align:center}
.citem .cl{font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-l);margin-bottom:.3rem}
.citem .cv{font-family:'Cormorant Garamond',serif;font-size:1.05rem}

/* ─── contact form ─── */
.contact-form{
  max-width:500px;margin:2rem auto 0;position:relative;z-index:1;
}
.contact-form input,
.contact-form textarea{
  width:100%;padding:.8rem 1rem;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-family:'Josefin Sans',sans-serif;
  font-size:.88rem;font-weight:400;
  margin-bottom:.8rem;
  transition:border-color .3s;
  outline:none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,.3);
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--gold);
}
.contact-form textarea{
  height:120px;resize:vertical;
}
.contact-form .btn-g{
  width:100%;margin-top:.4rem;
}
.form-status{
  font-size:.75rem;
  margin-top:.8rem;
  color:var(--gold-l);
  min-height:1.2rem;
}

/* ─── footer ─── */
footer{background:#111;color:rgba(255,255,255,.3);padding:2rem 4vw}
.ft-inner{max-width:1050px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}
.ft-logo{height:30px;opacity:.7}
.ft-links{display:flex;gap:1.5rem}
.ft-links a{color:rgba(255,255,255,.3);text-decoration:none;font-size:.68rem;letter-spacing:.06em;transition:color .3s}
.ft-links a:hover{color:var(--gold)}
.ft-copy{text-align:center;font-size:.62rem;margin-top:1.2rem;padding-top:1.2rem;border-top:1px solid rgba(255,255,255,.04);max-width:1050px;margin-left:auto;margin-right:auto}

/* ─── anim ─── */
.fi{opacity:0;transform:translateY(20px);transition:all .7s ease-out}
.fi.vis{opacity:1;transform:translateY(0)}

/* Product card hover */
.pcard{position:relative}

/* Gamme images subtle zoom on view */
.gvis img{transition:transform 1.5s cubic-bezier(.16,1,.3,1)}
.gvis:hover img{transform:scale(1.03)}

/* ─── responsive ─── */
@media(max-width:1024px){
  .about-grid,.grow,.grow.rev,.dist-grid{grid-template-columns:1fr;direction:ltr}
  .about-grid{gap:2.5rem}
  .cgrid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  nav{padding:.6rem 4vw}
  nav.solid{padding:.5rem 4vw}
  .nav-logo{height:42px}
  nav.solid .nav-logo{height:38px}
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero-right{
    height:auto;
    order:-1;
    margin-top:58px; /* hauteur du header mobile */
  }
  .hero-img{
    width:100%;
    height:auto;
    object-fit:contain;
  }
  .hero-left{
    padding:2rem 6vw 2.5rem;
  }
  .hero-left::before{display:none}
  .hero-content{max-width:100%}
  .nav-items{
    position:fixed;top:0;right:-100%;width:70vw;height:100vh;
    background:var(--olive-d);flex-direction:column;justify-content:center;
    padding:2rem;gap:1.8rem;transition:right .4s;
    box-shadow:-4px 0 30px rgba(0,0,0,.2);
  }
  .nav-items a{color:rgba(255,255,255,.85)!important}
  .nav-items a:hover{color:var(--gold-l)!important}
  .nav-items .cta-link{border-color:var(--gold)!important;color:var(--gold-l)!important}
  .nav-items.open{right:0}
  .menu-btn{display:block}
  .sec{padding:4rem 6vw}
  .pgrid{grid-template-columns:1fr}
  .cgrid{grid-template-columns:1fr}
  .crow{flex-direction:column;gap:1.2rem}
  .vals{grid-template-columns:1fr}
  .hero-btns{flex-direction:column;gap:.6rem}
  .hero-tags{gap:.5rem}
  .ft-inner{flex-direction:column;gap:.8rem}
  .hero-bottom{display:none}
}
