/**
 * Components — confirmed mockup architecture
 * Visual shell only · no cart / checkout / COD logic
 */

/* Topbar */
.topbar {
  background: var(--topbar);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: var(--fs-12);
  line-height: 1.35;
  padding: 9px var(--gutter);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header__row {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 8px;
}

.header__brand,
a.header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.header__mark { width: 26px; height: 26px; flex-shrink: 0; }

.header__name {
  font-size: var(--fs-18);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg { width: var(--icon); height: var(--icon); }

.header__nav { display: none; }
.header__account { display: none; }
.header__cart { display: none; }

@media (min-width: 1280px) {
  .header__row {
    height: var(--header-h-d);
    grid-template-columns: auto 1fr auto;
    gap: 32px;
  }

  .header__menu { display: none; }

  .header__brand { justify-content: flex-start; }
  .header__mark { width: 30px; height: 30px; }
  .header__name { font-size: var(--fs-20); letter-spacing: 0.06em; }

  .header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .header__nav a {
    font-size: var(--fs-14);
    font-weight: 600;
    color: var(--ink-soft);
  }

  .header__nav a[aria-current="page"] {
    color: var(--ink);
  }

  .header__account,
  .header__cart { display: inline-flex; }

  .header__actions { gap: 4px; }
}

/* Hero — final KV plate (hero-desktop.webp; png backup retained), no product overlays */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #050208 0%, #0a0614 35%, #12081f 70%, #1a0a2e 100%);
  display: flex;
  flex-direction: column;
}

.hero__media {
  order: 2;
  position: relative;
  width: 100%;
  height: clamp(236px, 62vw, 300px);
  margin-top: -32px;
  background-image: url("../assets/kv/hero-desktop.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 82% 36%;
  pointer-events: none;
  flex-shrink: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 110px;
  background: linear-gradient(
    180deg,
    #050208 0%,
    rgba(10, 6, 20, 0.85) 28%,
    rgba(18, 8, 36, 0.35) 62%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__inner {
  order: 1;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 22px var(--gutter) 18px;
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  box-sizing: border-box;
  background: transparent;
}

.hero__copy {
  max-width: 18rem;
  min-width: 0;
}

.hero__eyebrow {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a6ff;
  margin-bottom: 8px;
}

.hero__title {
  font-size: clamp(1.42rem, 5.6vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero__sub {
  margin-top: 10px;
  font-size: var(--fs-12);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  max-width: 17.5rem;
}

.hero__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--cta-purple);
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(90, 40, 180, 0.35);
}

@media (min-width: 412px) and (max-width: 1279px) {
  .hero__title { font-size: clamp(1.55rem, 5.2vw, 1.9rem); }
  .hero__media { height: clamp(260px, 64vw, 320px); background-position: 80% 36%; margin-top: -40px; }
  .hero__inner { padding: 24px var(--gutter) 20px; }
}

@media (min-width: 1280px) {
  .hero {
    display: block;
    min-height: 720px;
    background: #050208;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    height: auto;
    margin-top: 0;
    order: unset;
    background-position: center center;
    background-size: cover;
  }

  .hero__media::before { display: none; }

  .hero__inner {
    order: unset;
    background: transparent;
    min-height: 720px;
    padding: 72px var(--gutter-d) 64px;
    align-items: center;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .hero__copy { max-width: 38rem; }

  .hero__eyebrow {
    font-size: var(--fs-12);
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(3.6rem, 4.6vw, 4.5rem);
    max-width: 10ch;
    line-height: 0.96;
  }

  .hero__sub {
    font-size: var(--fs-17, 1.0625rem);
    max-width: 32rem;
    margin-top: 18px;
  }

  .hero__cta {
    margin-top: 28px;
    height: 52px;
    padding: 0 28px;
    font-size: var(--fs-15);
  }
}

/* Service icons strip */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  text-align: center;
}

.trust__item {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.trust__icon {
  width: 26px;
  height: 26px;
  color: var(--ink);
}

.trust__icon svg { width: 100%; height: 100%; }

.trust__label {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--muted);
  max-width: 9ch;
}

@media (min-width: 412px) {
  .trust__label { font-size: var(--fs-11); max-width: 11ch; }
}

@media (min-width: 1280px) {
  .trust { padding-block: 28px; }
  .trust__grid { gap: 24px; }
  .trust__label { font-size: var(--fs-13); max-width: none; }
  .trust__icon { width: 30px; height: 30px; }
}

/* Popular categories */
.section--cats { background: var(--page); }

.section--cats .sec-head {
  margin-bottom: 14px;
}

.cat-rail-wrap {
  position: relative;
  margin-inline: calc(var(--gutter) * -1);
  overflow: hidden;
  max-width: 100%;
}

.cat-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--page) 90%);
}

.cat-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2.7);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-inline: var(--gutter);
  padding-right: calc(var(--gutter) + 20px);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cat-rail::-webkit-scrollbar { display: none; }

