/* ==========================================================
   KONCEPT PRIME
   Ndrysho ngjyrat vetëm këtu.
   ========================================================== */
:root {
  --gold: #d79b16;
  --gold-light: #f0b52a;
  --navy: #0d1c2c;
  --navy-2: #15283b;
  --black: #0b0c0e;
  --black-soft: #15171a;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gray: #71767c;
  --border: #e2e2df;

  --header-height: 82px;
  --radius: 4px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* ==========================================================
   RESET
   ========================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8, 10, 12, 0.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  transition: .25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 10, 12, 0.985);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative;
}

.brand-mark span {
  display: block;
  transform: skewY(-28deg);
  transform-origin: bottom;
}

.mark-left {
  width: 11px;
  height: 32px;
  background: var(--white);
}

.mark-mid {
  width: 11px;
  height: 43px;
  background: var(--gold);
}

.mark-right {
  width: 13px;
  height: 25px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.8);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--white);
  letter-spacing: .07em;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy strong span {
  color: var(--gold-light);
}

.brand-copy small {
  color: rgba(255,255,255,.75);
  font-size: 8px;
  letter-spacing: .20em;
  font-weight: 700;
  margin-top: 6px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  height: 100%;
}

.main-nav > a,
.nav-drop-btn {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}

.main-nav > a::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transition: .25s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-drop-btn:hover {
  color: var(--gold-light);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-drop-btn:hover::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 180px;
  background: var(--black-soft);
  border-top: 2px solid var(--gold);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.nav-drop-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,.04);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.phone-link,
.lang {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.phone-link {
  color: var(--gold-light);
}

.phone-link span {
  color: var(--white);
  margin-left: 5px;
}

.lang i {
  font-style: normal;
  color: rgba(255,255,255,.4);
  margin: 0 5px;
}

.menu-toggle {
  display: none;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 720px;
  height: min(780px, 92vh);
  position: relative;
  overflow: hidden;
  background: var(--black);
  margin-top: 0;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  background:
    linear-gradient(to right, rgba(6,9,12,.78) 0%, rgba(6,9,12,.45) 45%, rgba(6,9,12,.16) 100%),
    var(--bg) center/cover no-repeat;
  transition:
    opacity .8s ease,
    visibility .8s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.12)),
    linear-gradient(to top, rgba(0,0,0,.32), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-height);
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  color: var(--gold-light);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 115px);
  line-height: .88;
  letter-spacing: -.035em;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--white);
  text-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.hero-slide:nth-child(2) h1 span,
.hero-slide:nth-child(3) h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 560px;
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 30px rgba(215,155,22,.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.12);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.hero-side-note {
  align-self: flex-end;
  margin-bottom: 105px;
  max-width: 260px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--white);
}

.hero-side-note strong {
  display: block;
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-side-note span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 52%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.2);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  transition: .2s ease;
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 2px rgba(0,0,0,.18);
}

.hero-dots button.active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 20px;
}

/* ==========================================================
   SECTION HEADING
   ========================================================== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading > span,
.mini-title {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
}

.section-heading h2 {
  margin-top: 4px;
  font-size: clamp(32px, 3.1vw, 48px);
  letter-spacing: -.03em;
  font-weight: 800;
}

.heading-line {
  width: 70px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 35px rgba(0,0,0,.06);
  overflow: hidden;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-photo {
  height: 270px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25), transparent 50%);
}

.service-photo-skele {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=82");
}

.service-photo-ndertim {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1000&q=82");
}

.service-photo-moler {
  background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1000&q=82");
}

.service-icon {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: -28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border: 4px solid var(--white);
  font-size: 28px;
  font-weight: 800;
}

.service-body {
  padding: 43px 28px 28px;
}

.service-body h3 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 20px;
}

.service-body ul {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.service-body li {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}

.service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.text-link {
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.text-link span {
  color: var(--gold);
  margin-left: 8px;
  transition: .2s ease;
}

.text-link:hover span {
  margin-left: 13px;
}

/* ==========================================================
   STATS
   ========================================================== */
