/* ── Design Tokens ── */
:root {
  /* Brand Colors */
  --navy:        #1A2B4A;
  --navy-dark:   #111c30;
  --navy-mid:    #243660;
  --gold:        #C9A84C;
  --gold-light:  #F5E9C0;
  --gold-dark:   #a8832e;
  --bg:          #F5F4F0;
  --surface:     #FFFFFF;
  --surface-2:   #F0EFE9;

  --color-text:       #1A2B4A;
  --color-text-muted: #5a6a82;
  --color-text-faint: #94a3b8;
  --color-bg:         #F5F4F0;
  --color-gold:       #C9A84C;
  --color-navy:       #1A2B4A;

  /* Type Scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  /* Layout */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,43,74,0.08);
  --shadow-md: 0 4px 16px rgba(26,43,74,0.10);
  --shadow-lg: 0 12px 40px rgba(26,43,74,0.14);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 43, 74, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.nav__logo-text span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-full, 9999px);
  font-size: var(--text-sm) !important;
}

.nav__cta:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.nav__mobile-btn {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/printer_front.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,43,74,0.92) 0%,
    rgba(26,43,74,0.75) 50%,
    rgba(26,43,74,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-20), 10vw, var(--space-24));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 9999px;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: var(--space-6);
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: 9999px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
  margin-top: var(--space-1);
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats {
  background: var(--gold);
  padding-block: var(--space-6);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.stats__item-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stats__item-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(26,43,74,0.7);
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--light {
  background: var(--bg);
}

.section--white {
  background: var(--surface);
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section--dark .section__title { color: #fff; }
.section--light .section__title,
.section--white .section__title { color: var(--navy); }

.section__lead {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 60ch;
}

.section--dark .section__lead { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════
   FEATURES (핵심 특징 3가지)
══════════════════════════════════════ */
.features {
  background: var(--navy);
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1),
              box-shadow 240ms cubic-bezier(0.16,1,0.3,1),
              border-color 240ms;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.feature-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  position: absolute;
  top: var(--space-8);
  right: var(--space-8);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
}

.feature-card__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PRODUCT COMPARE
══════════════════════════════════════ */
.products {
  background: var(--bg);
}

.products__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  align-items: stretch;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1),
              border-color 240ms,
              box-shadow 240ms;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  border-color: var(--gold);
}

.product-card__badge {
  background: var(--gold);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2) var(--space-4);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  background: var(--surface-2);
}

.product-card__body {
  padding: var(--space-8);
}

.product-card__model {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.product-card__tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 9999px;
  padding: 2px var(--space-3);
  margin-bottom: var(--space-6);
}

.product-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.product-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--surface-2);
  font-size: var(--text-sm);
  gap: var(--space-4);
}

.product-card__spec:last-child {
  border-bottom: none;
}

.spec-key {
  color: var(--color-text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.spec-val {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

/* ══════════════════════════════════════
   SPEC TABLE (비교표)
══════════════════════════════════════ */
.spec-table {
  background: var(--surface);
}

.spec-table__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: var(--text-sm);
}

table.compare thead {
  background: var(--navy);
  color: #fff;
}

table.compare thead th {
  padding: var(--space-5) var(--space-6);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  white-space: nowrap;
}

table.compare thead th:first-child {
  text-align: left;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  font-family: var(--font-body);
}

table.compare thead th.col-gold {
  color: var(--gold);
}

table.compare tbody tr {
  border-bottom: 1px solid var(--surface-2);
}

table.compare tbody tr:last-child {
  border-bottom: none;
}

table.compare tbody tr:hover {
  background: var(--bg);
}

table.compare tbody td {
  padding: var(--space-4) var(--space-6);
  text-align: center;
  color: var(--navy);
}

table.compare tbody td:first-child {
  text-align: left;
  color: var(--color-text-muted);
  font-weight: 500;
}

table.compare .check {
  color: var(--gold-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ══════════════════════════════════════
   USE CASES
══════════════════════════════════════ */
.usecase {
  background: var(--navy);
}

.usecase__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.usecase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.usecase-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: background 200ms, border-color 200ms, transform 200ms;
}

.usecase-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.usecase-item__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
  line-height: 1;
}

.usecase-item__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.usecase-item__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PHOTO SECTION
══════════════════════════════════════ */
.photo-section {
  background: var(--bg);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.photo-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.photo-section__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-section__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.photo-section__badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: rgba(26,43,74,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.photo-section__text { padding-inline: var(--space-6); }

.photo-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.photo-section__list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.photo-section__list-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.photo-section__list-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2.5;
}

.photo-section__list-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.photo-section__list-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%,
    rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.cta-section__title em {
  font-style: normal;
  color: var(--gold);
}

.cta-section__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
  line-height: 1.7;
}

.cta-section__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 300px;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  text-decoration: none;
  transition: background 200ms, border-color 200ms, transform 200ms;
}

.contact-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.contact-card__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: var(--text-base);
  color: #fff;
  font-weight: 700;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding-block: var(--space-12);
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer__logo span { color: var(--gold); }

.footer__copy {
  font-size: var(--text-xs);
  line-height: 1.6;
  max-width: 40ch;
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.16,1,0.3,1),
              transform 600ms cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ══════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════ */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
}
.nav__mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .usecase__grid  { grid-template-columns: repeat(2, 1fr); }
  .photo-section__inner { grid-template-columns: 1fr; }
  .photo-section__text  { padding-inline: 0; }
  .cta-section__inner   { grid-template-columns: 1fr; }
  .cta-section__cards   { min-width: auto; flex-direction: row; flex-wrap: wrap; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
  .nav__mobile-btn { display: block; }
}

@media (max-width: 600px) {
  .usecase__grid       { grid-template-columns: repeat(2, 1fr); }
  .cta-section__cards  { flex-direction: column; }
  .stats__grid         { grid-template-columns: 1fr; gap: var(--space-3); }
  .hero__title         { max-width: 20ch; }
  .footer__inner       { flex-direction: column; text-align: center; }
  .footer__links       { justify-content: center; }
}
