:root{
  --ivory:#FAF6F0;
  --cream:#FDFBF7;
  --lavender:#E7E1F0;
  --blush:#F3D9DD;
  --sage:#A9B79E;
  --sage-deep:#7C8C71;
  --plum:#3E2440;
  --plum-soft:#6B4A6E;
  --rosegold:#C7997A;
  --rosegold-deep:#B17F5D;
  --line:rgba(62,36,64,0.12);
  --shadow-soft: 0 20px 60px -20px rgba(62,36,64,0.18);
  --shadow-lift: 0 30px 70px -18px rgba(62,36,64,0.28);
  --ease: cubic-bezier(.22,.68,0,1.01);
  --header-h: 92px;
  --header-h-solid: 74px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  /* Keeps anchor-jumped sections (e.g. #shop, #about) from landing underneath
     the fixed header -- the single biggest cause of "text hidden after scroll"
     bugs on mobile, where the header takes up proportionally more space. */
  scroll-padding-top: var(--header-h-solid);
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

body{
  font-family:'Jost', sans-serif;
  background:var(--ivory);
  color:var(--plum);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  font-weight:300;
  letter-spacing:0.01em;
}
body.menu-open{ overflow:hidden; } /* locks background scroll while mobile nav is open */

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--plum);
  overflow-wrap:break-word;
  word-break:break-word;
}
p, span, a, li{ overflow-wrap:break-word; }

a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
::selection{background:var(--blush); color:var(--plum);}

:focus-visible{
  outline:2px solid var(--rosegold-deep);
  outline-offset:3px;
  border-radius:4px;
}

.wrap{max-width:1240px; margin:0 auto; padding:0 32px; min-width:0;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-family:'Jost',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:12px;
  color:var(--rosegold-deep);
  font-weight:500;
  display:inline-block;
  margin-bottom:14px;
}

/* ---------- thread divider ---------- */
.thread-divider{width:100%; height:28px; margin:0 auto; opacity:0.55;}
.thread-divider svg{width:100%; height:100%; display:block;}

/* ---------- loading skeleton ---------- */
#loader{
  position:fixed; inset:0; background:var(--ivory); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
#loader.hide{opacity:0; visibility:hidden; pointer-events:none;}
.loader-bloom{width:64px; height:64px; animation:spin-bloom 1.6s linear infinite;}
@keyframes spin-bloom{ to{ transform:rotate(360deg); } }

