/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --navy-900:   #0A1A35;
  --navy-800:   #0F2447;
  --navy-700:   #17315F;
  --navy-50:    #F3F5FA;
  --gold:       #C9A961;
  --gold-soft:  #E4D4A8;
  --text:       #1A2540;
  --text-muted: #566282;
  --border:     #E4E8F1;

  --container-max: 1200px;
  --container-pad: 32px;
  --section-pad:   100px;
  --radius:        8px;
  --radius-lg:     16px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: inherit;
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─────────────────────────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease,
              color 0.22s ease, transform 0.22s var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold filled — hero primary */
.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* Gold filled — CTA section */
.btn--gold-solid {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  font-size: 16px;
  padding: 16px 36px;
}
.btn--gold-solid:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* Outline white — hero secondary */
.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Outline gold — nav CTA */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 22px;
  font-size: 13px;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy-900);
}

/* ─────────────────────────────────────────────────────────────
   EYEBROW
───────────────────────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────────────────────────── */
.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy-900);
  margin-bottom: 56px;
  max-width: 640px;
  letter-spacing: -0.02em;
}
.section-heading--light { color: #ffffff; }

/* ─────────────────────────────────────────────────────────────
   TAGS
───────────────────────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(201, 169, 97, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.25);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────────
   FADE-UP ANIMATION
───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease,
              padding 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 26, 53, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 169, 97, 0.18);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav__logo-dot { color: var(--gold); }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__link:hover { color: #ffffff; }
.nav__cta { margin-left: 8px; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-900);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(201, 169, 97, 0.07) 0%,
    transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(23, 49, 95, 0.8) 0%,
    transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 820px; }
.hero .eyebrow { margin-bottom: 28px; }
.hero__headline {
  font-size: clamp(40px, 6vw, 68px);
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.hero__headline em {
  font-style: italic;
  color: rgba(243, 245, 250, 0.55);
}
.hero__lede {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Stats bar */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; }
.stat__number {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__number sup {
  font-family: 'Inter', sans-serif;
  font-size: 0.42em;
  color: var(--gold);
  vertical-align: super;
  font-weight: 700;
  line-height: 0;
}
.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  line-height: 1.4;
  max-width: 140px;
}

/* ─────────────────────────────────────────────────────────────
   APPROACH / VALUE PROPS
───────────────────────────────────────────────────────────── */
.approach {
  background: var(--navy-50);
  padding: var(--section-pad) 0;
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(10, 26, 53, 0.1);
}
.value-card__index {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.value-card__title {
  font-size: 22px;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.value-card__subtitle {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}
.value-card__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────────────── */
.services {
  background: var(--navy-900);
  padding: var(--section-pad) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.service-card {
  background: var(--navy-900);
  padding: 44px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.22s ease;
}
.service-card:hover { background: var(--navy-800); }
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.2);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.service-card__title {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────────
   EXPERIENCE
───────────────────────────────────────────────────────────── */
.experience {
  background: var(--navy-800);
  padding: var(--section-pad) 0;
}
.exp__list {
  display: flex;
  flex-direction: column;
}
.exp__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.exp__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.exp__meta { padding-top: 2px; }
.exp__company {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.exp__period {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.exp__role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  line-height: 1.5;
}
.exp__headline {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.exp__content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
  margin-bottom: 14px;
}
.exp__content p:last-of-type { margin-bottom: 0; }
.experience .tag {
  background: rgba(201, 169, 97, 0.08);
  color: rgba(228, 212, 168, 0.85);
  border-color: rgba(201, 169, 97, 0.18);
}

/* ─────────────────────────────────────────────────────────────
   CREDENTIALS
───────────────────────────────────────────────────────────── */
.credentials {
  background: #ffffff;
  padding: var(--section-pad) 0;
}
.credentials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.credentials__text .section-heading { margin-bottom: 20px; }
.credentials__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 380px;
}
.credentials__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cred-card {
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--navy-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.cred-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(10, 26, 53, 0.07);
}
.cred-card__title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--navy-900);
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.3;
}
.cred-card__issuer {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────────
   HOW I WORK
───────────────────────────────────────────────────────────── */
.how-i-work {
  background: var(--navy-50);
  padding: var(--section-pad) 0;
}
.hiw__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hiw__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hiw__number {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.65;
  letter-spacing: -0.03em;
}
.hiw__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--navy-900);
  font-weight: 600;
}
.hiw__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--navy-900);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-section__heading {
  font-size: clamp(32px, 4vw, 52px);
  color: #ffffff;
  max-width: 680px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-section__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 8px;
}
.cta-section__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 12px 0 8px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.22s;
  font-weight: 400;
}
.contact-link:hover { color: var(--gold); }
.contact-link svg { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.contact-form__optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 16px;
  border-radius: 8px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  outline: none;
  appearance: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 108px;
}

.contact-form .btn {
  align-self: flex-start;
  width: auto;
}

.contact-form__success {
  max-width: 480px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--gold-soft);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-900);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.footer__langs {
  display: flex;
  gap: 8px;
}
.lang-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .approach__grid { grid-template-columns: repeat(2, 1fr); }
  .credentials__inner { grid-template-columns: 1fr; gap: 52px; }
  .hiw__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .hero__stats { gap: 0; }
  .stat { padding: 0 24px; }
  .stat:first-child { padding-left: 0; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 768px
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad:   72px;
    --container-pad: 24px;
  }

  /* Nav */
  .nav__menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    padding: 40px 24px;
    gap: 28px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__menu.open { display: flex; }
  .nav__menu.open .nav__link { font-size: 20px; color: rgba(255, 255, 255, 0.85); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 64px; min-height: auto; }
  .hero__inner { gap: 56px; }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding-top: 40px;
  }
  .stat {
    padding: 0 !important;
    border-right: none !important;
  }
  .stat:nth-child(odd) {
    padding-right: 24px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Experience */
  .exp__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .exp__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    align-items: baseline;
  }
  .exp__company { width: 100%; margin-bottom: 4px; }

  /* Credentials */
  .credentials__body { max-width: 100%; }

  /* CTA */
  .cta-section__contacts { flex-direction: column; gap: 18px; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 480px
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --container-pad: 20px; }

  .approach__grid { grid-template-columns: 1fr; }
  .hiw__grid { grid-template-columns: 1fr; gap: 28px; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn { justify-content: center; }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat:nth-child(odd) { padding-right: 16px !important; }

  .value-card { padding: 32px 24px; }
  .service-card { padding: 32px 24px; flex-direction: column; gap: 16px; }

  .contact-form { max-width: 100%; }
  .contact-form .btn { align-self: stretch; justify-content: center; }
}