.stats-section {
  background: linear-gradient(135deg, #0d0e10, #17191c);
  color: var(--white);
}

.stats-grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  font-size: 42px;
  color: var(--white);
  opacity: .85;
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-size: 29px;
  line-height: 1;
}

.stat small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  margin-top: 7px;
  letter-spacing: .04em;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  min-height: 530px;
  background:
    linear-gradient(to top, rgba(12,25,38,.18), transparent 55%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=84")
    center/cover;
  position: relative;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--gold);
  color: var(--black);
  width: 160px;
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.experience-badge strong {
  font-size: 40px;
  line-height: 1;
}

.experience-badge span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
}

.about-copy h2 {
  margin: 10px 0 24px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.about-copy h2 em {
  font-style: normal;
  color: var(--gold);
}

.about-copy p {
  color: #5c6267;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 27px 0 30px;
  font-size: 13px;
  font-weight: 700;
}

.about-points b {
  color: var(--gold);
  margin-right: 8px;
}

/* ==========================================================
   PROJECTS
   ========================================================== */
.projects-section {
  background: #fff;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -15px 0 34px;
  flex-wrap: wrap;
}

.project-filters button {
  min-width: 122px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid #cfd1d3;
  font-size: 10px;
  font-weight: 900;
  transition: .2s ease;
}

.project-filters button:hover,
.project-filters button.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #ddd;
  transition: .2s ease;
}

.project-card.hide {
  display: none;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  transform: translateY(22px);
  transition: .3s ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay span {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
}

.project-overlay strong {
  font-size: 18px;
}

.projects-more {
  text-align: center;
  margin-top: 35px;
}

.btn-project {
  color: var(--black);
  border-color: var(--gold);
  min-width: 330px;
}

.btn-project:hover {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

/* ==========================================================
   CTA
   ========================================================== */
.cta-section {
  min-height: 315px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    url("https://images.unsplash.com/photo-1508450859948-4e04fabaa4ea?auto=format&fit=crop&w=2200&q=82")
    center 55%/cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(35,24,9,.72));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--black);
  font-size: 22px;
}

.cta-content h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.1;
}

.cta-content h2 span {
  color: var(--gold-light);
}

.cta-content p {
  margin: 8px 0 19px;
  font-size: 13px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  color: rgba(255,255,255,.78);
  background: #0d0f11;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .85fr 1.15fr;
  gap: 55px;
  padding-bottom: 46px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255,255,255,.63);
  font-size: 12px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 11px;
}

.socials a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 11px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.footer-column a {
  font-size: 12px;
}

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

.footer-contact {
  gap: 7px;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,.48);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
  .header-tools {
    display: none;
  }

  .main-nav {
    gap: 22px;
  }

  .brand {
    min-width: 210px;
  }

  .hero-side-note {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 570px;
    width: 100%;
    justify-self: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 110px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .about-grid {
    gap: 42px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.15);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: .2s ease;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: #0b0d0f;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-drop-btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav > a::after,
  .nav-drop-btn::after {
    display: none;
  }

  .nav-dropdown {
    height: auto;
  }

  .nav-drop-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: #111418;
    padding-left: 18px;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: block;
  }

  .hero {
    min-height: 670px;
    height: 88vh;
  }

  .hero-content {
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(54px, 13vw, 84px);
  }

  .hero-copy {
    max-width: 94%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-arrow {
    top: auto;
    bottom: 22px;
    width: 38px;
    height: 38px;
  }

  .hero-prev {
    left: 16px;
  }

  .hero-next {
    right: 16px;
  }

  .hero-dots {
    bottom: 35px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .service-photo {
    height: 310px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 430px;
  }

  .experience-badge {
    right: 18px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 51px;
    line-height: .95;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 290px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-photo {
    height: 240px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .project-card {
    height: 270px;
  }

  .btn-project {
    min-width: 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 10px;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