/* ---------- navbar ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  transition:background .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
  padding:26px 0;
}
header.solid{
  background:rgba(253,251,247,0.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 8px 30px -12px rgba(62,36,64,0.12);
  padding:14px 0;
}
nav.wrap{display:flex; align-items:center; justify-content:space-between; gap:12px;}
.logo{
  font-family:'Fraunces',serif;
  font-size:24px;
  font-weight:600;
  letter-spacing:0.01em;
  display:flex; align-items:center; gap:8px;
  white-space:nowrap;
}
.logo em{font-style:italic; color:var(--rosegold-deep); font-weight:500;}
.nav-links{display:flex; align-items:center; gap:38px; list-style:none;}
.nav-links a{
  font-size:14.5px; font-weight:400; position:relative; padding-bottom:4px;
}
.nav-links a:not(.insta-link)::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--rosegold-deep); transition:width .35s var(--ease);
}
.nav-links a:not(.insta-link):hover::after{width:100%;}
.insta-link{
  display:flex; align-items:center; gap:7px;
  background:var(--plum); color:var(--cream);
  padding:9px 18px; border-radius:100px; font-size:13.5px;
  transition:transform .35s var(--ease), background .35s var(--ease);
  white-space:nowrap;
}
.insta-link:hover{background:var(--rosegold-deep); transform:translateY(-2px);}

.nav-backdrop{
  position:fixed; inset:0; background:rgba(62,36,64,0.35); backdrop-filter:blur(2px);
  z-index:499; opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s var(--ease);
}
.nav-backdrop.show{opacity:1; visibility:visible;}

.nav-toggle{
  display:none; background:none; border:none; flex-direction:column; gap:5px;
  position:relative; z-index:501;
  width:44px; height:44px; align-items:center; justify-content:center; flex-shrink:0;
}
.nav-toggle span{
  width:22px; height:1.6px; background:var(--plum); display:block;
  transition:transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle.active span:nth-child(1){transform:translateY(6.6px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-6.6px) rotate(-45deg);}

@media (max-width:900px){
  .nav-links{
    position:fixed; top:0; right:0; height:100dvh; width:min(80vw,320px);
    background:var(--cream); flex-direction:column; justify-content:flex-start;
    align-items:flex-start; padding:110px 40px 40px; gap:26px;
    transform:translateX(100%); transition:transform .5s var(--ease);
    box-shadow:-20px 0 60px rgba(62,36,64,0.15);
    z-index:500; overflow-y:auto; -webkit-overflow-scrolling:touch;
  }
  .nav-links.open{transform:translateX(0);}
  .nav-toggle{display:flex;}
}

/* ---------- hero ---------- */
.hero{
  min-height:100vh; min-height:100dvh; position:relative; display:flex; align-items:center;
  padding-top:120px; padding-bottom:60px;
  background:
    radial-gradient(ellipse at 15% 15%, var(--lavender) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, var(--blush) 0%, transparent 50%),
    var(--ivory);
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:center;
  position:relative; z-index:2; width:100%; min-width:0;
}
.hero-grid > div{min-width:0;}
.hero h1{
  font-size:clamp(34px, 6vw, 76px);
  line-height:1.08;
  font-weight:500;
  margin-bottom:26px;
}
.hero h1 em{font-style:italic; color:var(--rosegold-deep); font-weight:500;}
.hero p.lede{
  font-size:18px; line-height:1.7; color:var(--plum-soft); max-width:460px; margin-bottom:38px;
  font-weight:300;
}
.cta-row{display:flex; gap:18px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 32px; border-radius:100px; font-size:14.5px; font-weight:500;
  letter-spacing:0.02em; transition:transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  position:relative; overflow:hidden; white-space:nowrap;
}
.btn-primary{background:var(--plum); color:var(--cream);}
.btn-primary:hover{transform:translateY(-3px); box-shadow:var(--shadow-lift); background:var(--rosegold-deep);}
.btn-secondary{background:transparent; color:var(--plum); border:1px solid var(--line);}
.btn-secondary:hover{transform:translateY(-3px); background:var(--cream); border-color:var(--rosegold-deep);}
.btn-ghost{background:var(--cream); color:var(--plum); box-shadow:var(--shadow-soft);}
.btn-ghost:hover{transform:translateY(-3px); background:var(--rosegold-deep); color:var(--cream);}

.hero-visual{position:relative; height:520px; min-width:0;}
.hero-bloom-main{
  position:absolute; inset:0; width:100%; height:100%;
  filter:drop-shadow(0 30px 50px rgba(62,36,64,0.18));
}
.float-item{position:absolute; animation:drift 7s ease-in-out infinite;}
.float-item.f2{animation-delay:1.4s; animation-duration:8.5s;}
.float-item.f3{animation-delay:2.7s; animation-duration:6.5s;}
@keyframes drift{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-18px) rotate(4deg);}
}
[data-parallax]{will-change:transform;}

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--plum-soft);
  opacity:0.7;
}
.scroll-cue .line{width:1px; height:34px; background:var(--plum-soft); animation:scroll-pulse 2s ease-in-out infinite;}
@keyframes scroll-pulse{ 0%,100%{transform:scaleY(0.4); opacity:0.4;} 50%{transform:scaleY(1); opacity:1;} }

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; text-align:left;}
  .hero-visual{height:300px; order:-1;}
}
@media (max-width:420px){
  .hero-visual{height:230px;}
}

/* ---------- reveal ---------- */
.reveal{opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease), transform .9s var(--ease);}
.reveal.left{transform:translateX(-40px);}
.reveal.right{transform:translateX(40px);}
.reveal.in{opacity:1; transform:translate(0,0);}

section{padding:120px 0; scroll-margin-top: var(--header-h-solid); min-width:0;}
@media (max-width:700px){ section{padding:80px 0;} }

.section-head{max-width:640px; margin-bottom:64px;}
.section-head h2{font-size:clamp(28px,4vw,44px); line-height:1.18;}
.section-head p{color:var(--plum-soft); font-size:16.5px; margin-top:16px; line-height:1.7;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

.logo-img{height:50px; border-radius:50%;width:auto; display:block; object-fit:contain;}
.footer-logo .logo-img{height:32px; border-radius:50%}

/* ---------- categories (dynamic count) ---------- */
.cat-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:22px;
}
.cat-card{
  border-radius:28px; position:relative; overflow:hidden; display:flex; align-items:flex-end;
  padding:28px; cursor:pointer; transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow:var(--shadow-soft); min-width:0; height:220px;
}
.cat-card:hover{transform:translateY(-8px) scale(1.01); box-shadow:var(--shadow-lift);}
.cat-card .cat-bg{position:absolute; inset:0; z-index:0;}
.cat-card > div{min-width:0;}
.cat-card span{position:relative; z-index:1; font-family:'Fraunces',serif; font-size:21px; color:var(--plum); font-weight:500; display:block;}
.cat-card small{position:relative; z-index:1; display:block; font-family:'Jost',sans-serif; font-size:12.5px; color:var(--plum-soft); margin-top:4px; font-weight:400;}

