/* ==========================================================================
   OVI-LÁ JOVEM — STYLE.CSS
   Direção: streetwear moçambicano, editorial, corte diagonal, etiqueta de roupa
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root{
  --c-black:      #0b0a09;
  --c-black-2:    #171310;
  --c-black-3:    #211b16;
  --c-bone:       #f3ede2;
  --c-bone-dim:   #cdc4b4;
  --c-clay:       #7a4f34;
  --c-sand:       #cbb28a;
  --c-red:        #e31a22;
  --c-red-deep:   #7d0e13;

  --font-display: "Poppins", sans-serif;
  --font-body:    "Inter", sans-serif;
  --font-tag:     "Space Mono", monospace;

  --radius-card: 2px;
  --tag-notch: 22px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--c-black);
  color: var(--c-bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; }
.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
:focus-visible{
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
}

/* texture: faint diagonal grain backdrop */
.grain-bg{
  position: fixed; inset:0; pointer-events:none; z-index:0; opacity:.05;
  background-image: repeating-linear-gradient(115deg, #fff 0 1px, transparent 1px 3px);
}

/* ---------- EYEBROW / TAG LABEL (signature element) ----------
   A shape like a clothing hang-tag: pentagon body + punched hole.
   Used for nav item state, section eyebrows, price badges, filter pills. */
.tag{
  position: relative;
  display: inline-flex;
  align-items:center;
  gap:.5em;
  font-family: var(--font-tag);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-bone);
  background: var(--c-black-3);
  padding: 7px 16px 7px 22px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
  border: 1px solid rgba(243,237,226,.14);
}
.tag::before{
  content:"";
  position:absolute; left: 7px; top:50%; transform: translateY(-50%);
  width:4px; height:4px; border-radius:50%;
  background: var(--c-black);
  box-shadow: 0 0 0 1px rgba(243,237,226,.3);
}
.tag--red{ background: var(--c-red); border-color: var(--c-red); color:#fff; }
.tag--ghost{ background: transparent; }

/* ---------- BUTTONS ---------- */
.btn{
  --pad-x: 26px;
  position: relative;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--c-black);
  background: var(--c-bone);
  padding: 14px var(--pad-x);
  border: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn--primary{ background: var(--c-red); color:#fff; }
.btn--outline{
  background: transparent; color: var(--c-bone);
  border: 1.5px solid var(--c-bone); padding: 12.5px var(--pad-x);
  clip-path: none;
}
.btn--outline:hover{ background: var(--c-bone); color: var(--c-black); }
.btn--sm{ padding: 10px 18px; font-size: .82rem; }
.btn--block{ width:100%; }
.btn[disabled]{ opacity:.45; cursor:not-allowed; transform:none; }

/* ---------- NAV ---------- */
.site-nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  background: rgba(11,10,9,.82);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid rgba(243,237,226,.08);
}
.site-nav__inner{
  max-width: 1180px; margin:0 auto; padding: 14px 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{ height: 40px; width:auto; }
.brand__word{
  font-family: var(--font-display); font-weight:800; font-size:1.05rem;
  letter-spacing: -0.01em; line-height:1;
}
.brand__word span{ color: var(--c-red); }
.nav-links{
  display:flex; align-items:center; gap: 6px;
}
.nav-links a{
  font-family: var(--font-tag); font-weight: 700; font-size:.78rem; letter-spacing:.1em;
  text-transform: uppercase; padding: 10px 14px; position:relative;
  color: var(--c-bone); opacity: .82; transition: opacity .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover{ opacity: 1; }
.nav-links a[aria-current="page"]{ color: var(--c-red); opacity: 1; }
.nav-links a[aria-current="page"]::after{
  content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px;
  background: var(--c-red);
}
.nav-cta{ display:flex; gap:10px; }
.nav-toggle{
  display:none; background: var(--c-black-2); border: 1px solid rgba(243,237,226,.25);
  border-radius: 6px; color:var(--c-bone);
  width:44px; height:44px; position:relative; flex-shrink:0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; position:absolute; left:11px; right:11px; height:2.5px; background: var(--c-bone);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease), background .25s var(--ease);
}
.nav-toggle span{ top:21px; }
.nav-toggle span::before{ top:-8px; }
.nav-toggle span::after{ top:8px; }
.nav-toggle.is-open{ background: var(--c-red); border-color: var(--c-red); }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ transform: translateY(8px) rotate(45deg); background:#fff; }
.nav-toggle.is-open span::after{ transform: translateY(-8px) rotate(-45deg); background:#fff; }

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 64px 0 0 0; flex-direction:column; align-items:stretch;
    background: var(--c-black); padding: 20px 24px; gap:2px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-top: 1px solid rgba(243,237,226,.08);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ padding: 18px 6px; font-size: .95rem; border-bottom: 1px solid rgba(243,237,226,.08); display:block; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:block; }
}
@media (max-width: 420px){
  .site-nav__inner{ padding: 12px 16px; }
  .brand__logo{ height: 32px; }
  .brand__word{ font-size: .82rem; }
}

/* ---------- HERO (diagonal split, referencing brand banner) ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  min-height: 92dvh;
  display:flex; align-items:center;
  padding: 140px 0 90px;
  overflow:hidden;
  background: linear-gradient(155deg, var(--c-black) 55%, var(--c-black-3) 100%);
}
@media (max-width: 900px){
  .hero{ min-height: unset; }
}
.hero::after{
  content:"";
  position:absolute; top:0; right:-10%; bottom:0; width:55%;
  background: var(--c-bone);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 12% 100%);
  opacity:.06;
}
.hero__grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center;
}
.hero__eyebrow{ margin-bottom: 22px; }
.hero__title{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
}
.hero__title em{
  font-style:normal; color: var(--c-red);
  text-decoration: underline; text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  text-decoration-color: rgba(227,26,34,.5);
}
.hero__lede{
  max-width: 46ch; color: var(--c-bone-dim); font-size: 1.08rem;
}
.hero__actions{ display:flex; gap:14px; margin-top: 30px; flex-wrap:wrap; }
.hero__visual{
  position:relative; aspect-ratio: 4/3; background: var(--c-black-2);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
  border: 1px solid rgba(243,237,226,.12);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
/* mostra a imagem completa, sem cortar (o fundo preenche o resto da moldura) */
.hero__visual img{ width:100%; height:100%; object-fit: contain; }
.hero__visual .placeholder-mark{
  width:100%; height:100%; object-fit:contain; opacity:.7; padding: 10%;
}
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 120px; }
  .hero__visual{ order:-1; max-width: 320px; margin: 0 auto; }
}

