/* ==========================================================
   1. VARIABLES
   ========================================================== */

:root {
  --wine: #961b22;
  --wine-dark: #681219;
  --cream: #f0e4cf;
  --off-white: #f8f5ef;
  --charcoal: #292625;
  --sand: #d3c0a3;
  --blue-grey: #74888d;

  --font-serif: "Adobe Garamond Pro", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --page-gutter: clamp(1rem, 4vw, 4.5rem);
  --section-space: clamp(4.75rem, 9vw, 8.5rem);
  --content-max: 86rem;
  --measure: 64ch;
  --ease: 220ms ease;
}


@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../assets/fonts/adobe-garamond-pro-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("../assets/fonts/adobe-garamond-pro-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}


/* ==========================================================
   2. RESET / BASE
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--off-white);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1rem + 0.18vw, 1.2rem);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: clip;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

cite {
  font-style: italic;
}

strong {
  font-weight: 700;
}

::selection {
  background: var(--wine);
  color: var(--cream);
}

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3 {
  font-weight: 400;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.35rem, 5.4vw, 5.9rem);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  line-height: 1.08;
}

.eyebrow,
.section__rail,
.book__data dt,
.book__cover figcaption,
.fragment__page-number,
.retailer__index,
.retailer__status,
.site-footer__copyright {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--wine);
}

.eyebrow--light {
  color: var(--cream);
}

/* ==========================================================
   4. LAYOUT
   ========================================================== */

section[id] {
  scroll-margin-top: 6rem;
}

.section {
  position: relative;
  padding: var(--section-space) var(--page-gutter);
}

/*
  Cada capítulo de la web empieza con una marca horizontal clara.
  Esto mantiene la estética editorial, pero evita que las secciones
  se mezclen visualmente entre sí.
*/
.section__rail {
  display: grid;
  grid-template-columns: max-content minmax(2rem, 1fr);
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  width: min(100%, var(--content-max));
  margin: 0 auto clamp(2.4rem, 6vw, 4.6rem);
  color: var(--wine);
}

.section__rail::after {
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.34;
}

.section__rail--light {
  color: var(--cream);
}

/* ==========================================================
   5. NAVIGATION
   ========================================================== */

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.65rem 0.85rem;
  background: var(--off-white);
  color: var(--wine-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.55rem var(--page-gutter) 0.45rem;
  border-bottom: 1px solid rgba(240, 228, 207, 0.34);
  background: var(--wine);
  color: var(--cream);
}

.brand {
  width: 3.7rem;
}

.brand img {
  width: 100%;
}

.site-nav {
  min-width: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  list-style: none;
}

.site-nav a,
.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding-block: 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 2.8vw, 0.86rem);
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* ==========================================================
   6. SECTIONS
   ========================================================== */

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: calc(100svh - 6.1rem);
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3.5rem) var(--page-gutter) clamp(2rem, 5vw, 4rem);
  background: var(--wine);
  color: var(--cream);
}

.hero__index {
  align-self: start;
  justify-self: end;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.hero__title-wrap {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, 72rem);
  margin-inline: auto;
  padding-block: clamp(2.4rem, 8vw, 6rem);
}

.hero__author {
  margin-bottom: clamp(1.1rem, 3vw, 1.8rem);
  color: var(--cream);
}

.hero__title img {
  width: min(100%, 68rem);
  margin-inline: auto;
}

.hero__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.4rem;
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(240, 228, 207, 0.42);
}

.hero__descriptor {
  max-width: 18rem;
  font-size: clamp(1.3rem, 4.5vw, 2.05rem);
  line-height: 1.08;
}

.hero__descriptor span {
  display: block;
}