/* ---------- product cards ---------- */
.filter-bar{display:flex; flex-wrap:wrap; align-items:center; gap:14px; margin-bottom:48px;}
.search-box{flex:1; min-width:0; width:100%; max-width:100%; position:relative;}
.search-box input{
  width:100%; padding:14px 20px 14px 44px; border-radius:100px; border:1px solid var(--line);
  background:var(--cream); font-family:'Jost',sans-serif; font-size:14px; color:var(--plum);
  transition:border-color .3s, box-shadow .3s;
}
.search-box input:focus{border-color:var(--rosegold-deep); box-shadow:0 0 0 4px rgba(199,153,122,0.15); outline:none;}
.search-box svg{position:absolute; left:16px; top:50%; transform:translateY(-50%); width:16px; height:16px; opacity:0.5;}
.chip-row{display:flex; flex-wrap:wrap; gap:10px; min-width:0;}
.chip{
  padding:10px 20px; border-radius:100px; border:1px solid var(--line); font-size:13.5px;
  background:var(--cream); transition:.3s var(--ease); font-weight:400; white-space:nowrap;
}
.chip.active, .chip:hover{background:var(--plum); color:var(--cream); border-color:var(--plum);}

.product-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(min(260px,100%),1fr)); gap:28px;
}
.p-card{
  background:var(--cream); border-radius:24px; overflow:hidden; box-shadow:var(--shadow-soft);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  display:flex; flex-direction:column; min-width:0;
}
.p-card:hover{transform:translateY(-10px); box-shadow:var(--shadow-lift);}
.p-media{
  aspect-ratio:1/1; position:relative; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.p-media svg, .p-media img{width:62%; height:62%; object-fit:contain; transition:transform .6s var(--ease);}
.p-card:hover .p-media svg, .p-card:hover .p-media img{transform:scale(1.08) rotate(-3deg);}
.p-quick{
  position:absolute; bottom:14px; left:50%; transform:translate(-50%,60px); opacity:0;
  background:var(--plum); color:var(--cream); padding:10px 22px; border-radius:100px; font-size:12.5px;
  transition:transform .4s var(--ease), opacity .4s var(--ease); white-space:nowrap;
}
.p-card:hover .p-quick{transform:translate(-50%,0); opacity:1;}
.p-body{padding:22px 22px 26px; flex:1; display:flex; flex-direction:column; min-width:0;}
.p-body h3{font-size:18px; font-weight:500; margin-bottom:6px; line-height:1.3;}
.p-body .p-desc{font-size:13px; color:var(--plum-soft); line-height:1.6; margin-bottom:14px; flex:1;}
.p-foot{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;}
.p-price{font-family:'Fraunces',serif; font-size:17px; font-weight:600; color:var(--rosegold-deep);}
.p-price small{font-family:'Jost',sans-serif; font-size:11px; color:var(--plum-soft); font-weight:400; display:block; margin-top:2px;}
.p-order{
  display:flex; align-items:center; gap:6px; background:var(--plum); color:var(--cream);
  padding:9px 16px; border-radius:100px; font-size:12.5px; transition:.3s var(--ease); white-space:nowrap;
}
.p-order:hover{background:var(--rosegold-deep); transform:translateY(-2px);}

.grid-note{text-align:center; margin-top:16px; font-size:13px; color:var(--plum-soft);}

/* ---------- quick view modal ---------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(62,36,64,0.45); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; z-index:800; padding:24px;
  opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s var(--ease);
}
.modal-overlay.open{opacity:1; visibility:visible;}
.modal-box{
  background:var(--cream); border-radius:28px; max-width:760px; width:100%; max-height:85vh;
  overflow-y:auto; display:grid; grid-template-columns:1fr 1fr; box-shadow:var(--shadow-lift);
  transform:scale(0.92) translateY(20px); transition:transform .45s var(--ease); min-width:0;
}
.modal-overlay.open .modal-box{transform:scale(1) translateY(0);}
.modal-media{background:var(--lavender); display:flex; align-items:center; justify-content:center; padding:40px; min-width:0;}
.modal-media svg, .modal-media img{width:100%; height:auto;}
.modal-info{padding:40px 36px; position:relative; min-width:0;}
.modal-close{position:absolute; top:18px; right:18px; width:34px; height:34px; border-radius:50%; background:var(--ivory); display:flex; align-items:center; justify-content:center; font-size:16px; transition:.3s;}
.modal-close:hover{background:var(--plum); color:var(--cream);}
.modal-info h3{font-size:26px; margin-bottom:10px;}
.modal-info .p-price{font-size:20px; margin-bottom:16px; display:block;}
.modal-info p{color:var(--plum-soft); line-height:1.7; font-size:14.5px; margin-bottom:26px;}
@media (max-width:640px){ .modal-box{grid-template-columns:1fr;} .modal-media{padding:30px;} }

/* ---------- about ---------- */
.about{
  background:var(--plum); color:var(--cream); border-radius:36px; margin:0 32px; padding:100px 60px;
  position:relative; overflow:hidden; min-width:0;
}
@media (max-width:700px){ .about{margin:0 16px; padding:70px 28px;} }
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; min-width:0;}
.about-grid > div, .about-grid > ul{min-width:0;}
.about h2{color:var(--cream); font-size:clamp(26px,3.6vw,40px); margin-bottom:22px; line-height:1.25;}
.about p{color:rgba(253,251,247,0.75); line-height:1.8; font-size:16px; margin-bottom:16px; font-weight:300;}
.about-list{list-style:none; display:flex; flex-direction:column; gap:14px; margin-top:10px;}
.about-list li{display:flex; align-items:center; gap:12px; font-size:14.5px; color:rgba(253,251,247,0.9);}
.about-list svg{width:18px; height:18px; flex-shrink:0; color:var(--rosegold);}
.about-orb{position:absolute; border-radius:50%; filter:blur(2px); opacity:0.15;}
@media (max-width:900px){ .about-grid{grid-template-columns:1fr;} }