/* ---------- SECTION SCAFFOLDING ---------- */
.section{ padding: 90px 0; position:relative; z-index:1; }
.section--tight{ padding: 60px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head .tag{ margin-bottom: 18px; }
.section-head h2{ font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform:uppercase; }
.section-head p{ color: var(--c-bone-dim); }
.section--alt{ background: var(--c-black-2); }
.divider{
  height:1px; background: rgba(243,237,226,.1); margin: 0; border:none;
}

/* ---------- HOME: quick links ---------- */
.quick-grid{
  display:grid; grid-template-columns: repeat(2,1fr); gap: 22px;
}
.quick-card{
  position:relative; padding: 34px 28px; background: var(--c-black-2);
  border:1px solid rgba(243,237,226,.1);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.quick-card:hover{ transform: translateY(-6px); border-color: var(--c-red); }
.quick-card h3{ font-size:1.3rem; text-transform:uppercase; }
.quick-card p{ color: var(--c-bone-dim); font-size:.95rem; }
.quick-card .btn{ margin-top: 10px; }
@media (max-width:700px){ .quick-grid{ grid-template-columns:1fr; } }

/* ---------- PRODUCT STRIP (Home preview) ---------- */
.strip{
  display:grid; grid-auto-flow:column; grid-auto-columns: minmax(220px, 1fr);
  gap: 18px; overflow-x:auto; padding-bottom: 10px; scroll-snap-type:x mandatory;
}
.strip::-webkit-scrollbar{ height:6px; }
.strip::-webkit-scrollbar-thumb{ background: var(--c-red); }
.strip .product-card{ scroll-snap-align:start; }

/* empty-state illustration (no photos yet) */
.empty-state{
  border: 1.5px dashed rgba(243,237,226,.25);
  padding: 56px 28px; text-align:center; color: var(--c-bone-dim);
}
.empty-state svg{ width:64px; height:64px; margin-bottom: 18px; opacity:.6; }
.empty-state strong{ color: var(--c-bone); display:block; margin-bottom:6px; font-family:var(--font-display); }

/* ---------- PRODUCT CARD ---------- */
.product-card{
  position:relative;
  background: var(--c-black-2);
  border: 1px solid rgba(243,237,226,.09);
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover{ transform: translateY(-5px); border-color: rgba(227,26,34,.5); }
.product-card__media{
  position:relative; aspect-ratio: 3/4; overflow:hidden; background: var(--c-black-3);
  cursor: zoom-in;
}
.product-card__media img{
  width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease);
}
.product-card:hover .product-card__media img{ transform: scale(1.06); }
.product-card__price{
  position:absolute; top:12px; right:12px;
  font-family: var(--font-tag); font-size:.78rem;
  background: var(--c-red); color:#fff; padding:6px 10px 6px 14px;
  clip-path: polygon(8px 0,100% 0,100% 100%,8px 100%,0 50%);
}
.product-card__body{ padding: 16px 18px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card__cat{ font-family: var(--font-tag); font-size:.68rem; letter-spacing:.1em; color: var(--c-sand); text-transform:uppercase; }
.product-card__name{ font-family: var(--font-display); font-weight:700; font-size:1.02rem; }
.product-card__actions{ display:flex; gap:8px; margin-top:auto; }
.product-card__actions .btn{ flex:1; padding: 11px 10px; font-size:.82rem; }

/* ---------- LOJA: tabs ---------- */
.tabs{
  display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 40px;
}
.tab{
  font-family: var(--font-tag); font-size:.74rem; letter-spacing:.08em; text-transform:uppercase;
  padding: 10px 18px; background: var(--c-black-2); color: var(--c-bone-dim);
  border: 1px solid rgba(243,237,226,.12);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
  transition: all .25s var(--ease);
}
.tab:hover{ color: var(--c-bone); }
.tab.is-active{ background: var(--c-red); color:#fff; border-color: var(--c-red); }
.product-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 22px;
}

/* ---------- SOBRE NÓS ---------- */
.story-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.story-grid__visual{
  position:relative; aspect-ratio: 1/1; background: var(--c-black-2);
  clip-path: polygon(0 0, 90% 0, 100% 12%, 100% 100%, 10% 100%, 0 88%);
  overflow:hidden; border:1px solid rgba(243,237,226,.1);
}
.story-grid__visual img{ width:100%; height:100%; object-fit:cover; }
.timeline{ display:flex; flex-direction:column; gap:26px; margin-top: 10px; }
.timeline li{ display:flex; gap:18px; }
.timeline .yr{
  font-family: var(--font-tag); color: var(--c-red); font-size:.85rem; min-width:64px; padding-top:3px;
}
.timeline .yr-line{ display:flex; flex-direction:column; align-items:center; }
.timeline .yr-dot{ width:9px; height:9px; border-radius:50%; background: var(--c-red); }
.timeline .yr-bar{ flex:1; width:1px; background: rgba(243,237,226,.15); margin-top:6px; }

.value-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.value-card{
  padding: 30px 24px; background: var(--c-black-2); border:1px solid rgba(243,237,226,.1);
  border-top: 3px solid var(--c-red);
}
.value-card h3{ font-size:1.1rem; text-transform:uppercase; }
.value-card p{ color:var(--c-bone-dim); font-size:.93rem; margin:0; }

.color-band{ display:flex; height: 110px; }
.color-band__swatch{
  flex:1; display:flex; align-items:flex-end; padding:12px;
  font-family: var(--font-tag); font-size:.68rem; text-transform:uppercase; letter-spacing:.06em;
}
.video-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:22px; }
.video-card{ background: var(--c-black-2); border:1px solid rgba(243,237,226,.1); }
.video-card__frame{ aspect-ratio:16/9; background:#000; }
.video-card__frame iframe{ width:100%; height:100%; border:0; }
.video-card__title{ padding: 14px 16px; font-family: var(--font-tag); font-size:.78rem; letter-spacing:.05em; color: var(--c-bone-dim); }

@media (max-width: 860px){
  .story-grid{ grid-template-columns: 1fr; }
  .value-cards{ grid-template-columns: 1fr; }
  .color-band{ flex-wrap:wrap; height:auto; }
  .color-band__swatch{ min-width: 33%; height:90px; }
}

/* ---------- COMUNIDADE: polaroid gallery ---------- */
.polaroid-wall{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 34px 24px;
}
.polaroid{
  background: #f3ede2; padding: 14px 14px 46px; box-shadow: 0 14px 26px rgba(0,0,0,.45);
  cursor: zoom-in; transition: transform .3s var(--ease), z-index 0s;
  position:relative;
}
.polaroid:nth-child(3n+1){ transform: rotate(-3deg); }
.polaroid:nth-child(3n+2){ transform: rotate(2.4deg); }
.polaroid:nth-child(3n){ transform: rotate(-1.2deg); }
.polaroid:hover{ transform: scale(1.05) rotate(0deg); z-index:5; }
.polaroid__img{ aspect-ratio: 1/1.05; overflow:hidden; background:#111; }
.polaroid__img img{ width:100%; height:100%; object-fit:cover; }
.polaroid__caption{
  position:absolute; bottom:12px; left:14px; right:14px; text-align:center;
  font-family: 'Space Mono', monospace; font-size:.7rem; color:#2a241d; letter-spacing:.03em;
}

/* ---------- LIGHTBOX ---------- */
.lightbox{
  position: fixed; inset:0; z-index: 900; background: rgba(4,3,2,.94);
  display:none; align-items:center; justify-content:center;
  touch-action: pan-y;
}
.lightbox.is-open{ display:flex; }
.lightbox__stage{
  position:relative; width:min(92vw, 720px); max-height:86vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.lightbox__track{ display:flex; width:100%; height:100%; transition: transform .35s var(--ease); }
.lightbox__track img{ width:100%; height:100%; object-fit:contain; flex-shrink:0; user-select:none; }
.lightbox__close, .lightbox__nav{
  position:absolute; background: rgba(243,237,226,.1); border:1px solid rgba(243,237,226,.3);
  color: var(--c-bone); width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  transition: background .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover{ background: var(--c-red); border-color: var(--c-red); }
.lightbox__close{ top:-56px; right:0; }
.lightbox__nav--prev{ left: -8px; top:50%; transform: translateY(-50%); }
.lightbox__nav--next{ right: -8px; top:50%; transform: translateY(-50%); }
.lightbox__count{
  position:absolute; bottom:-40px; left:50%; transform:translateX(-50%);
  font-family: var(--font-tag); font-size:.75rem; color: var(--c-bone-dim);
}
@media (max-width:700px){
  .lightbox__nav{ width:38px; height:38px; }
  .lightbox__close{ top:-50px; right:6px; }
}

/* ---------- MODAL (compra / perguntar) ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:800; background: rgba(4,3,2,.78);
  display:none; align-items:flex-end; justify-content:center;
  backdrop-filter: blur(3px);
}
.modal-overlay.is-open{ display:flex; }
@media (min-width:640px){ .modal-overlay{ align-items:center; } }

.modal{
  background: var(--c-black-2); width:100%; max-width: 480px; max-height: 92vh;
  overflow-y:auto; border-top: 3px solid var(--c-red);
  padding: 28px 26px 30px;
  transform: translateY(24px); opacity:0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.modal-overlay.is-open .modal{ transform: translateY(0); opacity:1; }
@media (min-width:640px){ .modal{ border: 1px solid rgba(243,237,226,.12); border-top:3px solid var(--c-red); } }

.modal__head{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:18px; gap: 14px;}
.modal__head h3{ font-size:1.25rem; text-transform:uppercase; margin:0; }
.modal__head p{ margin: 4px 0 0; color: var(--c-bone-dim); font-size:.85rem; }
.modal__close{
  background:none; border:none; color: var(--c-bone-dim); font-size:1.4rem; line-height:1;
  padding:4px;
}
.modal__close:hover{ color: var(--c-red); }

.field{ margin-bottom: 18px; }
.field label{
  display:block; font-family: var(--font-tag); font-size:.7rem; text-transform:uppercase;
  letter-spacing:.08em; color: var(--c-sand); margin-bottom:8px;
}
.field input[type="text"],
.field input[type="number"],
.field textarea,
.field select{
  width:100%; background: var(--c-black); border: 1px solid rgba(243,237,226,.18);
  color: var(--c-bone); padding: 12px 14px; font-family: var(--font-body); font-size:.95rem;
  border-radius: var(--radius-card);
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--c-red); outline:none; }

.size-picker{ display:flex; gap:10px; }
.size-picker button{
  flex:1; padding:10px 0; background: var(--c-black); border:1px solid rgba(243,237,226,.18);
  color: var(--c-bone); font-family: var(--font-tag); font-weight:700; transition: all .2s var(--ease);
}
.size-picker button.is-selected{ background: var(--c-red); border-color: var(--c-red); color:#fff; }

.qty-picker{ display:flex; align-items:center; gap:14px; }
.qty-picker button{
  width:38px; height:38px; background: var(--c-black); border:1px solid rgba(243,237,226,.18);
  color: var(--c-bone); font-size:1.1rem; font-weight:700;
}
.qty-picker span{ font-family: var(--font-tag); font-size:1.05rem; min-width: 24px; text-align:center; }

.modal__total{
  display:flex; align-items:center; justify-content:space-between;
  background: var(--c-black); padding: 16px 18px; margin: 22px 0;
  border-left: 3px solid var(--c-red);
}
.modal__total span{ font-family: var(--font-tag); font-size:.72rem; text-transform:uppercase; color: var(--c-bone-dim); letter-spacing:.08em; }
.modal__total strong{ font-family: var(--font-display); font-size:1.5rem; }

.modal__error{ color: var(--c-red); font-size:.82rem; margin: -8px 0 14px; display:none; }
.modal__error.is-visible{ display:block; }

/* ---------- CONTACTOS ---------- */
.contact-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:20px; }
.contact-card{
  display:flex; align-items:center; gap:16px; padding: 24px; background: var(--c-black-2);
  border:1px solid rgba(243,237,226,.1); transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover{ transform: translateY(-4px); border-color: var(--c-red); }
.contact-card__icon{
  width:48px; height:48px; flex-shrink:0; border-radius:50%; background: var(--c-black);
  display:flex; align-items:center; justify-content:center;
}
.contact-card__icon svg{ width:22px; height:22px; }
.contact-card h3{ font-size:.95rem; margin:0 0 2px; text-transform:uppercase; }
.contact-card p{ margin:0; color: var(--c-bone-dim); font-size:.88rem; word-break:break-word; }

/* ---------- FOOTER ---------- */
.site-footer{ background: var(--c-black-3); padding: 50px 0 30px; margin-top: 40px; }
.site-footer__top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; margin-bottom: 34px; }
.site-footer__brand{ display:flex; align-items:center; gap:12px; }
.site-footer__brand img{ height:36px; }
.site-footer__social{ display:flex; gap:12px; }
.site-footer__social a{
  width:40px; height:40px; border:1px solid rgba(243,237,226,.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition: all .2s var(--ease);
}
.site-footer__social a:hover{ background: var(--c-red); border-color: var(--c-red); }
.site-footer__social svg{ width:18px; height:18px; }
.site-footer__bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px;
  padding-top: 20px; border-top: 1px solid rgba(243,237,226,.08);
  font-family: var(--font-tag); font-size:.72rem; color: var(--c-bone-dim); letter-spacing:.04em;
}

/* whatsapp floating button */
.wa-float{
  position: fixed; bottom: 22px; right: 22px; z-index: 400;
  width: 58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  transition: transform .25s var(--ease);
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:28px; height:28px; fill:#fff; }

/* toast */
.toast{
  position: fixed; bottom: 26px; left:50%; transform: translateX(-50%) translateY(20px);
  background: var(--c-bone); color: var(--c-black); padding: 13px 22px;
  font-family: var(--font-tag); font-size:.8rem; z-index: 950;
  opacity:0; pointer-events:none; transition: all .3s var(--ease);
  border-left: 4px solid var(--c-red);
}
.toast.is-visible{ opacity:1; transform: translateX(-50%) translateY(0); }

/* page reveal animation */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* skeleton loader for images being detected */
.skeleton{ background: linear-gradient(110deg, var(--c-black-2) 30%, var(--c-black-3) 50%, var(--c-black-2) 70%); background-size: 200% 100%; animation: shimmer 1.6s infinite; }
@keyframes shimmer{ to{ background-position: -200% 0; } }

/* page-load intro */
.page-loader{
  position: fixed; inset:0; z-index: 1000; background: var(--c-black);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader img{ height:64px; animation: pulse 1.2s ease-in-out infinite; }
.page-loader.is-hidden{ opacity:0; visibility:hidden; }
@keyframes pulse{ 0%,100%{ transform: scale(1); opacity:1;} 50%{ transform: scale(1.08); opacity:.7;} }

/* utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.hidden{ display:none !important; }
