/* =========================================================
   maréa - feuille de style
   Palette : Bleu Méditerranée (accent unique) + écru froid + encre marine
   Système d'angles : net (radius 0, éditorial)
   ========================================================= */

:root {
  /* Neutres */
  --shell: #f4f5f2;        /* fond écru froid */
  --shell-2: #eceeea;      /* panneau légèrement plus profond */
  --white: #ffffff;
  --ink: #0f2a33;          /* encre marine, texte principal + sections sombres */
  --ink-2: #163a45;        /* encre plus claire (hover sombre) */
  --ink-soft: #4a5e64;     /* texte secondaire (AA sur fond clair) */

  /* Accent unique : la mer */
  --sea: #126e80;
  --sea-deep: #0b4c5a;
  --azur: #5aa6b6;         /* même teinte, plus claire (sur fond sombre) */

  --line: rgba(15, 42, 51, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);

  --r: 0px;                /* rayon unique : net */

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Jost", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --nav-h: 70px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--shell);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; }

/* ---------- Lien d'évitement (accessibilité clavier) ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--azur); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.015em;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 0.9rem; max-width: 52ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--ink); color: var(--shell); }
.btn--solid:hover { background: var(--sea); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--shell); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--azur); color: var(--ink); }
.btn--block { width: 100%; }

.link-underline {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
  color: var(--ink);
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--sea);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--shell);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
}
.topbar p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--shell) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--shell) 92%, transparent); }
.nav__inner {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__links { display: flex; gap: 1.9rem; align-items: center; }
.nav__links--right { justify-content: flex-end; }
.nav__links a {
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink);
  position: relative; padding-bottom: 2px;
}
.nav__links a:hover { color: var(--sea); }
.logo {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.nav__cart { position: relative; display: inline-flex; font-size: 1.4rem; padding: 4px; }
.nav__cart:hover { color: var(--sea); }
.nav__cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--sea); color: #fff;
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 600;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 999px;
}
.nav__cart-count[hidden] { display: none; }
.nav__burger { display: none; font-size: 1.5rem; }

/* ---------- Hero (vidéo plein écran) ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 106px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(8,30,37,0.72) 0%, rgba(8,30,37,0.44) 42%, rgba(8,30,37,0.12) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  color: var(--shell); max-width: 640px; padding-block: 3rem;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.9rem, 6.6vw, 5.4rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.04;
  color: var(--shell); margin-bottom: 1.3rem;
}
.hero__lede {
  color: rgba(244, 245, 242, 0.92);
  font-size: 1.12rem; max-width: 44ch; margin-bottom: 2.1rem;
}

/* ---------- Value props ---------- */
.props { padding: clamp(2.5rem, 5vw, 3.5rem) 0; border-block: 1px solid var(--line); }
.props__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.prop { padding: 0.4rem clamp(1rem, 3vw, 2.4rem); }
.prop + .prop { border-left: 1px solid var(--line); }
.prop i { font-size: 1.7rem; color: var(--sea); display: block; margin-bottom: 0.9rem; }
.prop h3 { font-family: var(--ff-sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.prop p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Collection ---------- */
.collection { padding: clamp(4rem, 9vw, 7rem) 0; }
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 900px;
}
.card__media {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #e3ece9, #cddedc);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding-top: 1.1rem; }
.card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card__row h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 500; }
.card__price { font-size: 1.02rem; font-weight: 500; white-space: nowrap; }
.card__color {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink-soft); font-size: 0.88rem; letter-spacing: 0.02em;
  margin: 0.4rem 0 1.2rem;
}
.swatch { width: 13px; height: 13px; border-radius: 999px; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }

/* ---------- Savoir-faire ---------- */
.craft { padding: clamp(3rem, 8vw, 6rem) 0; background: var(--shell-2); }
.craft__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 6vw, 4.5rem); align-items: center;
}
.craft__media { aspect-ratio: 4/5; max-height: 600px; overflow: hidden; }
.craft__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.craft__copy h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.3rem; }
.craft__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 52ch; }
.craft__list { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.craft__list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.craft__list i { color: var(--sea); font-size: 1.05rem; }

/* ---------- Film / En mouvement ---------- */
.film { padding: clamp(4rem, 9vw, 7rem) 0; }
.film__main {
  aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.film__main video { width: 100%; height: 100%; object-fit: cover; display: block; }
.film__reels { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2rem); max-width: 720px; }
.film__reels video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: var(--ink); }
@media (max-width: 760px) {
  .film__reels { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* ---------- Lookbook ---------- */
.lookbook { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--shell-2); }
.lookbook__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); }
.lookbook__item { overflow: hidden; }
.lookbook__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.lookbook__item:hover img { transform: scale(1.04); }
.lookbook__film { margin-top: clamp(1rem, 3vw, 2rem); aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.lookbook__film video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) { .lookbook__grid { grid-template-columns: 1fr; } }

