:root {
  --ink: #17202a;
  --ink-deep: #0f161d;
  --ink-soft: #34414d;

  --paper: #f7f2ea;
  --paper-light: #fffdf9;
  --paper-dark: #ece3d6;

  --wine: #8c1d40;
  --wine-dark: #65142e;

  --gold: #c4a15a;
  --gold-light: #ead7a7;

  --muted: #6f7378;
  --line: rgba(23, 32, 42, 0.14);

  --white: #ffffff;

  --shadow-soft:
    0 18px 48px rgba(15, 22, 29, 0.1);

  --shadow-deep:
    0 34px 90px rgba(0, 0, 0, 0.28);

  --radius-small: 10px;
  --radius-medium: 20px;
  --radius-large: 34px;

  --page-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;

  background: var(--paper);
  color: var(--ink);

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

blockquote {
  margin: 0;
}

.page-width {
  width: min(
    calc(100% - 40px),
    var(--page-width)
  );

  margin-inline: auto;
}

/* Accesibilitate */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;

  padding: 10px 16px;

  transform: translateY(-160%);

  border-radius: var(--radius-small);

  background: var(--white);
  color: var(--ink);

  font-weight: 700;
  text-decoration: none;
}

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

/* Bară superioară */

.notice-bar {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.76);
}

.notice-bar__inner {
  min-height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;

  text-align: center;
  text-transform: uppercase;
}

.notice-bar__inner span[aria-hidden="true"] {
  color: var(--gold);
  font-size: 0.5rem;
}

/* Antet */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  border-bottom:
    1px solid rgba(23, 32, 42, 0.08);

  background:
    rgba(247, 242, 234, 0.94);

  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 78px;

  display: flex;
  align-items: center;

  gap: 34px;
}

.brand,
.footer-brand {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-weight: 700;
  letter-spacing: -0.025em;

  text-decoration: none;
}

.brand {
  color: var(--ink-deep);

  font-size:
    clamp(1.9rem, 3vw, 2.55rem);

  line-height: 1;
}

.main-nav {
  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 27px;
}

.main-nav a {
  position: relative;

  color: var(--ink-soft);

  font-size: 0.85rem;
  font-weight: 600;

  text-decoration: none;
}

.main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  transform: scaleX(0);
  transform-origin: right;

  background: var(--wine);

  transition:
    transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-button {
  min-height: 42px;
  padding: 10px 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--wine);
  color: var(--white);

  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-button:hover {
  transform: translateY(-2px);
  background: var(--wine-dark);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 15%,
      rgba(196, 161, 90, 0.15),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      #17202a 0%,
      #0c1218 72%
    );

  color: var(--white);
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.026) 1px,
      transparent 1px
    );

  background-size: 58px 58px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 92%
    );
}

.hero__grid {
  min-height: 720px;

  padding-block:
    clamp(70px, 9vw, 120px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, 0.92fr);

  align-items: center;

  gap:
    clamp(50px, 8vw, 110px);
}

.hero__content,
.hero__books {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-number {
  margin: 0;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;

  text-transform: uppercase;
}

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

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

.section-number {
  color: var(--wine);
}

.hero h1,
.story h2,
.section-heading h2,
.reviews__header h2,
.final-cta h2 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  margin: 17px 0 25px;

  font-size:
    clamp(3.5rem, 7.4vw, 6.8rem);

  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 600;
}

.hero__lead {
  max-width: 650px;
  margin: 0;

  color:
    rgba(255, 255, 255, 0.74);

  font-size:
    clamp(1rem, 1.5vw, 1.14rem);
}

.hero__actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

/* Butoane */

.button {
  min-height: 51px;
  padding: 13px 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid transparent;

  border-radius: 999px;

  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--wine);
  color: var(--white);

  box-shadow:
    0 14px 34px
    rgba(140, 29, 64, 0.34);
}

.button--primary:hover {
  background: #a32650;

  box-shadow:
    0 18px 42px
    rgba(140, 29, 64, 0.42);
}

.button--secondary {
  border-color:
    rgba(255, 255, 255, 0.28);

  color: var(--white);
}

.button--secondary:hover {
  border-color:
    rgba(255, 255, 255, 0.62);

  background:
    rgba(255, 255, 255, 0.07);
}

.button--light {
  background: var(--paper-light);
  color: var(--wine-dark);

  box-shadow:
    0 14px 32px
    rgba(0, 0, 0, 0.16);
}

/* Stele și microrecenzie */

