/* ==========================================================================
   Tre soldi al paio — homepage stylesheet
   Follows the Claude Design boards in docs/mockup/homepage.dc.html
   (1a desktop 1440 px, 1b phone 390 px) and the rules in docs/design.md.
   Colour names map to docs/design.md through docs/glossario.md.
   ========================================================================== */

:root {
  /* Colours */
  --cream: #FBF6E6;
  --cream-dark: #F3E0C3;
  --sand: #DCCFB7;
  --rose: #9E5F66;
  --rose-light: #E9C9C3;
  --brown: #562C1D;
  --text: #3A3D3F;
  --text-muted: rgba(58, 61, 63, 0.7);
  --green: #234137;
  --gold: #C9A45C;

  /* Fonts */
  --font-script: "Dancing Script", "Playlist Script", cursive;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Lato", "Helvetica Neue", Arial, sans-serif;

  /* Sizes */
  --content-width: 1120px;
  --gutter: 24px;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(86, 44, 29, 0.08);
  --shadow-cover: 0 4px 20px rgba(86, 44, 29, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

[hidden] { display: none !important; }
img, picture { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, p, dl, dd, blockquote, hr { margin: 0; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--rose); }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

/* --------------------------------------------------------------------------
   Shared typography
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
}
.eyebrow--center { text-align: center; }

.section__title--center { text-align: center; }

.section__title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  color: var(--brown);
}

.prose {
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}
.prose p + p { margin-top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.rule {
  width: 48px;
  height: 1px;
  margin: 20px auto;
  border: 0;
  background: var(--gold);
}

.price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  color: var(--brown);
}

.btn {
  display: block;
  padding: 19px 24px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn:hover {
  background: var(--rose-light);
  color: var(--brown);
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  .eyebrow { font-size: 16px; }
  .section__title { margin-top: 20px; font-size: 44px; }
  .prose { max-width: 560px; font-size: 19px; line-height: 1.75; }
  .rule { width: 64px; margin: 28px 0; }
}

/* --------------------------------------------------------------------------
   1. Top bar
   -------------------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding-block: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
}
.logo:hover { color: var(--brown); }
.logo__crown {
  width: 26px;
  height: 14px;
  color: var(--gold);
  flex: none;
}
.logo__text {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  white-space: nowrap;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--brown);
  cursor: pointer;
}
.menu-toggle__bar {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

.menu {
  flex-basis: 100%;
  border-top: 1px solid var(--sand);
  margin-top: 8px;
}
.menu[hidden] { display: none; }
.menu__list {
  display: flex;
  flex-direction: column;
  padding-block: 8px;
}
.menu__list a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.menu__list a:hover { color: var(--rose); }

@media (min-width: 900px) {
  .topbar__inner { padding-block: 20px; }
  .logo__crown { width: 34px; height: 18px; }
  .logo__text { font-size: 30px; }
  .menu-toggle { display: none; }
  .menu,
  .menu[hidden] {
    display: block;
    flex-basis: auto;
    margin-top: 0;
    border-top: 0;
  }
  .menu__list {
    flex-direction: row;
    gap: 40px;
    padding-block: 0;
  }
  .menu__list a { padding: 0; line-height: 1; }
}

/* --------------------------------------------------------------------------
   2. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 32px 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.45;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 246, 230, 0.55) 0%, rgba(251, 246, 230, 0.9) 45%, var(--cream) 78%);
}

.hero__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

/* The printed cover, with a hint of spine down the left edge */
.cover {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-cover);
}
.cover__spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  z-index: 2;
  background: linear-gradient(90deg, rgba(86, 44, 29, 0.22), rgba(86, 44, 29, 0));
}
.cover__image { width: 100%; height: auto; }
.cover--hero {
  max-width: 300px;
  margin-inline: auto;
}

.hero__body { text-align: center; }
.hero__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 31px;
  line-height: 1.28;
  color: var(--brown);
  text-wrap: pretty;
}
.hero__lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 32px;
  padding-block: 20px;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  text-align: left;
}
.fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}
.fact::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
}

.hero__buy { display: grid; gap: 20px; }

