/* ============================================
   ON GbR – Immobilien- & Gartenservice
   Design System & Styles
   ============================================

   Fonts: Inter (lokal einbinden via @font-face in Produktion)
   @font-face {
     font-family: 'Inter';
     src: url('../fonts/Inter-Regular.woff2') format('woff2');
     font-weight: 400; font-display: swap;
   }
   @font-face {
     font-family: 'Inter';
     src: url('../fonts/Inter-Medium.woff2') format('woff2');
     font-weight: 500; font-display: swap;
   }
   @font-face {
     font-family: 'Inter';
     src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
     font-weight: 600; font-display: swap;
   }
   @font-face {
     font-family: 'Inter';
     src: url('../fonts/Inter-Bold.woff2') format('woff2');
     font-weight: 700; font-display: swap;
   }
   ============================================ */

:root {
  --color-primary:   #1F4D2C;
  --color-accent:    #5BAE3A;
  --color-text:      #1A1A1A;
  --color-muted:     #6B6B6B;
  --color-bg:        #F5F5F5;
  --color-white:     #FFFFFF;
  --color-border:    #E8E8E8;

  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max-w: 1200px;
  --pad-section: 4rem;

  --r-btn:  8px;
  --r-card: 12px;
  --shadow: 0 4px 12px rgba(0,0,0,.08);
}

