:root {
  --lc-paper: #ffffff;
  --lc-wash: #fafafa;
  --lc-ink: #111111;
  --lc-ink-soft: #4a4a4a;
  --lc-muted: #6b6b6b;
  --lc-rule: #e4e4e4;
  --lc-rule-strong: #111111;
  --lc-accent: #d62828;
  --lc-shell: 1320px;
  --lc-gutter: clamp(20px, 5vw, 60px);
  --lc-band: clamp(52px, 7vw, 92px);
  --lc-gap: 8px;
  --lc-font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --lc-font-body: "Source Serif 4", "Times New Roman", Times, serif;
  --lc-radius-frame: 4px;
  --lc-radius-act: 7px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lc-paper);
  color: var(--lc-ink);
  font-family: var(--lc-font-body);
  font-size: 16px;
  line-height: 1.55;
  font-synthesis-weight: none;
}

h1, h2, h3, h4 {
  font-family: var(--lc-font-display);
  font-weight: 500;
  margin: 0;
  color: var(--lc-ink);
}

p { margin: 0; }

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

a { color: var(--lc-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--lc-accent);
  outline-offset: 3px;
}

.lc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lc-ink);
  color: var(--lc-paper);
  font-family: var(--lc-font-display);
  font-size: 12px;
  padding: 10px 16px;
  z-index: 60;
}
.lc-skip:focus { left: 12px; top: 12px; }

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

.lc-tag {
  font-family: var(--lc-font-display);
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

/* ---------- masthead ---------- */
.lc-masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lc-paper);
  border-bottom: 1px solid var(--lc-rule);
}

.lc-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
}

.lc-mark {
  font-family: var(--lc-font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--lc-ink);
  text-decoration: none;
  white-space: nowrap;
}
.lc-mark:hover { text-decoration: none; }
.lc-mark__choice { color: var(--lc-accent); }

.lc-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-nav__link {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--lc-ink);
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.lc-nav__link:hover {
  text-decoration: none;
  border-bottom-color: var(--lc-accent);
}

.lc-burger {
  display: none;
  width: 40px;
  height: 34px;
  border: 1px solid var(--lc-rule);
  border-radius: var(--lc-radius-act);
  background: var(--lc-paper);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.lc-burger__bars { display: block; width: 18px; height: 12px; position: relative; }
.lc-burger__bars::before,
.lc-burger__bars::after,
.lc-burger__bars span {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--lc-ink);
}
.lc-burger__bars::before { top: 0; }
.lc-burger__bars span { top: 5px; }
.lc-burger__bars::after { top: 10px; }

/* ---------- opening ---------- */
.lc-opening {
  padding-top: clamp(44px, 7vw, 86px);
  padding-bottom: var(--lc-band);
  text-align: center;
}

.lc-opening__eyebrow {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-muted);
  margin-bottom: 20px;
}

.lc-opening__title {
  font-size: clamp(38px, 7.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 500;
  max-width: 17ch;
  margin-inline: auto;
}
.lc-opening__title em {
  font-style: normal;
  color: var(--lc-accent);
}

.lc-opening__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--lc-ink-soft);
  max-width: 62ch;
  margin: 24px auto 0;
}

.lc-opening__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.lc-vetrina {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(10px, 1.6vw, 22px);
  width: 100%;
  margin-top: clamp(34px, 5vw, 60px);
  padding-block: clamp(20px, 2.6vw, 30px);
  border-top: 1px solid var(--lc-ink);
  border-bottom: 1px solid var(--lc-rule);
}

.lc-vetrina__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.lc-vetrina__item:hover { text-decoration: none; }
.lc-vetrina__item:hover .lc-vetrina__tag { color: var(--lc-accent); }

.lc-vetrina__icon {
  width: 100%;
  max-width: 76px;
  height: auto;
  border-radius: var(--lc-radius-frame);
}

.lc-vetrina__tag {
  font-family: var(--lc-font-display);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--lc-muted);
  text-align: center;
}

.lc-opening__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--lc-ink);
  margin-top: 8px;
}