.cat {
  scroll-snap-align: start;
  background: #f4f4f4;
  border-radius: var(--r-md);
  padding: 12px 8px 10px;
  text-align: center;
  border: 0;
  box-shadow: none;
  min-width: 0;
}

.cat__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  overflow: hidden;
  background: #ebebeb;
  border-radius: 12px;
}

.cat__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
}

.cat__name {
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

@media (min-width: 1280px) {
  .section--cats .sec-head {
    margin-bottom: 32px;
  }

  .cat-rail-wrap {
    margin-inline: 0;
    overflow: visible;
    max-width: none;
  }

  .cat-rail-wrap::after { display: none; }

  .cat-rail {
    grid-auto-flow: unset;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-right: 0;
    gap: 18px;
  }

  .cat { padding: 18px 14px 16px; border-radius: var(--r-lg); }
  .cat__name { font-size: var(--fs-14); }
  .cat__media { margin-bottom: 10px; border-radius: 14px; }
}

/* Feature banners — final KV plates */
.section--banners { padding-top: 8px; }

.banner-pair {
  display: grid;
  gap: 12px;
}

.feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 210px;
  padding: 22px 18px;
  color: #fff;
  display: grid;
  align-items: center;
  box-sizing: border-box;
  background-color: #0a0612;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.feature--arrivals {
  background-image: url("../assets/kv/new-arrivals.webp");
  background-color: #080510;
  /* Far-right product crop only — baked typography stays off-canvas */
  background-size: 320% auto;
  background-position: 100% 62%;
  min-height: 230px;
  padding: 22px 18px;
}

.feature--arrivals::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  /* Solid left plate so no baked glyph fragments can show */
  background: linear-gradient(
    90deg,
    #080510 0%,
    #080510 64%,
    rgba(8, 5, 16, 0.97) 74%,
    rgba(8, 5, 16, 0.4) 84%,
    transparent 94%
  );
}

.feature--arrivals .feature__copy {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  background: none;
  max-width: 14rem;
}

.feature--arrivals .feature__hit {
  display: none;
}

.feature--flavor {
  background-image: url("../assets/kv/find-your-flavor.webp");
  background-color: #041412;
  background-position: 70% center;
}

.feature__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
  max-width: 14rem;
}

.feature__title {
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 12ch;
}

.feature__sub {
  font-size: var(--fs-12);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  max-width: 18ch;
}

.feature__btn {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: #fff;
  color: #111;
  font-size: var(--fs-12);
  font-weight: 700;
  margin-top: 4px;
}

