@charset "utf-8";
/* CSS Document
   styles.css — Global site stylesheet
*/

/* =========================
   Design Tokens (site + retail)
========================= */
:root{
  /* Brand & palette */
  --gold:#CBA135;

  /* Site base */
  --rich-black:#0B0B0B;
  --charcoal:#2C2C2C;
  --cream-bg:#f5f5f0;
  --bg-grad:linear-gradient(90deg,#1a1a1a,#282828);

  /* Global text colors */
  --text:#e9e7e1;
  --muted:#bdb7aa;

  /* ===== Retail tokens (centralized) ===== */
  --bg:#151a1f;            /* lifted background (Preset B) */
  --panel:#20262d;         /* lifted panel/card surface */
  --panel-br:#313946;      /* lifted border / hairline */
  --link:#e9d9a4;
  --wrap-max:1100px;
  --gap:16px;
  --line:var(--panel-br);
  --ink:var(--text);
  --thumb-bg:#171b21;

  /* Cards aligned to the same palette (optional, now enabled) */
  --card:var(--panel);           /* was #141414 */
  --card-border:var(--panel-br); /* was #2b2b2b */

  /* Nav (optional — slightly lighter than bg for separation) */
  --nav:#171b21;
  --nav-br:#2b3240;

  /* Breakpoints */
  --bp-sm:600px;
  --bp-lg:1024px;
  --bp-xl:1200px;

  /* Z-index scale */
  --z-nav:1000;
  --z-overlay:1001;
  --z-modal:9999;
}


/* =========================
   Resets
========================= */
*,*::before,*::after{ box-sizing:border-box; }
ul,ol{ margin:0; padding:0; list-style:none; }

/* =========================
   Base
========================= */
html,body{
  width:100%;
  overflow-x:hidden;
  margin:0; padding:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size:16.5px;
  line-height:1.6;
  background:var(--bg-grad); /* retail pages override in retail-styles.css (body { background: var(--bg); }) */
  color:#ccc;
  -webkit-font-smoothing:antialiased;
}
body.modal-open,body.nav-open{ overflow:hidden; }

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

p{ color:#555; }

.container{
  max-width:1000px;
  margin:2rem auto;
  padding-left:clamp(1rem,4vw,2rem);
  padding-right:clamp(1rem,4vw,2rem);
}
.clickable{ cursor:pointer; }

/* =========================
   Header (public site)
========================= */
.header{
  background:var(--bg-grad);
  padding:.5rem 1rem;
  border-bottom:1px solid rgba(203,161,53,.2);
  color:var(--text);
}

/* (brand sizing now lives in inc-header-nav.css) */

header h1{
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight:600;
  letter-spacing:.05em;
  font-size:2.75rem;
  color:var(--gold);
  margin:0;
}
header p{
  margin:.5rem 0 0;
  font-size:1rem;
  font-style:italic;
  color:#ccc;
}
.menu-icon{ height:32px; vertical-align:middle; margin-right:0; display:inline-block; }


/* =========================
   Public Site Nav
========================= */
.site-nav{ background:var(--rich-black); padding:.75rem; position:sticky; top:0; z-index:var(--z-nav); }
.site-nav .nav-container{ display:flex; justify-content:space-between; align-items:center; }
.site-nav .hamburger{ display:none; font-size:1.5rem; background:none; border:none; color:var(--gold); cursor:pointer; padding:.5rem; }
.site-nav .hamburger:hover{ color:#e0c060; }
.site-nav ul{ display:flex; justify-content:center; gap:2rem; }
.site-nav a{ color:#ccc; text-decoration:none; font-size:1.1rem; transition:color .3s ease, transform .2s ease; }
.site-nav a:hover{ color:var(--gold); transform:scale(1.05); }
.site-nav .menu-icon{ height:32px; }

/* =========================
   Headings (global)
========================= */
h1,h2,h3,h4,h5,h6{
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height:1.1;
  letter-spacing:-.015em;
  font-weight:700;
}

/* Sticky helpers */
#announcement-bar{ position:static; }
.sticky-nav-spacer{ display:none; }
.nav-is-fixed{
  position:fixed !important; top:0; left:0; right:0; z-index:var(--z-nav);
  width:100%; background:rgba(18,17,15,.92);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 4px 10px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.04) inset;
}
.sticky-nav-spacer.is-active{ display:block; height:var(--nav-h,64px); }

#site-header,.site-header,.main-nav,nav[role="navigation"]{
  position:sticky; top:0; z-index:var(--z-nav);
  background:rgba(18,17,15,.92);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:box-shadow .2s ease, background-color .2s ease;
}
#site-header.is-stuck,.site-header.is-stuck,.main-nav.is-stuck,nav[role="navigation"].is-stuck{
  box-shadow:0 4px 10px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.04) inset;
}