@media (min-width: 900px) {
  .hero { padding-block: 96px; }
  .hero__bg img { object-position: center 30%; opacity: 0.5; }
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(251, 246, 230, 0) 0%, rgba(251, 246, 230, 0) 70%, var(--cream) 100%),
      linear-gradient(90deg, var(--cream) 0%, rgba(251, 246, 230, 0.92) 42%, rgba(251, 246, 230, 0.55) 70%, rgba(251, 246, 230, 0.85) 100%);
  }
  .hero__inner {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 64px;
  }
  .cover--hero { max-width: 420px; margin-inline: 0; }

  .hero__body { text-align: left; }
  .hero__title { margin-top: 24px; max-width: 620px; font-size: 46px; line-height: 1.22; }
  .hero__lead { margin-top: 24px; max-width: 560px; font-size: 19px; }

  .facts {
    flex-direction: row;
    gap: 48px;
    max-width: 560px;
    margin-block: 40px 0;
    padding-block: 24px;
  }
  .fact { font-size: 18px; }
  .fact::before { width: 9px; height: 9px; }

  .hero__buy {
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
  }
  .price { font-size: 40px; }
  .btn { display: inline-block; padding: 20px 44px; font-size: 16px; }
}

/* --------------------------------------------------------------------------
   Shared section layout
   -------------------------------------------------------------------------- */

.section { padding-block: 56px; }
.section--alt { background: var(--cream-dark); }

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .section { padding-block: 96px; }
  .split { gap: 64px; }
  .split--author { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); }
  .split--story { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   3. Author: arched frame and placeholder block
   -------------------------------------------------------------------------- */

.arch {
  border-radius: 150px 150px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--cream);
}
.arch img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 18%;
}

.split--author .split__body { text-align: center; }
.split--author .prose { text-align: left; }

.placeholder {
  margin-top: 16px;
  min-height: 110px;
  padding-left: 16px;
  border-left: 1px solid var(--sand);
  text-align: left;
}
.placeholder__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}
.placeholder__text {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
}

@media (min-width: 900px) {
  .arch { border-radius: 210px 210px var(--radius) var(--radius); }
  .arch img { height: 520px; }
  .split--author .split__body { text-align: left; }
  .placeholder {
    margin-top: 20px;
    min-height: 96px;
    max-width: 560px;
    padding-left: 20px;
  }
  .placeholder__label { font-size: 14px; }
  .placeholder__text { margin-top: 12px; font-size: 19px; line-height: 1.75; }
}

/* --------------------------------------------------------------------------
   4. Story: illustration and ornament (the carousel cut from the cover)
   -------------------------------------------------------------------------- */

.illustration {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
}
.illustration img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.split--story .section__title { margin-bottom: 20px; }

.ornament {
  width: 200px;
  height: 170px;
  margin: 24px auto 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 45%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 45%, transparent 78%);
}
.ornament img {
  width: 320%;
  max-width: none;
  height: auto;
  margin: -16% 0 0 -3%;
}

@media (min-width: 900px) {
  .illustration img { height: 480px; }
  .split--story .section__title { margin-bottom: 32px; }
  .ornament {
    width: 240px;
    height: 200px;
    margin: 40px 0 0;
  }
  .ornament img { margin: -16.7% 0 0 -2.5%; }
}

/* --------------------------------------------------------------------------
   5. Excerpt and gallery
   -------------------------------------------------------------------------- */

.verse {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.5;
  color: var(--brown);
  text-wrap: pretty;
}

.gallery {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
}
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 999px; }

.gallery__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--cream);
}
.gallery__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery__caption { padding: 12px 16px 16px; }
.gallery__label {
  display: block;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.gallery__quote {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  text-wrap: pretty;
}

@media (min-width: 900px) {
  .verse { max-width: 820px; margin-inline: auto; margin-top: 32px; font-size: 34px; }
  .gallery { gap: 24px; margin-top: 64px; }
  .gallery__item { flex-basis: 340px; }
  .gallery__item img { height: 260px; }
  .gallery__caption { padding: 16px 20px 20px; }
  .gallery__label { font-size: 15px; }
  .gallery__quote { margin-top: 12px; font-size: 16px; }
}

/* --------------------------------------------------------------------------
   6. Where to buy
   -------------------------------------------------------------------------- */

.buy {
  display: grid;
  gap: 24px;
  padding: 28px 24px;
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  text-align: center;
}

.cover--small {
  max-width: 200px;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.price--buy { margin: 14px 0 24px; font-size: 32px; }

.specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
}
.specs__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sand);
}
.specs dt { color: var(--text-muted); }
.specs dd { font-weight: 700; color: var(--text); }