@media (min-width: 1280px) {
  .banner-pair {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .feature {
    min-height: 360px;
    padding: 40px 36px;
    border-radius: var(--r-xl);
    background-position: center center;
  }

  .feature--arrivals {
    min-height: 360px;
    padding: 40px 36px;
    background-size: 280% auto;
    background-position: 100% 55%;
  }

  .feature--arrivals::before {
    background: linear-gradient(
      90deg,
      #080510 0%,
      #080510 58%,
      rgba(8, 5, 16, 0.96) 70%,
      rgba(8, 5, 16, 0.35) 82%,
      transparent 93%
    );
  }

  .feature--arrivals .feature__copy {
    max-width: 18rem;
  }

  .feature--flavor {
    background-position: center center;
  }

  .feature__copy { max-width: 18rem; }

  .feature__title { font-size: var(--fs-32); }
  .feature__sub { font-size: var(--fs-14); max-width: 22ch; }
  .feature__btn { height: 44px; font-size: var(--fs-14); padding: 0 18px; }
}

/* Product grid */
.grid-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

@media (min-width: 1280px) {
  .grid-products { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
}

.card {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(17, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

a.card,
a.cat {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card__media {
  aspect-ratio: 1 / 0.82;
  background: var(--media);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  box-sizing: border-box;
}

.card__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.card__meta {
  font-size: var(--fs-11);
  font-weight: 600;
  color: var(--faint);
  letter-spacing: 0.02em;
}

.card__title {
  font-size: var(--fs-13);
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3em * 2);
}

@media (min-width: 412px) and (max-width: 1279px) {
  .card__title { font-size: var(--fs-14); }
}

@media (min-width: 1280px) {
  .card { border-radius: var(--r-lg); }
  .card__media {
    aspect-ratio: 1 / 1;
  }
  .card__media img {
    padding: var(--media-inset);
  }
  .card__body { padding: 16px 16px 18px; gap: 6px; }
  .card__meta { font-size: var(--fs-12); }
  .card__title { font-size: var(--fs-15); line-height: 1.35; min-height: calc(1.35em * 2); }
}

/* Why us */
.why {
  background: transparent;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
  text-align: center;
}

.why__item { display: grid; gap: 8px; justify-items: center; }

.why__icon {
  width: 36px;
  height: 36px;
  color: var(--ink);
}

.why__icon svg { width: 100%; height: 100%; }

.why__title {
  font-size: var(--fs-13);
  font-weight: 700;
}

.why__text {
  font-size: var(--fs-12);
  color: var(--muted);
  line-height: 1.35;
  max-width: 16ch;
}

@media (min-width: 1280px) {
  .why__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .why__text { max-width: 18ch; }
}

/* Split category banners */
.split {
  display: grid;
  gap: 12px;
}

@media (min-width: 1280px) {
  .split { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* Newsletter */
.news {
  background: var(--pink);
  padding-block: 36px;
}

.news__inner {
  text-align: center;
  max-width: 420px;
  margin-inline: auto;
}

.news__title {
  font-size: var(--fs-24);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.news__sub {
  margin-top: 8px;
  font-size: var(--fs-13);
  color: var(--muted);
}

.news__form {
  margin-top: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17,17,17,0.04);
}

.news__form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--muted);
}

.news__form button {
  width: 48px;
  height: 48px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.news__form button svg { width: 18px; height: 18px; }

@media (min-width: 1280px) {
  .news { padding-block: 64px; }
  .news__inner { max-width: 520px; }
  .news__title { font-size: var(--fs-32); }
}


/* Brand story — final KV plate (brand-banner.webp; png backup retained) */
.brand-story {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050208;
  min-height: 380px;
}

.brand-story__media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/kv/brand-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 88% center;
  pointer-events: none;
}

.brand-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(5, 2, 8, 0.92) 0%,
    rgba(5, 2, 8, 0.82) 42%,
    rgba(5, 2, 8, 0.45) 68%,
    rgba(5, 2, 8, 0.12) 100%
  );
}

.brand-story__layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 380px;
  padding-block: 36px;
}

.brand-story__inner {
  display: grid;
  gap: 12px;
  max-width: 20rem;
}

/* Avoid duplicating baked VAPECOD plaque on the right of the plate */
.brand-story__eyebrow {
  display: none;
}

.brand-story__title {
  font-size: clamp(1.55rem, 5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.brand-story__text {
  font-size: var(--fs-14);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 20rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.brand-story__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 700;
  width: fit-content;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

@media (min-width: 1280px) {
  .brand-story { min-height: 520px; }

  .brand-story__media {
    background-position: center center;
  }

  .brand-story__media::after { display: none; }

  .brand-story__layout {
    min-height: 520px;
    padding-block: 72px;
  }

  .brand-story__inner {
    max-width: 38rem;
  }

  .brand-story__title {
    font-size: clamp(2.7rem, 3.3vw, 3.35rem);
    max-width: 14ch;
    text-shadow: none;
  }

  .brand-story__text {
    font-size: var(--fs-16);
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: none;
  }

  .brand-story__cta {
    height: 50px;
    padding: 0 24px;
    font-size: var(--fs-14);
    background: transparent;
  }
}

.brand-story__link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  width: fit-content;
}

/* Service / info band */
.service-band {
  background: var(--surface);
  padding-block: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-band .sec-head { justify-content: center; margin-bottom: 28px; }
.service-band .sec-head__title { text-align: center; }

@media (min-width: 1280px) {
  .service-band { padding-block: 72px; }
  .service-band .sec-head { margin-bottom: 40px; }
}

/* FAQ */
.faq {
  background: var(--page);
  padding-block: 40px;
}

.faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  list-style: none;
  cursor: default;
  padding: 18px 4px;
  font-size: var(--fs-15);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--faint);
  flex-shrink: 0;
}

.faq__item[open] summary::after { content: "\2013"; }

.faq__body {
  padding: 0 4px 18px;
  font-size: var(--fs-14);
  line-height: 1.55;
  color: var(--muted);
  max-width: 58ch;
}

@media (min-width: 1280px) {
  .faq { padding-block: 72px; }
  .faq__item summary { font-size: var(--fs-18); padding: 22px 4px; }
  .faq__body { font-size: var(--fs-15); padding-bottom: 22px; }
}

/* Footer */
.footer {
  margin-top: auto;
  background: var(--footer-m);
  color: #cfcfcf;
  padding: 44px 0 28px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.footer__brand {
  font-size: var(--fs-18);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: var(--fs-11);
  color: #fff;
}

.footer__acc {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__acc details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__acc summary {
  list-style: none;
  cursor: default;
  padding: 14px 0;
  font-size: var(--fs-14);
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.footer__acc summary::-webkit-details-marker { display: none; }
.footer__acc summary::after { content: "›"; font-size: 1.1rem; color: #888; }

.footer__acc ul {
  display: grid;
  gap: 10px;
  padding: 0 0 14px;
}

.footer__acc a {
  font-size: var(--fs-13);
  color: #9a9a9a;
}

.footer__desk { display: none; }

.footer__bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-12);
  color: #6a6a6a;
}

@media (min-width: 1280px) {
  .footer {
    background: var(--footer-d);
    color: var(--ink-soft);
    padding: 48px 0 24px;
  }

  .footer__top,
  .footer__acc { display: none; }

  .footer__desk {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
  }

  .footer__desk-brand {
    font-size: var(--fs-18);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .footer__desk-blurb {
    font-size: var(--fs-13);
    color: var(--muted);
    line-height: 1.45;
    max-width: 18rem;
  }

  .footer__desk h3 {
    font-size: var(--fs-12);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--ink);
  }

  .footer__desk ul { display: grid; gap: 10px; }
  .footer__desk a { font-size: var(--fs-13); color: var(--muted); }

  .footer__desk-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
  }

  .footer__desk-social span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-size: var(--fs-11);
  }

  .footer__bottom {
    border-top-color: var(--line);
    color: var(--faint);
  }
}