.hero__tempo {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero__splash {
  position: absolute;
  z-index: 0;
  right: clamp(-6rem, -10vw, -2.25rem);
  bottom: clamp(-6rem, -10vw, -2rem);
  width: clamp(12rem, 29vw, 28rem);
  opacity: 0.1;
  pointer-events: none;
}

/* IDEA */
.idea {
  background: var(--cream);
}

.idea__content {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.idea h2 {
  max-width: 16ch;
  margin-top: 1.3rem;
  color: var(--wine-dark);
}

.idea__columns {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin-top: clamp(2.8rem, 7vw, 5.8rem);
}

.idea__columns p {
  max-width: 39ch;
}

/* BOOK */
.book {
  background: var(--off-white);
}

.book__heading,
.book__cover,
.book__data {
  width: min(100%, 70rem);
  margin-inline: auto;
}

.book__heading h2 {
  max-width: 12ch;
  margin-top: 1.15rem;
}

.book__cover {
  width: min(100%, 26rem);
  margin-top: clamp(3rem, 7vw, 5rem);
}

.book__cover img {
  width: 100%;
  transition: transform var(--ease), opacity var(--ease);
}

.book__cover img:hover {
  transform: scale(1.006);
}

.book__cover figcaption {
  margin-top: 0.8rem;
  color: #5c5753;
}

.book__data {
  max-width: 42rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--wine);
}

.book__data > div {
  display: grid;
  grid-template-columns: minmax(5.8rem, 0.72fr) minmax(0, 1.55fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(41, 38, 37, 0.23);
}

.book__data dt {
  color: var(--wine);
}

.book__data dd {
  max-width: 32ch;
  overflow-wrap: anywhere;
  line-height: 1.28;
}

/* FIFTY */
.fifty {
  overflow: hidden;
  background: var(--wine);
  color: var(--cream);
}

.fifty__statement,
.chapter-list {
  width: min(100%, 74rem);
  margin-inline: auto;
}

.fifty__statement {
  margin-bottom: clamp(3.6rem, 9vw, 7rem);
}

.fifty h2 {
  display: grid;
  justify-items: start;
  width: fit-content;
  line-height: 0.76;
}

.fifty__number {
  display: block;
  max-width: 100%;
  font-size: clamp(8rem, 31vw, 18rem);
  letter-spacing: -0.085em;
}

.fifty__word {
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 2vw, 1rem);
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.fifty__statement > p {
  max-width: 24ch;
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.chapter-list {
  list-style: none;
  border-top: 1px solid rgba(240, 228, 207, 0.56);
}

.chapter-list li {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(240, 228, 207, 0.28);
}

.chapter-list__number {
  padding-top: 0.14rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

.chapter-list__title {
  min-width: 0;
  font-size: clamp(1.18rem, 2.7vw, 1.7rem);
  line-height: 1.12;
}

/* FRAGMENT */
.fragment {
  display: grid;
  min-height: 68svh;
  background: var(--cream);
}

.fragment__page {
  align-self: center;
  width: min(100%, 43rem);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 5vw, 4.2rem);
  border-top: 1px solid var(--wine);
  border-bottom: 1px solid var(--wine);
}

.fragment__page-number {
  margin-bottom: clamp(1.8rem, 5vw, 3.4rem);
  text-align: center;
  color: var(--wine);
}

.fragment blockquote p {
  font-size: clamp(1.95rem, 5.7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: center;
}

.fragment blockquote footer {
  margin-top: clamp(1.8rem, 5vw, 3.3rem);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

/* BUY */
.buy {
  background: var(--off-white);
}

.buy__intro,
.retailers,
.bookshop-callout,
.trade-note {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.buy__intro h2 {
  max-width: 11ch;
  margin-top: 1.1rem;
  color: var(--wine);
}

.buy__intro > p:last-child {
  max-width: 36ch;
  margin-top: 1.4rem;
}

.retailers {
  display: grid;
  margin-top: clamp(3.4rem, 8vw, 6.2rem);
  border-top: 1px solid var(--charcoal);
}

.retailer {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.35rem;
  border-bottom: 1px solid rgba(41, 38, 37, 0.25);
  text-decoration: none;
  transition: color var(--ease), background-color var(--ease), padding var(--ease);
}

.retailer__index {
  color: var(--wine);
}

.retailer__logo {
  width: auto;
  max-width: min(11rem, 70%);
  max-height: 2rem;
}

.retailer__name {
  min-width: 0;
  font-size: clamp(1.28rem, 2.7vw, 1.9rem);
  line-height: 1.08;
}

.retailer__arrow {
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: transform var(--ease);
}

.retailer:hover,
.retailer:focus-visible {
  padding-inline: 0.45rem;
  background: var(--cream);
  color: var(--wine-dark);
}

.retailer:hover .retailer__arrow,
.retailer:focus-visible .retailer__arrow {
  transform: translate(2px, -2px);
}

.retailer--pending {
  color: #625d59;
}

.retailer--pending:hover,
.retailer--pending:focus-visible {
  padding-inline: 0;
  background: transparent;
  color: #625d59;
}

.retailer__status {
  justify-self: end;
  max-width: 11rem;
  text-align: right;
}

.bookshop-callout {
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(1.8rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--wine);
  border-bottom: 1px solid var(--wine);
}

.bookshop-callout__main {
  max-width: 28ch;
  margin: 1rem 0;
  color: var(--wine-dark);
  font-size: clamp(1.75rem, 4vw, 3.35rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.trade-note {
  margin-top: 2.2rem;
  padding: 0.35rem 0 0.35rem clamp(1rem, 3vw, 2rem);
  border-left: 1px solid var(--wine);
}

.trade-note p {
  margin-top: 0.5rem;
}

/* AUTHOR */
.author {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--off-white);
}

.author__portrait,
.author__copy {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.author__portrait {
  max-width: 30rem;
}

.author__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.author__copy {
  max-width: 50rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}

.author__copy h2 {
  max-width: 14ch;
  margin-top: 1.15rem;
  color: var(--cream);
}

.author__copy > p:not(.eyebrow):not(.author__why) {
  max-width: 52ch;
  margin-top: 1.55rem;
}

.author__why {
  margin-top: clamp(2rem, 5vw, 4rem);
  color: var(--cream);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}

/* INSTAGRAM */
.instagram {
  background: var(--cream);
}

.instagram__content {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.instagram h2 {
  max-width: 13ch;
  color: var(--wine-dark);
}

.instagram__content > p {
  max-width: 47ch;
  margin-top: 1.6rem;
}

.instagram__handle {
  display: inline-block;
  max-width: 100%;
  margin-top: clamp(2.8rem, 7vw, 5rem);
  color: var(--wine);
  font-size: clamp(2rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
  transition: color var(--ease), transform var(--ease);
}

.instagram__handle:hover,
.instagram__handle:focus-visible {
  color: var(--wine-dark);
  transform: translateX(2px);
}

/* FOOTER */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter) 2rem;
  background: var(--wine);
  color: var(--cream);
}

.site-footer__splash {
  position: absolute;
  z-index: -1;
  right: clamp(-6rem, -8vw, -2rem);
  top: clamp(-5rem, -7vw, -2rem);
  width: clamp(13rem, 31vw, 30rem);
  opacity: 0.1;
}

.site-footer__mark {
  width: min(72vw, 28rem);
}

.site-footer__mark img {
  width: 100%;
}

.site-footer__mark p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.site-footer__last-line {
  max-width: 18ch;
  font-size: clamp(2.1rem, 5.5vw, 5.2rem);
  line-height: 0.98;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(240, 228, 207, 0.42);
}

.site-footer__copyright {
  opacity: 0.78;
}

/* ==========================================================
   7. COMPONENTS
   ========================================================== */

.editorial-link {
  position: relative;
  justify-self: start;
  width: fit-content;
  padding: 0.35rem 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.editorial-link::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform var(--ease);
}

.editorial-link:hover::after,
.editorial-link:focus-visible::after {
  transform: scaleX(0.52);
}

.editorial-link--light {
  color: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   8. RESPONSIVE
   ========================================================== */

@media (min-width: 48rem) {
  section[id] {
    scroll-margin-top: 4.5rem;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    min-height: 4rem;
    padding-block: 0.55rem;
  }

  .brand {
    width: clamp(4rem, 7vw, 5.2rem);
  }

  .site-nav ul {
    justify-content: flex-end;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .site-nav a,
  .footer-nav a {
    font-size: 0.84rem;
  }

  .hero {
    min-height: calc(100svh - 4rem);
  }

  .hero__bottom {
    grid-template-columns: minmax(13rem, 1fr) minmax(8rem, 0.48fr) auto;
    align-items: end;
    column-gap: clamp(1.8rem, 6vw, 6rem);
  }

  .hero__tempo {
    justify-self: center;
  }

  .hero .editorial-link {
    justify-self: end;
  }

  .idea__columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 7rem);
  }

  .idea__columns p:last-child {
    justify-self: end;
  }

  .book__data > div {
    grid-template-columns: minmax(7rem, 0.55fr) minmax(0, 1.45fr);
  }

  .retailer {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
  }
}

@media (min-width: 64rem) {
  .book {
    display: grid;
    grid-template-columns: minmax(18rem, 0.82fr) minmax(22rem, 1fr);
    align-items: start;
    column-gap: clamp(4rem, 8vw, 8rem);
  }

  .book .section__rail {
    grid-column: 1 / -1;
  }

  .book__heading,
  .book__data,
  .book__cover {
    width: 100%;
    margin-inline: 0;
  }

  .book__heading {
    grid-column: 1;
  }

  .book__cover {
    grid-column: 2;
    grid-row: 2 / span 2;
    justify-self: end;
    width: min(100%, 31rem);
    margin-top: 0;
  }

  .book__data {
    grid-column: 1;
    max-width: 40rem;
    margin-top: clamp(3rem, 6vw, 5rem);
  }

  .fifty {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
    align-items: start;
    column-gap: clamp(4rem, 8vw, 8rem);
  }

  .fifty .section__rail {
    grid-column: 1 / -1;
  }

  .fifty__statement,
  .chapter-list {
    width: 100%;
    margin-inline: 0;
  }

  .fifty__statement {
    grid-column: 1;
    margin-bottom: 0;
  }

  .fifty__number {
    font-size: clamp(12rem, 19vw, 19rem);
  }

  .chapter-list {
    grid-column: 2;
    align-self: end;
  }

  .author {
    display: grid;
    grid-template-columns: minmax(20rem, 0.86fr) minmax(26rem, 1.14fr);
    align-items: center;
    column-gap: clamp(4rem, 8vw, 8rem);
  }

  .author .section__rail {
    grid-column: 1 / -1;
  }

  .author__portrait,
  .author__copy {
    width: 100%;
    margin-inline: 0;
  }

  .author__portrait {
    grid-column: 1;
    max-width: 40rem;
  }

  .author__copy {
    grid-column: 2;
    max-width: 50rem;
    margin-top: 0;
  }

  .site-footer {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(24rem, 1.18fr);
    align-items: end;
    column-gap: clamp(3rem, 8vw, 8rem);
  }

  .site-footer__last-line {
    justify-self: end;
  }

  .footer-nav,
  .site-footer__copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 90rem) {
  :root {
    --page-gutter: clamp(4rem, 5vw, 6rem);
  }

  .section__rail,
  .hero__bottom {
    width: min(100%, 90rem);
  }

  .idea__content,
  .instagram__content {
    width: min(100%, 82rem);
  }

  .buy__intro,
  .retailers,
  .bookshop-callout,
  .trade-note {
    width: min(100%, 76rem);
  }
}

/* Narrow-phone refinements: 320-359 px */
@media (max-width: 22.49rem) {
  .site-header {
    gap: 0.2rem;
  }

  .site-nav ul {
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero__title-wrap {
    padding-block: 2rem;
  }

  .book__data > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .retailer {
    grid-template-columns: 2.2rem minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .retailer__status {
    max-width: 7rem;
    font-size: 0.65rem;
  }
}

/* ==========================================================
   9. ACCESSIBILITY
   ========================================================== */

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.fifty :focus-visible,
.author :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--cream);
}

@media (forced-colors: active) {
  .site-nav a::after,
  .footer-nav a::after,
  .editorial-link::after,
  .section__rail::after {
    background: CanvasText;
  }
}

/* ==========================================================
   10. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .book__cover img:hover,
  .retailer:hover,
  .retailer:focus-visible,
  .instagram__handle:hover,
  .instagram__handle:focus-visible {
    transform: none;
  }
}