/* ---------- actions ---------- */
.lc-act {
  font-family: var(--lc-font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--lc-radius-act);
  border: 1px solid var(--lc-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.lc-act:hover { text-decoration: none; }

.lc-act--solid {
  background: var(--lc-accent);
  border-color: var(--lc-accent);
  color: var(--lc-paper);
}
.lc-act--solid:hover { background: #b81f1f; border-color: #b81f1f; }

.lc-act--ghost {
  background: var(--lc-paper);
  color: var(--lc-ink);
}
.lc-act--ghost:hover { border-color: var(--lc-accent); color: var(--lc-accent); }

.lc-act__icon { width: 14px; height: 14px; flex: none; }

/* ---------- bands ---------- */
.lc-band {
  padding-block: var(--lc-band);
  border-top: 1px solid var(--lc-rule);
}
.lc-band--wash { background: var(--lc-wash); }

.lc-band__head { margin-bottom: clamp(28px, 4vw, 46px); }

.lc-band__kicker {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-accent);
  margin-bottom: 12px;
}

.lc-band__title {
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.012em;
}

.lc-band__note {
  margin-top: 14px;
  max-width: 68ch;
  color: var(--lc-ink-soft);
}

/* ---------- index (catalogo) ---------- */
.lc-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 34px);
  width: 100%;
}

.lc-entry {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.lc-entry__frame {
  border-radius: var(--lc-radius-frame);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--lc-wash);
}
.lc-entry__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-entry__strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--lc-ink);
}

.lc-entry__score {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--lc-accent);
  white-space: nowrap;
}

.lc-entry__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.lc-entry__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lc-radius-frame);
  flex: none;
}

.lc-entry__title {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.lc-entry__maker {
  font-family: var(--lc-font-display);
  font-size: 12px;
  color: var(--lc-muted);
  margin-top: 4px;
}

.lc-entry__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lc-ink-soft);
}

.lc-entry__link {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border-bottom: 1px solid var(--lc-accent);
  padding-bottom: 3px;
}
.lc-entry__link:hover { text-decoration: none; color: var(--lc-ink); border-bottom-color: var(--lc-ink); }
.lc-entry__link svg { width: 12px; height: 12px; }

/* ---------- route (come iniziare) ---------- */
.lc-route {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  width: 100%;
}

.lc-route__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.lc-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-top: 1px solid var(--lc-rule);
}
.lc-step:first-child { border-top: 1px solid var(--lc-ink); }

.lc-step__num {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lc-accent);
  padding-top: 4px;
}

.lc-step__title {
  font-size: 18px;
  letter-spacing: -0.008em;
  font-weight: 600;
}

.lc-step__text {
  margin-top: 6px;
  font-size: 15px;
  color: var(--lc-ink-soft);
}

.lc-route__aside {
  width: 100%;
  border: 1px solid var(--lc-ink);
  border-radius: var(--lc-radius-frame);
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--lc-paper);
}

.lc-facts__head {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.lc-facts { margin: 6px 0 0; }

.lc-facts__row {
  border-top: 1px solid var(--lc-rule);
  padding-block: 14px;
}
.lc-facts__row:last-child { padding-bottom: 2px; }

.lc-facts__label {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-accent);
}

.lc-facts__text {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--lc-ink-soft);
}

/* ---------- selects ---------- */
.lc-selects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 34px);
  width: 100%;
}

.lc-pick__frame {
  border-radius: var(--lc-radius-frame);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--lc-wash);
}
.lc-pick__frame img { width: 100%; height: 100%; object-fit: cover; }

.lc-pick__label {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lc-muted);
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--lc-ink);
}

.lc-pick__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.008em;
  margin-top: 10px;
}

.lc-pick__text {
  margin-top: 8px;
  font-size: 15px;
  color: var(--lc-ink-soft);
}

/* ---------- voices ---------- */
.lc-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
  width: 100%;
}

.lc-voice {
  border-top: 1px solid var(--lc-ink);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.lc-voice__game {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-accent);
}

.lc-voice__quote {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lc-ink);
}

.lc-voice__by {
  margin-top: 14px;
  font-family: var(--lc-font-display);
  font-size: 12px;
  color: var(--lc-ink);
}

.lc-voice__source {
  font-family: var(--lc-font-display);
  font-size: 12px;
  color: var(--lc-muted);
  margin-top: 3px;
}

/* ---------- ledger (numeri) ---------- */
.lc-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  width: 100%;
}