.stars {
  color: #e3b341;

  font-size: 0.94rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.micro-review {
  margin-top: 31px;
  padding-left: 18px;

  border-left:
    2px solid var(--gold);
}

.micro-review blockquote {
  margin-top: 9px;

  color:
    rgba(255, 255, 255, 0.86);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.05rem;
  font-style: italic;
}

.micro-review p {
  margin: 6px 0 0;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 0.72rem;
}

/* Coperțile din hero */

.hero__books {
  display: grid;
  justify-items: center;
}

.book-display {
  width: min(100%, 480px);
  min-height: 500px;

  display: grid;
  place-items: center;

  position: relative;

  perspective: 1100px;
}

.book-display img {
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
}

.book-display__main {
  position: relative;
  z-index: 3;

  width: min(58%, 270px);

  display: block;

  transform: rotate(-1.5deg);

  transition:
    transform 220ms ease;
}

.book-display__main:hover {
  transform:
    rotate(0)
    translateY(-10px)
    scale(1.02);
}

.book-display__main img {
  width: 100%;
}

.book-display__side {
  position: absolute;
  z-index: 1;

  width: min(46%, 220px);

  opacity: 0.56;

  filter:
    saturate(0.72)
    brightness(0.66);
}

.book-display__side--left {
  left: 0;

  transform:
    rotate(-11deg)
    translateY(22px);
}

.book-display__side--right {
  right: 0;

  transform:
    rotate(10deg)
    translateY(30px);
}

.hero__reading-order {
  max-width: 360px;
  margin: 18px auto 0;

  color:
    rgba(255, 255, 255, 0.54);

  font-size: 0.76rem;
  text-align: center;
}

/* Bandă recenzii */

.proof-strip {
  border-bottom:
    1px solid var(--line);

  background: var(--paper-light);
}

.proof-strip__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.proof-strip__item {
  min-height: 112px;
  padding: 24px;

  display: grid;
  place-content: center;

  text-align: center;
}

.proof-strip__item + .proof-strip__item {
  border-left:
    1px solid var(--line);
}

.proof-strip__item p {
  margin: 9px 0 0;

  color: var(--ink-soft);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.1rem;
  font-style: italic;
}

/* Povestea */

.story {
  padding-block:
    clamp(85px, 11vw, 145px);

  background: var(--paper-light);
}

.story__grid {
  display: grid;

  grid-template-columns:
    minmax(300px, 0.84fr)
    minmax(0, 1.16fr);

  gap:
    clamp(50px, 8vw, 115px);
}

.story__intro .eyebrow {
  margin-top: 30px;
}

.story h2 {
  margin: 15px 0 0;

  font-size:
    clamp(2.6rem, 5.2vw, 4.8rem);

  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.story__large {
  margin: 0 0 36px;

  color: var(--ink-soft);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(1.65rem, 3vw, 2.4rem);

  line-height: 1.25;
}

.story__columns {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 34px;

  color: var(--muted);
}

.story__columns p {
  margin: 0;
}

.pull-quote {
  margin-top: 42px;
  padding: 26px 28px;

  border-top:
    1px solid var(--gold);

  border-bottom:
    1px solid var(--gold);
}

.pull-quote blockquote {
  margin-top: 12px;

  color: var(--ink);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.45;
}

.pull-quote p {
  margin: 10px 0 0;

  color: var(--muted);
  font-size: 0.74rem;
}

/* Experiența de lectură */

.experience {
  padding-block:
    clamp(80px, 10vw, 130px);

  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0 0;

  font-size:
    clamp(2.65rem, 5vw, 4.7rem);

  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
}

.experience .section-number {
  color: var(--gold-light);
}

.experience .section-heading > p:last-child {
  color:
    rgba(255, 255, 255, 0.58);
}

.experience__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid rgba(255, 255, 255, 0.14);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.14);
}

.experience-card {
  min-height: 330px;
  padding: 34px;

  display: flex;
  flex-direction: column;
}

.experience-card + .experience-card {
  border-left:
    1px solid rgba(255, 255, 255, 0.14);
}

.experience-card__number {
  color: var(--gold);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.45rem;
  font-weight: 700;
}

.experience-card h3 {
  margin: 40px 0 12px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.85rem;
  line-height: 1.08;
}

.experience-card > p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.9rem;
}

.experience-card blockquote {
  margin-top: auto;
  padding-top: 30px;

  color: var(--gold-light);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1rem;
  font-style: italic;
}