@media (min-width: 768px) {
  :root { --pad-section: 6rem; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--color-text); background: var(--color-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ── Typography ── */
h1 { font-size: 2.5rem; line-height: 1.15; font-weight: 700; color: var(--color-primary); }
h2 { font-size: 2rem;   line-height: 1.2;  font-weight: 700; color: var(--color-primary); }
h3 { font-size: 1.5rem; line-height: 1.3;  font-weight: 600; color: var(--color-primary); }
h4 { font-size: 1.125rem; font-weight: 600; color: var(--color-primary); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section          { padding: var(--pad-section) 0; }
.section--gray    { background: var(--color-bg); }
.section--dark    { background: var(--color-primary); color: #fff; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

/* ── Grid ── */
.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ── Section header ── */
.section-hd          { text-align: center; margin-bottom: 3rem; }
.section-hd h2       { margin-bottom: 1rem; }
.section-hd p        { font-size: 1.125rem; color: var(--color-muted); max-width: 620px; margin: 0 auto; }
.section-hd--left    { text-align: left; }
.section-hd--left p  { margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
  text-decoration: none;
  line-height: 1;
}
.btn--primary   { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: #163820; }
.btn--secondary { background: #fff; color: var(--color-primary); border-color: var(--color-primary); }
.btn--secondary:hover { background: #f0f7f2; }
.btn--accent    { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #4a9630; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }

.card__img  { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card__tag  {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.card__tag--garden     { background: #e8f5e0; color: #2c7a1c; }
.card__tag--hausmeister { background: #ddeeff; color: #1a4d7a; }
.card__tag--sonstiges  { background: #f5e8d0; color: #7a4d1a; }

.card__title { font-size: 1.125rem; font-weight: 700; color: var(--color-primary); margin-bottom: .5rem; }
.card__meta  { font-size: .8125rem; color: var(--color-muted); margin-bottom: .75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.card__text  { font-size: .9375rem; color: var(--color-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.card__link  { color: var(--color-accent); font-weight: 600; font-size: .9375rem; display: inline-flex; align-items: center; gap: .375rem; }
.card__link:hover { color: var(--color-primary); }

/* ── Service cards (large) ── */
.service-card {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.service-card__img  { width: 100%; height: 260px; object-fit: cover; }
.service-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card__icon { width: 52px; height: 52px; background: #e8f5e0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: 1.25rem; }
.service-card__title { font-size: 1.375rem; font-weight: 700; color: var(--color-primary); margin-bottom: .75rem; }
.service-card__text  { color: var(--color-muted); margin-bottom: 1.5rem; flex: 1; }
.service-card__list  { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.service-card__list li { font-size: .875rem; color: var(--color-muted); display: flex; gap: .5rem; align-items: flex-start; }
.service-card__list li::before { content: '✓'; color: var(--color-accent); font-weight: 700; flex-shrink: 0; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-primary);
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.nav__logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
@media (min-width: 768px) {
  .nav__logo span { display: block; }
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav__logo-img { height: 48px; }
}
.nav__menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav__menu.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: -1.5rem; right: -1.5rem;
  background: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  gap: 1rem;
  border-top: 1px solid var(--color-border);
}
.nav__link { font-size: .9375rem; font-weight: 500; color: var(--color-text); transition: color .2s; }
.nav__link:hover, .nav__link.is-active { color: var(--color-primary); }
.nav__cta  { display: none; }
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  .nav__menu { display: flex; flex-direction: row; position: static; padding: 0; box-shadow: none; border: none; }
  .nav__cta  { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { min-height: 720px; } }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(31,77,44,.85) 0%, rgba(31,77,44,.6) 100%); }
.hero__content { position: relative; z-index: 1; padding: 5rem 0; }
.hero__eyebrow {
  display: inline-block;
  background: var(--color-accent); color: #fff;
  font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1       { color: #fff; margin-bottom: 1.25rem; max-width: 740px; }
.hero__sub     { font-size: 1.125rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .hero__sub { font-size: 1.25rem; } }

/* ── USP ── */
.usp { text-align: center; padding: 2rem 1.25rem; }
.usp__icon {
  width: 56px; height: 56px;
  background: #e8f5e0; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--color-accent);
}
.usp__title { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: .4rem; }
.usp__text  { font-size: .875rem; color: var(--color-muted); line-height: 1.5; }

/* ── Reviews ── */
.review { background: #fff; border-radius: var(--r-card); padding: 2rem; box-shadow: var(--shadow); }
.review__stars { color: #f59e0b; font-size: 1.125rem; letter-spacing: 2px; margin-bottom: .875rem; }
.review__text  { font-style: italic; line-height: 1.75; margin-bottom: 1.25rem; color: var(--color-text); }
.review__author { font-weight: 700; color: var(--color-primary); font-size: .9375rem; }

/* ── CTA Section ── */
.cta-section { background: var(--color-primary); padding: var(--pad-section) 0; text-align: center; }
.cta-section h2    { color: #fff; margin-bottom: 1rem; }
.cta-section p     { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: #fff;
  margin-bottom: .75rem; transition: color .2s;
}
.cta-phone:hover { color: var(--color-accent); }
.cta-email {
  display: block; font-size: 1.0625rem; color: rgba(255,255,255,.75);
  margin-bottom: 2rem; transition: color .2s;
}
.cta-email:hover { color: var(--color-accent); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.25rem 0; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--color-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-icon { font-size: 1.5rem; font-weight: 400; color: var(--color-accent); flex-shrink: 0; transition: transform .2s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--color-muted); line-height: 1.75; font-size: .9375rem; }
.faq-item.is-open .faq-answer { display: block; }

/* ── Service detail list ── */
.service-list { display: flex; flex-direction: column; gap: 2.5rem; }
.service-item  { display: flex; gap: 1.25rem; }
.service-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #e8f5e0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); margin-top: .2rem;
}
.service-item__title { font-size: 1.0625rem; font-weight: 700; color: var(--color-primary); margin-bottom: .3rem; }
.service-item__text  { font-size: .9375rem; color: var(--color-muted); }

/* ── Page header ── */
.page-hd { background: var(--color-bg); padding: 3rem 0 2rem; border-bottom: 1px solid var(--color-border); }
.page-hd h1       { margin-bottom: .75rem; }
.page-hd .lead    { font-size: 1.125rem; color: var(--color-muted); max-width: 660px; }
.page-hd .breadcrumb { margin-bottom: 1.25rem; font-size: .875rem; color: var(--color-muted); display: flex; gap: .375rem; flex-wrap: wrap; }
.page-hd .breadcrumb a { color: var(--color-muted); transition: color .2s; }
.page-hd .breadcrumb a:hover { color: var(--color-primary); }
.page-hd .breadcrumb span { color: var(--color-muted); }

/* ── Map ── */
.map-wrap { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ── Location tags ── */
.loc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.loc-tag  { background: var(--color-bg); color: var(--color-primary); padding: .35rem 1rem; border-radius: 100px; font-size: .875rem; font-weight: 500; border: 1px solid var(--color-border); }

/* ── Filter bar ── */
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem; border-radius: 100px;
  border: 2px solid var(--color-primary);
  background: transparent; color: var(--color-primary);
  font-size: .875rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--color-primary); color: #fff; }

/* ── Team card ── */
.team-card      { text-align: center; padding: 2rem; }
.team-card__img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem; background: var(--color-bg); display: flex; align-items: center; justify-content: center; }
.team-card__initials { font-size: 2.5rem; font-weight: 700; color: var(--color-primary); }
.team-card__name { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin-bottom: .25rem; }
.team-card__role { font-size: .875rem; color: var(--color-muted); }

/* ── Contact cards ── */
.contact-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); padding: 2.5rem; text-align: center; }
.contact-card__icon { width: 64px; height: 64px; background: #e8f5e0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--color-accent); }
.contact-card h3   { font-size: 1rem; font-weight: 600; color: var(--color-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; font-size: .8125rem; }
.contact-card__val { font-size: 1.375rem; font-weight: 700; color: var(--color-primary); text-decoration: none; display: block; margin-bottom: .5rem; transition: color .2s; }
.contact-card__val:hover { color: var(--color-accent); }
.contact-card__note { font-size: .875rem; color: var(--color-muted); }

/* ── Legal pages ── */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: .875rem; }
.legal h3 { font-size: 1.125rem; margin-top: 1.75rem; margin-bottom: .5rem; }
.legal p  { color: var(--color-muted); line-height: 1.8; }
.legal a  { color: var(--color-accent); text-decoration: underline; }
.legal ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal ul li { color: var(--color-muted); margin-bottom: .4rem; }

/* ── About section ── */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
.value-item { display: flex; gap: 1rem; }
.value-item__icon { width: 44px; height: 44px; background: #e8f5e0; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.value-item__title { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: .25rem; }
.value-item__text  { font-size: .875rem; color: var(--color-muted); }

/* ── Highlight box ── */
.highlight-box { background: linear-gradient(135deg, #1F4D2C 0%, #2d6e40 100%); border-radius: var(--r-card); padding: 2.5rem; color: #fff; }
.highlight-box h3 { color: #fff; margin-bottom: .75rem; }
.highlight-box p  { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

/* ── Footer ── */
.footer { background: #111; color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.25fr; } }

.footer__brand  { display: flex; align-items: center; gap: .75rem; color: #fff; font-weight: 700; font-size: 1.0625rem; margin-bottom: 1rem; }
.footer__logo-img { height: 44px; width: auto; display: block; flex-shrink: 0; }
.footer__tagline { font-size: .875rem; margin-bottom: 1.25rem; }
.footer__contact-item { display: flex; gap: .5rem; font-size: .875rem; margin-bottom: .5rem; }
.footer__contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__contact-item a:hover { color: var(--color-accent); }

.footer__hd { color: #fff; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__links a:hover { color: var(--color-accent); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; font-size: .8125rem; }
.footer__bottom > :last-child { display: flex; justify-content: flex-end; gap: 1.5rem; }
.footer__legal  { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer__legal a:hover { color: #fff; }

.footer__sheerfield-logo { height: 24px; width: auto; opacity: .55; transition: opacity .2s; display: inline-block; }
.footer__bottom a:hover .footer__sheerfield-logo { opacity: 1; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-muted  { color: var(--color-muted); }
.mt-sm  { margin-top: .5rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }
.mb-sm  { margin-bottom: .5rem; }
.mb-md  { margin-bottom: 1.5rem; }

/* ── Icon inline ── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Responsive two-col with image ── */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); }
.split__img img { width: 100%; height: 380px; object-fit: cover; }

/* ── PIN Overlay ── */
.pin-overlay {
  position: fixed; inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.pin-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%; max-width: 340px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.pin-box__logo {
  height: 80px; width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
.pin-box h2 {
  font-size: 1.25rem; margin-bottom: .375rem;
}
.pin-box p {
  font-size: .875rem; color: var(--color-muted); margin-bottom: 1.75rem;
}
.pin-dots {
  display: flex; justify-content: center; gap: .75rem; margin-bottom: 1.75rem;
}
.pin-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: transparent;
  transition: background .15s, border-color .15s;
}
.pin-dot.filled { background: var(--color-primary); border-color: var(--color-primary); }
.pin-keypad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .625rem;
}
.pin-key {
  aspect-ratio: 1;
  border: none; border-radius: 50%;
  background: var(--color-bg);
  font-size: 1.25rem; font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: background .15s, transform .1s;
  font-family: var(--font);
}
.pin-key:hover { background: #e0e0e0; }
.pin-key:active { transform: scale(.93); }
.pin-key--del { font-size: 1rem; color: var(--color-muted); }
.pin-error {
  margin-top: 1rem; font-size: .875rem;
  color: #dc2626; min-height: 1.25rem;
}
@keyframes pinShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-8px); }
  40%,80%  { transform: translateX(8px); }
}
.pin-box.shake { animation: pinShake .35s ease; }

/* ── Placeholder portrait ── */
.portrait-placeholder {
  width: 160px; height: 160px; border-radius: 50%;
  background: #e8f5e0; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: var(--color-primary);
}