.lc-ledger__item {
  border-top: 1px solid var(--lc-ink);
  padding-top: 14px;
}

.lc-ledger__value {
  font-family: var(--lc-font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lc-accent);
  font-weight: 500;
}

.lc-ledger__label {
  margin-top: 10px;
  font-size: 15px;
  color: var(--lc-ink-soft);
}

/* ---------- inquiry (form) ---------- */
.lc-inquiry {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  width: 100%;
}

.lc-inquiry__side p { color: var(--lc-ink-soft); }
.lc-inquiry__side p + p { margin-top: 14px; }

.lc-inquiry__form { width: 100%; }

.lc-field { display: block; width: 100%; margin-bottom: 18px; }

.lc-field__label {
  display: block;
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-muted);
  margin-bottom: 8px;
}

.lc-field__input {
  width: 100%;
  font-family: var(--lc-font-body);
  font-size: 16px;
  color: var(--lc-ink);
  background: var(--lc-paper);
  border: 1px solid var(--lc-rule);
  border-radius: var(--lc-radius-act);
  padding: 13px 14px;
}
.lc-field__input:focus {
  border-color: var(--lc-ink);
  outline: 2px solid var(--lc-accent);
  outline-offset: 2px;
}

.lc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lc-ink-soft);
  margin-bottom: 18px;
}
.lc-consent input {
  margin: 3px 0 0;
  width: 16px;
  height: 16px;
  accent-color: var(--lc-accent);
  flex: none;
}

.lc-inquiry__note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lc-muted);
  border-left: 2px solid var(--lc-accent);
  padding-left: 12px;
}

.lc-inquiry__done {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--lc-ink);
  border-radius: var(--lc-radius-frame);
  padding: 14px 16px;
  font-size: 15px;
}
.lc-inquiry__done.is-visible { display: block; }

/* ---------- queries (faq) ---------- */
.lc-queries {
  width: 100%;
  border-top: 1px solid var(--lc-ink);
}

.lc-query { border-bottom: 1px solid var(--lc-rule); width: 100%; }

.lc-query__button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--lc-font-display);
  font-size: 17px;
  letter-spacing: -0.008em;
  color: var(--lc-ink);
  font-weight: 500;
}

.lc-query__sign {
  flex: none;
  width: 14px;
  height: 14px;
  position: relative;
  margin-top: 6px;
}
.lc-query__sign::before,
.lc-query__sign::after {
  content: "";
  position: absolute;
  background: var(--lc-accent);
  transition: transform .2s ease;
}
.lc-query__sign::before { left: 0; top: 6px; width: 14px; height: 1.5px; }
.lc-query__sign::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
.lc-query__button[aria-expanded="true"] .lc-query__sign::after { transform: scaleY(0); }

.lc-query__panel {
  display: none;
  padding: 0 0 22px;
  max-width: 82ch;
  color: var(--lc-ink-soft);
  font-size: 15px;
}
.lc-query__panel.is-open { display: block; }

/* ---------- colophon ---------- */
.lc-colophon {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  width: 100%;
}

.lc-colophon__text p { color: var(--lc-ink-soft); }
.lc-colophon__text p + p { margin-top: 16px; }
.lc-colophon__text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 26px;
  letter-spacing: -0.008em;
}
.lc-colophon__text h3 + p { margin-top: 8px; }

.lc-colophon__aside {
  width: 100%;
  border-top: 1px solid var(--lc-ink);
  padding-top: 18px;
}

.lc-tenets__head {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.lc-tenets {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.lc-tenets__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding-block: 14px;
  border-top: 1px solid var(--lc-rule);
}

.lc-tenets__num {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lc-accent);
  padding-top: 3px;
}

.lc-tenets__text {
  font-size: 15px;
  color: var(--lc-ink-soft);
}

/* ---------- baseboard ---------- */
.lc-baseboard {
  border-top: 1px solid var(--lc-ink);
  padding-block: clamp(40px, 5vw, 64px) 28px;
}

.lc-baseboard__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
}

.lc-baseboard__blurb {
  margin-top: 14px;
  font-size: 15px;
  color: var(--lc-ink-soft);
  max-width: 46ch;
}

.lc-baseboard__heading {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lc-muted);
  margin-bottom: 14px;
}