/* Avertisment 18+ */

.content-advisory {
  max-width: 900px;

  margin: 44px auto 0;
  padding: 22px 24px;

  display: flex;
  align-items: center;

  gap: 18px;

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius:
    var(--radius-small);

  background:
    rgba(255, 255, 255, 0.04);
}

.content-advisory__badge {
  flex: 0 0 auto;

  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--wine);
  color: var(--white);

  font-size: 0.78rem;
  font-weight: 700;
}

.content-advisory h3 {
  margin: 0 0 4px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.25rem;
}

.content-advisory p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.86rem;
}

/* Recenzii */

.reviews {
  padding-block:
    clamp(85px, 11vw, 145px);

  background: var(--paper-dark);
}

.reviews__header {
  margin-bottom: 42px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(260px, 0.42fr);

  align-items: end;

  gap: 50px;
}

.reviews__header h2 {
  max-width: 760px;
  margin: 12px 0 0;

  font-size:
    clamp(2.7rem, 5vw, 4.7rem);

  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.reviews__header > p {
  margin: 0;
  color: var(--muted);
}

.reviews__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.review-card {
  min-height: 270px;
  padding: 29px;

  display: flex;
  flex-direction: column;

  border:
    1px solid rgba(23, 32, 42, 0.11);

  border-radius:
    var(--radius-medium);

  background: var(--paper-light);

  box-shadow:
    0 12px 32px
    rgba(15, 22, 29, 0.06);
}

.review-card--large {
  grid-row: span 2;

  background: var(--ink);
  color: var(--white);
}

.review-card--wide {
  grid-column: span 2;
  min-height: 230px;

  background: var(--wine);
  color: var(--white);
}

.review-card blockquote {
  margin-top: 22px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
}

.review-card--large blockquote {
  font-size:
    clamp(1.65rem, 2.6vw, 2.2rem);

  line-height: 1.36;
}

.review-card--wide blockquote {
  max-width: 850px;

  font-size:
    clamp(1.5rem, 2.6vw, 2.1rem);
}

.review-card footer {
  margin-top: auto;
  padding-top: 26px;

  color: var(--muted);
  font-size: 0.74rem;
}

.review-card--large footer,
.review-card--wide footer {
  color:
    rgba(255, 255, 255, 0.62);
}

/* Volume */

.books {
  padding-block:
    clamp(85px, 11vw, 145px);

  background: var(--paper-light);
}

.books__grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
  align-items: stretch;
}

.book-card {
  position: relative;
  min-width: 0;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border:
    1px solid var(--line);

  border-radius:
    var(--radius-medium);

  background: var(--white);

  box-shadow:
    0 14px 36px
    rgba(15, 22, 29, 0.07);

  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.book-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(140, 29, 64, 0.34);

  box-shadow: var(--shadow-soft);
}

.book-card--featured {
  border-color:
    rgba(140, 29, 64, 0.38);
}

.book-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;

  padding: 7px 10px;

  border-radius: 999px;

  background: var(--wine);
  color: var(--white);

  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  text-transform: uppercase;

  box-shadow:
    0 8px 18px
    rgba(0, 0, 0, 0.22);
}

.book-card__cover {
  aspect-ratio: 2 / 3;

  display: block;
  overflow: hidden;

  background: #ddd4ca;
}

.book-card__cover img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 280ms ease;
}

.book-card:hover .book-card__cover img {
  transform: scale(1.025);
}

.book-card__body {
  padding: 20px;

  display: flex;
  flex: 1;
  flex-direction: column;
}