/* =========================
   Product Grid / Cards (homepage/sections)
========================= */
/* Products grid (consolidated) */
.products{
  max-width:var(--wrap-max);
  margin:1.5rem auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:clamp(1rem,2.5vw,1.5rem);
  justify-content:center;
  padding:2rem 0;
}

/* Section wrapper */
.section--dark.featured-products{
  background:var(--rich-black,#0B0B0B);
  padding:clamp(2rem,4vw,3.5rem) 1rem;
}

/* Header */
.featured-head{
  max-width:var(--wrap-max);
  margin:0 auto 1.25rem;
  text-align:center;
}
.featured-head h2{ color:#fff; margin:0 0 .25rem; }
.featured-head .lede{ color:#cfcfcf; margin:0; }

/* Buttons */
.btn--wide{ width:100%; }                   /* full-width CTA inside cards */
.btn.btn-primary{
  background:var(--gold);
  color:#0B0B0B;
  border:0;
  font-weight:700;
  padding:.7rem 1rem;
  border-radius:10px;
}
.btn.btn-primary:hover{ filter:brightness(1.05); }

/* "Browse All" alignment */
.section .cta{ text-align:center; margin-top:1.25rem; }


/* =========================
   CTA
========================= */
.cta{ text-align:center; }
.cta a{
  display:block; margin:0 auto; padding:.75rem 1.5rem;
  background:var(--rich-black); color:#fff; border:1px solid var(--gold); border-radius:4px; font-size:1rem;
  transition:background-color .3s ease, transform .2s ease;
}
.cta a:hover{ background:var(--gold); color:#fff; transform:scale(1.05); }

/* =========================
   Site Footer (public)
========================= */
.site-footer{
  background:linear-gradient(180deg,var(--rich-black),var(--charcoal));
  border-top:1px solid var(--card-border);
  color:#d9d9d9;
}
.site-footer__inner{ max-width:var(--wrap-max); margin:0 auto; padding:2rem 1rem; }
.footer-grid{ display:grid; gap:1.125rem; grid-template-columns:repeat(2,minmax(180px,1fr)); }
.footer-heading{
  margin:0 0 .5rem; font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight:600; color:var(--gold);
  font-size:1.05rem; letter-spacing:.06em; text-transform:uppercase;
}
.footer-col ul{ margin:.25rem 0 0; }
.footer-col li{ margin:.35rem 0; }

.site-footer a{ text-decoration:none; transition:color .25s ease; position:relative; }
.site-footer a img{ vertical-align:middle; margin-right:.4rem; width:20px; height:20px; }
.site-footer__brand{ display:flex; align-items:center; justify-content:center; gap:.5rem; font-size:.9rem; color:#ccc; }

.footer-bottom{
  display:flex; gap:.75rem; align-items:center; justify-content:space-between;
  border-top:1px solid var(--card-border); margin-top:1.25rem; padding-top:1rem; flex-wrap:wrap;
}

.brand-inline{ font-family:'EB Garamond',serif; font-weight:600; letter-spacing:.05em; color:var(--gold); }
.lower-o{ text-transform:lowercase !important; font-size:.9em; position:relative; top:-.02em; }

@media (min-width:700px){ .footer-grid{ grid-template-columns:repeat(3,minmax(180px,1fr)); } }
@media (min-width:1024px){ .footer-grid{ grid-template-columns:repeat(5,minmax(180px,1fr)); } }
@media (max-width:384px){
  .footer-grid{ grid-template-columns:1fr; gap:1rem; text-align:center; }
  .footer-bottom{ flex-direction:column; align-items:center; justify-content:center; gap:.75rem; text-align:center; }
  .site-footer__brand{ justify-content:center; }
}

/* =========================
   Accessibility
========================= */
a:focus-visible,button:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }

/* =========================
   Shop shared styles (sections)
========================= */
.section{ max-width:var(--wrap-max); margin:0 auto; padding:2.25rem 1rem 2.75rem; }
.section h2{ font-family:'EB Garamond',serif; color:var(--gold); margin:0 0 .5rem; font-size:clamp(1.5rem, 2vw + .5rem, 2rem); }
.section p.lead{ margin:0 0 1rem; color:#555; }

.announcement{
  background:var(--gold); color:#111; text-align:center; padding:.5rem 1rem;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size:1rem; font-weight:600; letter-spacing:.03em;
}
.announcement-text{ display:inline-block; transition:opacity .6s ease-in-out; }
.announcement-text.fade-out{ opacity:0; }

/* ---------- HERO (public site) ---------- */
.hero-banner{
  position:relative;
  isolation:isolate;
  border-bottom:1px solid rgba(203,161,53,.18);
}
.hero-banner .hero-image img{
  width:100%;
  height:clamp(360px,62vh,700px);
  object-fit:cover;
  display:block;
}
/* mobile: keep current tighter crop */
@media (max-width:640px){
  .hero-banner .hero-image img{ object-position:80% center; }
}
/* desktop: show more of the image */
@media (min-width:1024px){
  .hero-banner .hero-image img{
    height:clamp(360px,48vh,560px); /* reduce box height */
    object-fit:contain;             /* show entire image */
    object-position:center top;     /* center horizontally, bias top */
    background:#0b0b0b;             /* fill behind if letterboxed */
  }
}

.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.65) 100%);
  z-index:1;
}
.hero__content{
  position:absolute;
  inset:0;
  z-index:2;
  display:grid;
  place-items:center;
  text-align:center;
  padding:1.5rem clamp(1rem,4vw,2rem);
  color:#f2f2f2;
}
.hero__title{
  font-family:'EB Garamond',serif;
  font-weight:600;
  letter-spacing:.03em;
  font-size:clamp(2rem,4.5vw,3.25rem);
  color:var(--gold);
  margin:0 0 .5rem;
}
.hero__subtitle{
  font-family:'Lora',serif;
  font-style:italic;
  font-size:clamp(1rem,2.2vw,1.25rem);
  color:#ddd;
  margin:0 0 1.25rem;
}
.hero__actions{
  display:flex;
  gap:.75rem;
  justify-content:center;
  flex-wrap:wrap;
}
.hero__cta,.hero__cta--alt{
  display:inline-block;
  padding:.85rem 1.4rem;
  border-radius:6px;
  font-family:'Lora',serif;
  font-size:1rem;
  text-decoration:none;
  transition:background-color .3s ease, transform .2s ease, color .3s ease, border-color .3s ease;
}
.hero__cta{
  background:var(--rich-black);
  color:#fff;
  border:1px solid var(--gold);
}
.hero__cta:hover{ background:var(--gold); color:#fff; transform:translateY(-1px); }
.hero__cta--alt{
  background:transparent;
  color:#f2f2f2;
  border:1px solid rgba(255,255,255,.35);
}
.hero__cta--alt:hover{ border-color:var(--gold); color:#fff; transform:translateY(-1px); }
.hero__cta:active,.hero__cta--alt:active{ transform:translateY(0); opacity:.9; }

@media (max-width:599px){
  .hero__subtitle{ margin-bottom:1rem; }
}


/* === Product Intro (light band) === */
.product-intro{
  background:#f3f3f3; color:#222;
  border-top:1px solid rgba(0,0,0,.06); border-bottom:1px solid rgba(0,0,0,.06);
}
.product-intro .intro-inner{
  max-width:1000px; margin:0 auto;
  padding:clamp(1.5rem,4vw,3rem) clamp(1rem,4vw,2rem);
  text-align:center;
}
.product-intro .intro-tagline{
  font-family:'Lora',serif; font-style:italic; color:#555; margin:0 0 .5rem;
  font-size:clamp(1rem,2.2vw,1.125rem);
}
.product-intro h2{
  font-family:'EB Garamond',serif; font-weight:600; letter-spacing:.02em; color:var(--rich-black);
  font-size:clamp(1.6rem,4.5vw,2.25rem); margin:0 0 .5rem;
}
.product-intro .lead{ color:#444; max-width:820px; margin:0 auto 1rem; font-size:clamp(1rem,2.2vw,1.1rem); line-height:1.7; }

.category-chips{ display:flex; justify-content:center; flex-wrap:wrap; gap:.5rem .65rem; margin-top:1.25rem; }
.category-chips .chip{
  display:inline-block; padding:.5rem .9rem; border-radius:999px; border:1px solid rgba(0,0,0,.15);
  background:#fff; color:#222; text-decoration:none; font-family:'Lora',serif; font-size:.975rem;
  transition:transform .2s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease; will-change:transform;
}
.category-chips .chip:hover{ transform:translateY(-1px); border-color:var(--gold); box-shadow:0 4px 14px rgba(0,0,0,.08); color:#000; }
.product-intro .cta{ margin-top:1.75rem; }
.product-intro .cta .chip{ border-color:var(--gold); color:var(--rich-black); }
.product-intro .cta .chip:hover{ background:var(--gold); color:#fff; }

@media (max-width:599px){
  .product-intro .intro-inner{ padding:1.25rem 1rem 1.75rem; }
  .category-chips{ gap:.45rem .5rem; }
  .category-chips .chip{ font-size:.95rem; padding:.45rem .8rem; }
}

/* ---------- Value props (dark band) ---------- */
.section--intro-dark{
  background:linear-gradient(180deg,#1a1a1a 0%,#111 100%);
  padding:2.5rem 1rem; text-align:center;
}
.usp{
  max-width:var(--wrap-max);
  margin:0 auto; padding:1.5rem 1rem 2rem;
  display:grid; gap:12px; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.usp .card{ background:var(--card); border:1px solid var(--card-border); border-radius:14px; padding:18px; text-align:left; }
.usp h3{ margin:.25rem 0 .25rem; color:var(--gold); font-family:'EB Garamond',serif; }
.usp p{ margin:0; color:#c9c9c9; font-size:.98rem; }

/* ---------- About Products (luxe band) ---------- */
.about-products{
  position:relative; isolation:isolate;
  padding:clamp(2.25rem,6vw,4rem) 0;
  background:
    linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0)) 0 0/100% 100%,
    radial-gradient(1200px 600px at 10% -10%, rgba(203,161,53,.14), transparent 60%),
    linear-gradient(180deg,#151515 0%,#0f0f0f 100%);
  border-top:1px solid color-mix(in srgb,var(--gold) 30%, #222);
}
.about-products::before{
  content:""; position:absolute; inset:0 0 auto 0; height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:.45;
}
.about-inner{ max-width:var(--wrap-max); margin:0 auto; padding:0 1rem; }
.about-grid{ display:grid; gap:clamp(18px,3vw,28px); grid-template-columns:1fr; }
@media (min-width:900px){ .about-grid{ grid-template-columns:.9fr 1.1fr; align-items:start; } .about-intro{ position:sticky; top:clamp(12px,3vw,28px); } }
.about-intro .eyebrow{
  display:inline-block; margin:0 0 .35rem; font:600 .8rem/1 "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:.08em; text-transform:uppercase; color: color-mix(in srgb,var(--gold) 85%, #fff);
  background:rgba(203,161,53,.12); border:1px solid rgba(203,161,53,.35); padding:.25rem .5rem; border-radius:999px;
}
.about-intro h2{ margin:.15rem 0 .5rem; color:var(--gold); font-family:'EB Garamond',serif; font-weight:700; }
.about-intro .lede{ color:#e7e0d2; margin:0 0 .75rem; }
.about-list{ margin:.25rem 0 1rem; padding:0; }
.about-list li{ display:flex; align-items:center; gap:.5rem; color:#d1d1d1; margin:.25rem 0; }
.about-list svg{ width:18px; height:18px; stroke:var(--gold); stroke-width:2; fill:none }

/* Right column cards */
.about-cards{
  display:grid; gap:12px;
  grid-auto-flow:column; grid-auto-columns:minmax(240px,1fr);
  overflow-x:auto; padding-bottom:.25rem; scroll-snap-type:x mandatory;
}
.about-cards::-webkit-scrollbar{ height:8px; }
.about-cards::-webkit-scrollbar-thumb{ background:#2b2b2b; border-radius:8px; }
@media (min-width:900px){
  .about-cards{ grid-auto-flow:initial; grid-template-columns:repeat(3,1fr); overflow:visible; }
}
.about-cards .card{
  scroll-snap-align:start; background:var(--card); border:1px solid var(--card-border);
  border-radius:16px; padding:16px 16px 18px; color:#ddd; position:relative; overflow:hidden;
  transition:transform .25s, box-shadow .25s, border-color .25s; box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.about-cards .card h3{ margin:.1rem 0 .35rem; color:#f4f1ec; font-size:1.05rem; font-family:'EB Garamond',serif; }
.about-cards .card p{ margin:0; color:#bdbdbd; }
.about-cards .card::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(105deg,transparent 20%, rgba(203,161,53,.15) 45%, transparent 70%);
  transform:translateX(-120%); transition:transform .6s ease;
}
.about-cards .card:hover,.about-cards .card:focus-within{
  transform:translateY(-2px);
  border-color:color-mix(in srgb,var(--gold) 45%, var(--card-border));
  box-shadow:0 14px 32px rgba(0,0,0,.22);
}
.about-cards .card:hover::after,.about-cards .card:focus-within::after{ transform:translateX(0); }
.about-cta{ margin-top:.5rem; display:inline-block; }

/* ---------- Reviews ---------- */
.section--reviews-grid{ display:grid; gap:12px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.review-card{ margin:0; background:var(--card); border:1px solid var(--card-border); border-radius:14px; padding:14px; }
.review-card figcaption{ color:#ffd76a; }
.review-card__quote{ margin:.5rem 0 0; color:#e7e0d2; }
.review-card__name{ color:#bdbdbd; margin-top:.5rem; }

/* ---------- Newsletter form ---------- */
.newsletter-form{ max-width:560px; margin:0 auto; display:grid; gap:10px; grid-template-columns:1fr auto; }
.input-pill{ border-radius:999px; border:1px solid #2b2b2b; background:#101010; color:#f4f1ec; padding:.9rem 1rem; }
.btn-pill{ border-radius:999px; white-space:nowrap; }

/* ---------- Checkout signals ---------- */
.checkout-signals{ padding-top:1.25rem; padding-bottom:1.75rem; }
.checkout-inner{ max-width:var(--wrap-max); margin:0 auto; padding:0 1rem; text-align:center; }
.checkout-note{ color:#d8d8d8; margin-bottom:.5rem; }
.payments{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; list-style:none; padding:0; margin:.25rem 0 0; }
.payments li{ border:1px solid var(--card-border); border-radius:999px; padding:.35rem .65rem; background:var(--card); color:#f4f1ec; }

/* ---------- Buttons (public variants) ---------- */
.btn{
  display:inline-block; padding:.65rem 1.1rem; border-radius:8px; text-decoration:none; font-weight:600; font-size:.95rem;
  border:1px solid var(--gold); transition:transform .2s ease, background .25s ease, color .25s ease;
}
.btn-primary{ background:var(--rich-black); color:#fff; }
.btn-primary:hover{ background:var(--gold); color:#fff; transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--gold); }
.btn-ghost:hover{ background:rgba(203,161,53,.12); color:#fff; transform:translateY(-1px); }

/* ---------- Journal cards ---------- */
.journal{ display:grid; gap:12px; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.journal-article{ background:var(--card); border:1px solid var(--card-border); border-radius:14px; overflow:hidden; }
.journal-article img{ width:100%; height:180px; object-fit:cover; display:block; }
.journal-article .pad{ padding:14px; }
.journal-article h3{ margin:.25rem 0 .25rem; color:#f4f1ec; font-size:1.1rem; }
.journal-article p{ margin:0; color:#bdbdbd; font-size:.95rem; }
.journal-article .article-link{ display:block; color:inherit; text-decoration:none; }
.journal-article .article-link:hover{ transform:translateY(-2px); box-shadow:0 8px 16px rgba(0,0,0,.15); }

/* ---------- Thank You / Newsletter bands ---------- */
.thankyou-banner{
  position:relative; isolation:isolate; padding:clamp(2.5rem,6vw,4rem) 1rem; text-align:center;
  background:
    linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0)) 0 0/100% 100%,
    radial-gradient(1000px 500px at 10% -10%, rgba(203,161,53,.12), transparent 60%),
    linear-gradient(180deg,#151515 0%,#0f0f0f 100%);
  border-top:1px solid color-mix(in srgb,var(--gold) 25%, #222);
  border-bottom:1px solid color-mix(in srgb,var(--gold) 25%, #222);
}
.thankyou-banner::before{ content:""; position:absolute; inset:0 0 auto 0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:.45; }
.thankyou-inner{ max-width:880px; margin:0 auto; }
.thankyou-banner .eyebrow{
  display:inline-block; margin:0 0 .35rem; font:600 .8rem/1 "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:.08em; text-transform:uppercase; color: color-mix(in srgb,var(--gold) 85%, #fff);
  background:rgba(203,161,53,.12); border:1px solid rgba(203,161,53,.35); padding:.25rem .5rem; border-radius:999px;
}
.thankyou-banner h2{ font-family:'EB Garamond',serif; font-weight:700; font-size:clamp(1.6rem,2.5vw,2.2rem); color:var(--gold); margin:.35rem 0 1rem; }
.thankyou-banner .lede{ color:#e7e0d2; margin:0 auto 1.25rem; max-width:720px; line-height:1.6; font-size:1.05rem; }

/* =========================
   Header / Brand / Nav (site)
========================= */
/* Duplicates of header/nav live in inc-header-nav.css.
   This section was intentionally emptied to avoid conflicts. */

/* =========================
   Utilities & States
========================= */
.u-hidden{ display:none !important; }
.u-center{ display:grid; place-items:center; }
.u-text-center{ text-align:center !important; }

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition:none !important; }
  .skeleton{ animation:none !important; }
}
/* Universal responsive image: scales down, keeps aspect ratio, never distorts */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;           /* critical for maintaining aspect ratio */
  display: block;         /* avoids inline-gap issues */
}

/* If width/height HTML attributes are present, still keep ratio on shrink */
img[width][height] {
  height: auto;
}

/* Utility: quickly apply to any image you want to be fluid */
.img-fluid { max-width: 100%; height: auto; display: block; }