/* ---------- why choose ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:36px;}
@media (max-width:900px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .why-grid{grid-template-columns:1fr;} }
.why-card{padding:36px 30px; border-radius:24px; background:var(--cream); box-shadow:var(--shadow-soft); transition:transform .4s var(--ease); min-width:0;}
.why-card:hover{transform:translateY(-6px);}
.why-icon{width:44px; height:44px; margin-bottom:20px; color:var(--rosegold-deep);}
.why-card h4{font-size:19px; margin-bottom:8px; font-weight:500;}
.why-card p{font-size:13.5px; color:var(--plum-soft); line-height:1.65;}

/* ---------- reviews ---------- */
.review-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:26px;}
.review-card{
  background:var(--cream); border-radius:22px; padding:30px 28px; box-shadow:var(--shadow-soft);
  transition:transform .4s var(--ease); min-width:0;
}
.review-card:hover{transform:translateY(-6px);}
.review-stars{color:var(--rosegold-deep); font-size:16px; letter-spacing:2px; display:block; margin-bottom:14px;}
.review-text{font-size:14.5px; color:var(--plum-soft); line-height:1.7; margin-bottom:16px; font-style:italic;}
.review-name{font-family:'Fraunces',serif; font-size:14.5px; font-weight:500; color:var(--plum);}