.book-card__volume {
  margin: 0 0 4px;

  color: var(--wine);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.book-card h3 {
  margin: 0 0 17px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 1.55rem;
  line-height: 1.08;
}

.book-card__meta {
  padding-block: 10px;

  display: flex;
  justify-content: space-between;

  gap: 12px;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  color: var(--muted);

  font-size: 0.74rem;
  font-weight: 600;
}

.book-card__purchase {
  margin-top: auto;
  padding-top: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.book-card__purchase strong {
  font-size: 1.12rem;
}

.book-card__purchase a {
  min-height: 39px;
  padding: 8px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--ink);
  color: var(--white);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;

  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.book-card__purchase a:hover {
  transform: translateY(-2px);
  background: var(--wine);
}

/* CTA final */

.final-cta {
  padding-block:
    clamp(70px, 9vw, 112px);

  background: var(--wine);
  color: var(--white);
}

.final-cta__grid {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.68fr)
    minmax(0, 1.32fr);

  align-items: center;

  gap:
    clamp(45px, 8vw, 110px);
}

.final-cta__review {
  padding-right: 40px;

  border-right:
    1px solid rgba(255, 255, 255, 0.22);
}

.final-cta__review blockquote {
  margin-top: 14px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(1.5rem, 2.7vw, 2.1rem);

  font-style: italic;
  line-height: 1.36;
}

.final-cta__review p {
  margin: 13px 0 0;

  color:
    rgba(255, 255, 255, 0.6);

  font-size: 0.74rem;
}

.final-cta .eyebrow {
  color:
    rgba(255, 255, 255, 0.68);
}

.final-cta h2 {
  max-width: 720px;
  margin: 12px 0 29px;

  font-size:
    clamp(2.7rem, 5vw, 4.7rem);

  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

/* Subsol */

.site-footer {
  padding-block: 50px;

  background: var(--ink-deep);

  color:
    rgba(255, 255, 255, 0.56);
}

.site-footer__grid {
  display: grid;

  grid-template-columns:
    1fr auto auto;

  align-items: end;

  gap: 44px;
}

.footer-brand {
  color: var(--white);
  font-size: 2rem;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 0.76rem;
}

.footer-nav {
  display: flex;
  gap: 21px;
}

.footer-nav a {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.76rem;
  font-weight: 600;

  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.copyright {
  text-align: right;
}

/* Focus pentru tastatură */

.brand:focus-visible,
.main-nav a:focus-visible,
.header-button:focus-visible,
.button:focus-visible,
.book-display__main:focus-visible,
.book-card__cover:focus-visible,
.book-card__purchase a:focus-visible,
.footer-brand:focus-visible,
.footer-nav a:focus-visible {
  outline:
    3px solid var(--gold);

  outline-offset: 4px;
}

/* Laptopuri și tablete */

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .header-button {
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      340px;

    gap: 50px;
  }

  .book-display {
    min-height: 430px;
  }

  .reviews__grid,
  .books__grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .review-card--large {
    grid-row: auto;
  }

  .review-card--wide {
    grid-column: span 2;
  }
}

/* Tablete mici */

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .notice-bar__inner {
    min-height: 33px;

    gap: 7px;

    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .notice-bar__inner span:nth-child(3),
  .notice-bar__inner span:nth-child(4) {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand {
    font-size: 2rem;
  }

  .header-button {
    min-height: 39px;
    padding: 8px 13px;

    font-size: 0.65rem;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 65px 78px;

    grid-template-columns: 1fr;

    gap: 52px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;

    font-size:
      clamp(3.2rem, 15vw, 5.2rem);
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .micro-review {
    max-width: 450px;

    margin-inline: auto;

    text-align: left;
  }

  .book-display {
    width: min(100%, 410px);
    min-height: 420px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__item {
    min-height: 92px;
  }

  .proof-strip__item + .proof-strip__item {
    border-top:
      1px solid var(--line);

    border-left: 0;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story__columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
    padding: 28px 8px;
  }

  .experience-card + .experience-card {
    border-top:
      1px solid rgba(255, 255, 255, 0.14);

    border-left: 0;
  }

  .experience-card h3 {
    margin-top: 20px;
  }

  .experience-card blockquote {
    margin-top: 22px;
  }

  .content-advisory {
    align-items: flex-start;
  }

  .reviews__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews__grid,
  .books__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

  .review-card--wide {
    grid-column: span 2;
  }

  .final-cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .final-cta__review {
    padding: 0 0 36px;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.22);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;

    align-items: start;

    gap: 26px;
  }

  .copyright {
    text-align: left;
  }
}

/* Telefoane */

@media (max-width: 500px) {
  .page-width {
    width: min(
      calc(100% - 24px),
      var(--page-width)
    );
  }

  .notice-bar__inner span:nth-child(2),
  .notice-bar__inner span:nth-child(5) {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .book-display {
    min-height: 350px;
  }

  .book-display__main {
    width: min(60%, 220px);
  }

  .book-display__side {
    width: min(44%, 165px);
  }

  .content-advisory {
    flex-direction: column;
  }

  .reviews__grid,
  .books__grid {
    grid-template-columns: 1fr;
  }

  .review-card--wide {
    grid-column: auto;
  }

  .book-card {
    width: min(100%, 370px);
    margin-inline: auto;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

/* Reducerea animațiilor */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }
}