/* ---------- Avis ---------- */
.avis { padding: clamp(4rem, 9vw, 7rem) 0; }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 2.8rem); }
.quote { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.stars { color: var(--sea); font-size: 0.92rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.quote blockquote {
  font-family: var(--ff-display);
  font-size: 1.35rem; line-height: 1.4; font-weight: 500;
  letter-spacing: -0.01em;
}
.quote figcaption { margin-top: 1.2rem; font-size: 0.82rem; letter-spacing: 0.05em; font-weight: 500; }
.quote figcaption span { color: var(--ink-soft); font-weight: 400; margin-left: 0.5rem; }

/* ---------- Manifesto (image plage pleine largeur) ---------- */
.manifesto {
  position: relative;
  min-height: clamp(520px, 82vh, 860px);
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center; overflow: hidden;
}
.manifesto__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%; z-index: 0;
}
.manifesto::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 246, 243, 0.72) 0%, rgba(247, 246, 243, 0.1) 38%, rgba(247, 246, 243, 0) 60%);
}
.manifesto__inner {
  position: relative; z-index: 2;
  max-width: 720px; margin-inline: auto;
  padding-top: clamp(3rem, 9vh, 6rem);
}
.manifesto .eyebrow { color: var(--sea-deep); }
.manifesto__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.22; font-weight: 500; color: var(--ink);
  text-shadow: 0 1px 30px rgba(247, 246, 243, 0.85);
}
.manifesto__sign {
  margin-top: 1.4rem; font-family: var(--ff-display);
  font-size: 1.6rem; color: var(--sea-deep);
  text-shadow: 0 1px 24px rgba(247, 246, 243, 0.85);
}

/* ---------- Club / Newsletter (reste sombre) ---------- */
.club { background: var(--ink); color: var(--shell); padding: clamp(3.5rem, 8vw, 6rem) 0; border-top: 1px solid var(--line-light); }
.club__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.club__copy h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 0.9rem; }
.club__copy p { color: rgba(244, 245, 242, 0.72); max-width: 42ch; }
.club__form label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; color: rgba(244,245,242,0.85); }
.club__field { display: flex; gap: 0.7rem; }
.club__field input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--shell);
  padding: 0.9rem 1rem; font-family: inherit; font-size: 0.95rem;
  border-radius: var(--r);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.club__field input::placeholder { color: rgba(244,245,242,0.55); }
.club__field input:focus { outline: none; border-color: var(--azur); background: rgba(255,255,255,0.1); }
.club__note { margin-top: 0.9rem; font-size: 0.85rem; min-height: 1.2em; color: var(--azur); }