/* ---------- instagram ---------- */
.insta-section{text-align:center;}
.insta-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin:50px 0 44px;}
@media (max-width:900px){ .insta-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:560px){ .insta-grid{grid-template-columns:repeat(2,1fr); gap:12px;} }
.insta-tile{
  aspect-ratio:1/1; border-radius:18px; overflow:hidden; position:relative;
  display:flex; align-items:center; justify-content:center; transition:transform .4s var(--ease);
}
.insta-tile:hover{transform:translateY(-5px) scale(1.03);}
.insta-tile svg{width:56%; height:56%;}
.insta-tile .tile-hover{
  position:absolute; inset:0; background:rgba(62,36,64,0.5); display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.insta-tile:hover .tile-hover{opacity:1;}
.insta-tile .tile-hover svg{width:26px; height:26px; color:var(--cream);}

/* ---------- FAQ ---------- */
.faq-list{max-width:760px; margin:0 auto;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; padding:26px 4px;
  font-family:'Fraunces',serif; font-size:18px; font-weight:500; text-align:left; gap:16px;
}
.faq-q span:first-child{min-width:0;}
.faq-q .plus{width:20px; height:20px; position:relative; flex-shrink:0; margin-left:20px;}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position:absolute; background:var(--plum); top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-q .plus::before{width:16px; height:1.5px;}
.faq-q .plus::after{width:1.5px; height:16px; transition:transform .35s var(--ease);}
.faq-item.open .plus::after{transform:translate(-50%,-50%) rotate(90deg); opacity:0;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .5s var(--ease);}
.faq-a p{padding:0 4px 26px; color:var(--plum-soft); font-size:14.5px; line-height:1.7; max-width:640px;}

/* ---------- contact ---------- */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; min-width:0;}
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr;} }
.contact-grid > div, .contact-grid > form{min-width:0;}
.contact-info-list{display:flex; flex-direction:column; gap:26px; margin-top:34px;}
.contact-info-item{display:flex; gap:16px; align-items:flex-start;}
.contact-info-item svg{width:22px; height:22px; color:var(--rosegold-deep); flex-shrink:0; margin-top:2px;}
.contact-info-item strong{display:block; font-size:14.5px; margin-bottom:3px;}
.contact-info-item span{font-size:13.5px; color:var(--plum-soft);}
.contact-form{background:var(--cream); border-radius:26px; padding:44px; box-shadow:var(--shadow-soft);}
@media (max-width:480px){ .contact-form{padding:28px 22px;} }
.form-row{margin-bottom:20px;}
.form-row label{display:block; font-size:12.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--plum-soft); margin-bottom:8px;}
.form-row input, .form-row textarea{
  width:100%; padding:14px 18px; border-radius:14px; border:1px solid var(--line);
  background:var(--ivory); font-family:'Jost',sans-serif; font-size:14px; color:var(--plum); resize:vertical;
  transition:border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row textarea:focus{border-color:var(--rosegold-deep); box-shadow:0 0 0 4px rgba(199,153,122,0.15); outline:none;}
.form-note{font-size:12.5px; color:var(--plum-soft); margin-top:16px; line-height:1.6;}

/* ---------- footer ---------- */
footer{background:var(--plum); color:var(--cream); padding:70px 0 30px;}
.footer-grid{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:40px; margin-bottom:50px;
}
.footer-grid > div{ min-width:0; flex:1 1 200px; }
.footer-logo{font-family:'Fraunces',serif; font-size:24px; margin-bottom:14px; display:flex;
  align-items:center;
  gap:8px;}
.footer-logo em{color:var(--rosegold); font-style:italic;}
.footer-tag{font-size:13.5px; color:rgba(253,251,247,0.6); max-width:280px; line-height:1.6;}
.footer-links{display:flex; flex-direction:column; gap:12px;}
.footer-links a{font-size:13.5px; color:rgba(253,251,247,0.75); transition:color .3s;}
.footer-links a:hover{color:var(--rosegold);}
.footer-col h5{font-size:12.5px; text-transform:uppercase; letter-spacing:0.15em; margin-bottom:16px; color:rgba(253,251,247,0.5);}
.footer-bottom{
  border-top:1px solid rgba(253,251,247,0.12); padding-top:26px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:10px 14px; font-size:12.5px; color:rgba(253,251,247,0.5);
}

@media (max-width:640px){
  footer{padding:56px 0 26px;}
  .footer-grid{flex-direction:column; gap:34px; margin-bottom:38px;}
  .footer-grid > div{flex:1 1 auto;}
  .footer-tag{max-width:none;}
  .footer-bottom{flex-direction:column; align-items:flex-start; gap:8px;}
}

/* ---------- floating buttons ---------- */
.float-insta{
  position:fixed; bottom:28px; right:28px; width:58px; height:58px; border-radius:50%;
  background:var(--plum); color:var(--cream); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lift); z-index:400; transition:transform .4s var(--ease), background .4s var(--ease);
}
.float-insta:hover{transform:translateY(-4px) scale(1.06); background:var(--rosegold-deep);}
.float-insta svg{width:24px; height:24px;}
.back-top{
  position:fixed; bottom:28px; left:28px; width:48px; height:48px; border-radius:50%;
  background:var(--cream); color:var(--plum); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft); z-index:400; transition:transform .4s var(--ease), opacity .4s var(--ease);
  opacity:0; pointer-events:none;
}
.back-top.show{opacity:1; pointer-events:auto;}
.back-top:hover{transform:translateY(-4px);}
.back-top svg{width:18px; height:18px;}

@media (max-width:480px){
  .float-insta{width:50px; height:50px; bottom:18px; right:18px;}
  .back-top{width:42px; height:42px; bottom:18px; left:18px;}
}

.sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0);}