.lc-baseboard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-baseboard__link {
  font-family: var(--lc-font-display);
  font-size: 13px;
  color: var(--lc-ink);
  text-decoration: none;
}
.lc-baseboard__link:hover { color: var(--lc-accent); text-decoration: none; }

.lc-baseboard__mail {
  font-family: var(--lc-font-display);
  font-size: 13px;
}

.lc-baseboard__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 52px);
  padding-top: 16px;
  border-top: 1px solid var(--lc-rule);
  font-family: var(--lc-font-display);
  font-size: 12px;
  color: var(--lc-muted);
}

/* ---------- cookie bar / to top ---------- */
.lc-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: var(--lc-paper);
  border-top: 1px solid var(--lc-ink);
  display: none;
}
.lc-cookiebar.is-visible { display: block; }

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

.lc-cookiebar__text {
  font-size: 14px;
  color: var(--lc-ink-soft);
  max-width: 70ch;
}

.lc-cookiebar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.lc-uptop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 42px;
  height: 42px;
  border-radius: var(--lc-radius-act);
  border: 1px solid var(--lc-ink);
  background: var(--lc-paper);
  color: var(--lc-ink);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.lc-uptop.is-visible { display: flex; }
.lc-uptop svg { width: 16px; height: 16px; }
.lc-uptop:hover { border-color: var(--lc-accent); color: var(--lc-accent); }

/* ---------- legal pages ---------- */
.lc-paper { padding-block: clamp(40px, 6vw, 76px); }

.lc-paper__title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lc-paper__updated {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--lc-ink);
}

.lc-paper__lead {
  margin-top: 22px;
  font-size: 17px;
  color: var(--lc-ink-soft);
  max-width: 74ch;
}

.lc-paper__body { margin-top: clamp(28px, 4vw, 44px); }
.lc-paper__body h2 {
  font-size: clamp(21px, 2.6vw, 27px);
  letter-spacing: -0.01em;
  margin-top: 38px;
}
.lc-paper__body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
}
.lc-paper__body p { margin-top: 12px; max-width: 82ch; color: var(--lc-ink-soft); }
.lc-paper__body ul { margin: 12px 0 0; padding-left: 20px; max-width: 82ch; color: var(--lc-ink-soft); }
.lc-paper__body li { margin-top: 8px; }
.lc-paper__body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
}
.lc-paper__body th,
.lc-paper__body td {
  text-align: left;
  border-bottom: 1px solid var(--lc-rule);
  padding: 10px 12px 10px 0;
  vertical-align: top;
  color: var(--lc-ink-soft);
}
.lc-paper__body th {
  font-family: var(--lc-font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-ink);
  border-bottom-color: var(--lc-ink);
}
.lc-paper__back { margin-top: 40px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .lc-index { grid-template-columns: repeat(2, 1fr); }
  .lc-selects { grid-template-columns: repeat(2, 1fr); }
  .lc-voices { grid-template-columns: repeat(2, 1fr); }
  .lc-ledger { grid-template-columns: repeat(2, 1fr); }
  .lc-route,
  .lc-inquiry,
  .lc-colophon { grid-template-columns: 1fr; }
  .lc-baseboard__grid { grid-template-columns: 1fr 1fr; }
  .lc-vetrina { grid-template-columns: repeat(4, 1fr); row-gap: 22px; }
}

@media (max-width: 900px) {
  .lc-burger { display: inline-flex; }
  .lc-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--lc-paper);
    border-bottom: 1px solid var(--lc-ink);
    display: none;
    padding: 8px var(--lc-gutter) 20px;
  }
  .lc-nav.is-open { display: block; }
  .lc-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .lc-nav__link {
    font-size: 15px;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--lc-rule);
  }
  .lc-masthead__inner { position: relative; }
}

@media (max-width: 700px) {
  .lc-index { grid-template-columns: 1fr; }
  .lc-selects { grid-template-columns: 1fr; }
  .lc-voices { grid-template-columns: 1fr; }
  .lc-baseboard__grid { grid-template-columns: 1fr; }
  .lc-vetrina { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .lc-step { grid-template-columns: 40px 1fr; gap: 12px; }
  .lc-cookiebar__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .lc-ledger { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .lc-query__sign::before,
  .lc-query__sign::after { transition: none; }
}