/* ---------- Footer ---------- */
.footer { background: #0a2129; color: rgba(244,245,242,0.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.8rem, 4vw, 3rem); padding-bottom: 3rem; }
.logo--footer { display: inline-block; color: var(--shell); font-size: 2rem; }
.footer__brand p { margin-top: 0.5rem; font-size: 0.9rem; }
.footer__social { display: flex; gap: 1rem; margin-top: 1.4rem; font-size: 1.35rem; }
.footer__social a { color: rgba(244,245,242,0.7); transition: color .3s var(--ease); }
.footer__social a:hover { color: var(--azur); }
.footer__col h4 { color: var(--shell); font-family: var(--ff-sans); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.1rem; }
.footer__col a { display: block; font-size: 0.9rem; padding: 0.32rem 0; color: rgba(244,245,242,0.72); transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--azur); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}
.footer__pay { display: flex; gap: 0.9rem; align-items: center; opacity: 0.85; }
.footer__pay img { height: 18px; width: auto; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--azur); }

/* ---------- Drawer / Panier ---------- */
.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(10, 33, 41, 0.4);
  opacity: 0; transition: opacity .4s var(--ease);
}
.drawer.open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(420px, 100%);
  background: var(--shell); color: var(--ink);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px rgba(10,33,41,0.18);
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem clamp(1.3rem, 4vw, 1.8rem); border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--ff-display); font-size: 1.5rem; }
.drawer__head button { font-size: 1.5rem; }
.drawer__head button:hover { color: var(--sea); }
.drawer__body { flex: 1; overflow-y: auto; padding: clamp(1.3rem, 4vw, 1.8rem); }
.drawer__empty { color: var(--ink-soft); font-size: 0.95rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-item__img { aspect-ratio: 4/5; overflow: hidden; background: var(--shell-2); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--ff-display); font-size: 1.18rem; line-height: 1.2; }
.cart-item__color { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.2rem; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 0.6rem; border: 1px solid var(--line); }
.cart-item__qty button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 0.95rem; }
.cart-item__qty button:hover { color: var(--sea); }
.cart-item__qty span { font-size: 0.85rem; min-width: 14px; text-align: center; }
.cart-item__right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item__price { font-weight: 500; font-size: 0.95rem; }
.cart-item__remove { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.cart-item__remove:hover { color: var(--sea); }
.drawer__foot { padding: clamp(1.3rem, 4vw, 1.8rem); border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; }
.drawer__ship { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1.1rem; }

/* ---------- Bandeau cookies (RGPD / CNIL) ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--ink); color: var(--shell);
  transform: translateY(110%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie__inner {
  display: flex; align-items: center; gap: clamp(1rem, 4vw, 2.5rem);
  padding: 1.2rem 0; flex-wrap: wrap;
}
.cookie__text { flex: 1; min-width: 260px; font-size: 0.88rem; line-height: 1.55; color: rgba(244,245,242,0.82); }
.cookie__text a { color: var(--azur); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie__actions .btn { padding: 0.7rem 1.4rem; font-size: 0.68rem; }
.btn--ghost-light { background: transparent; color: var(--shell); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); }

/* ---------- Reveal (motion) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero { min-height: calc(100dvh - 96px); }
  .craft__grid { grid-template-columns: 1fr; gap: 2rem; }
  .craft__media { max-height: 480px; }
  .club__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}

@media (max-width: 760px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__burger { display: inline-flex; }
  .nav__links--left {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--shell); border-bottom: 1px solid var(--line);
    padding: 0.5rem clamp(20px, 5vw, 56px) 1rem;
    transform: translateY(-120%); transition: transform .4s var(--ease);
    z-index: 49;
  }
  .nav.menu-open .nav__links--left { transform: translateY(0); }
  .nav__links--left a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .logo { text-align: left; }
  .nav__hide-sm { display: none; }

  .props__grid { grid-template-columns: 1fr; gap: 0; }
  .prop { padding: 1.5rem 0; }
  .prop + .prop { border-left: none; border-top: 1px solid var(--line); }

  .products { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .avis__grid { grid-template-columns: 1fr; gap: 0; }
  .quote { padding: 1.6rem 0; }
  .quote + .quote { border-top: 1px solid var(--line); }

  .club__field { flex-direction: column; }
  .club__field .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.4rem); }
}

@media (max-width: 440px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .card:hover .card__media img { transform: none; }
}