.btn--buy {
  font-size: 14px;
  letter-spacing: 0.14em;
  padding: 19px 20px;
}

@media (min-width: 900px) {
  .buy {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 48px;
    padding: 48px;
    align-items: center;
    text-align: left;
  }
  .cover--small { max-width: none; margin-inline: 0; }

  .price--buy { margin: 20px 0 24px; font-size: 36px; }

  .specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 48px;
    max-width: 560px;
    font-size: 18px;
  }
  .specs dd { white-space: nowrap; }

  .btn--buy {
    max-width: 220px;
    padding: 20px 40px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.16em;
  }
}

/* --------------------------------------------------------------------------
   7. Other books
   -------------------------------------------------------------------------- */

.books {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}
.book-card__year {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.book-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--brown);
}
.book-card__meta {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
}
.book-card__link {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 700px) {
  .books {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .book-card { padding: 32px; }
  .book-card__title { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   8. Comments: form, list and the moderation page
   -------------------------------------------------------------------------- */

.comments { max-width: 720px; }
.comments__intro {
  margin-top: 16px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

.comment-form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

.field { display: grid; gap: 8px; margin: 0; }
.field--trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.field__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}
.field__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}
.field__input:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
textarea.field__input { resize: vertical; min-height: 120px; }

.comment-form .btn { justify-self: start; }
.comment-form__note {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}
.comment-form__message:empty { display: none; }
.comment-form__message {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--green);
}
.comment-form__message--error { color: var(--rose); }

.comment-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.comment-list:empty { display: none; }

.comment {
  padding: 24px;
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}
.comment__body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown);
  text-wrap: pretty;
  white-space: pre-line;
}
.comment__meta {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Moderation page */
.moderation { max-width: 720px; }
.moderation__intro {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
}
.comment--pending { border-color: var(--rose); }
.comment__state {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.moderation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.moderation__action {
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--rose);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.moderation__action--approve {
  background: var(--rose);
  color: var(--cream);
}
.moderation__action:hover {
  background: var(--rose-light);
  border-color: var(--rose-light);
  color: var(--brown);
}

@media (min-width: 900px) {
  .comments__intro { font-size: 19px; }
  .comment-form { padding: 32px; margin-top: 48px; }
  .comment-list { margin-top: 48px; }
  .comment { padding: 32px; }
  .comment__body { font-size: 20px; }
}

/* --------------------------------------------------------------------------
   Text pages (privacy)
   -------------------------------------------------------------------------- */

.text-page { max-width: 720px; }
.text-page h2 {
  margin-top: 40px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--brown);
}
.text-page p,
.text-page li {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}
.text-page ul { margin-top: 8px; padding-left: 24px; list-style: disc; }
.text-page a { text-decoration: underline; text-underline-offset: 4px; }
.text-page__updated {
  margin-top: 48px;
  font-size: 15px;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .text-page h2 { font-size: 30px; }
  .text-page p,
  .text-page li { font-size: 19px; }
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--brown);
  color: var(--cream-dark);
  padding-block: 40px;
}
.footer a { color: var(--cream-dark); }
.footer a:hover { color: var(--cream); }

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.logo--footer,
.logo--footer:hover { color: var(--cream); }

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  line-height: 1;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 224, 195, 0.28);
  font-size: 15px;
  line-height: 1;
  color: rgba(243, 224, 195, 0.85);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a { color: rgba(243, 224, 195, 0.85); }
.footer__legal a:hover { color: var(--cream); }

@media (min-width: 900px) {
  .footer { padding-block: 64px; }
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
  }
  .footer__list { flex-direction: row; gap: 32px; font-size: 18px; }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 24px;
    font-size: 16px;
  }
  .footer__legal { gap: 24px; }
}
