/* ============================================
   TilePro Ireland — Main Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  --clr-bg:          #ffffff;
  --clr-surface:     #f7f7f6;
  --clr-border:      #e8e5e0;
  --clr-text:        #1a1a1a;
  --clr-text-muted:  #6b6b6b;
  --clr-text-light:  #9a9a9a;

  --clr-accent:      #1a6b3a;
  --clr-accent-light:#e8f5ed;
  --clr-accent-dark: #135430;

  --clr-charcoal:    #1e2a22;
  --clr-dark:        #0f1a13;

  --clr-white:       #ffffff;
  --clr-green:       #22c55e;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);

  --transition: 0.25s cubic-bezier(.4,0,.2,1);

  --max-width: 1200px;
  --spacing-section: 96px;
}

/* --- 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-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
address { font-style: normal; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--spacing-section) 0; }
.section--grey { background: var(--clr-surface); }
.center { text-align: center; }
.hide-mobile { display: none; }

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}
.section-label.center { display: block; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn--primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,58,.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--clr-white);
}
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; font-size: 16px; padding: 15px; }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  background: rgba(255,255,255,0.92);
  padding: 5px 12px 5px 8px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.nav.scrolled .nav__logo {
  background: transparent;
  padding: 0;
}
/* logo text hidden - using image logo */
.logo-accent { color: var(--clr-accent); }
/* --- Logo Image --- */
.nav__logo-img {
  height: auto;
  width: 220px;
  max-height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.88; }

.footer__logo-img {
  height: auto;
  width: 200px;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}



.nav__links {
  display: none;
  margin-left: auto;
  gap: 6px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav.scrolled .nav__links a { color: var(--clr-text); }
.nav__links a:hover {
  color: var(--clr-accent);
  background: var(--clr-accent-light);
}
.nav__cta { margin-left: auto; display: none; }

.nav__hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--clr-dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav__mobile {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.nav__mobile.open { max-height: 500px; }
.nav__mobile-link {
  padding: 14px 24px;
  font-weight: 500;
  font-size: 15px;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.nav__mobile-link:hover { background: var(--clr-surface); color: var(--clr-accent); }
.nav__mobile-cta {
  margin: 16px 24px 20px;
  text-align: center;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,12,.82) 0%, rgba(10,20,12,.55) 60%, rgba(10,20,12,.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,58,.2);
  border: 1px solid rgba(26,107,58,.4);
  color: #6ee09a;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.hero__title--accent { color: #4ddb7a; text-shadow: 0 2px 12px rgba(26,107,58,.5); }
.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.hero__trust span::before {
  color: var(--clr-green);
  margin-right: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}


/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  gap: 48px;
}
.about__lead {
  font-size: 18px;
  color: var(--clr-text);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.65;
}
.about__text p:not(.about__lead) {
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}
.about__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
}
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.about__image-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about__badge-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.about__badge-icon { font-size: 28px; }
.about__badge-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--clr-dark); }
.about__badge-card small { font-size: 12px; color: var(--clr-text-muted); }


/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent-light);
}
.service-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.services__cta { text-align: center; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); }
.why-item__icon { font-size: 36px; margin-bottom: 14px; }
.why-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


/* ============================================
   GALLERY
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  background: var(--clr-border);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--large {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  padding: 32px 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: .3px;
}
.gallery__item--placeholder {
  background: var(--clr-surface);
  border: 2px dashed var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.gallery__item--placeholder:hover img { transform: none; }
.gallery__placeholder-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-align: center;
}
.gallery__placeholder-text small {
  font-size: 11px;
  font-weight: 400;
  color: var(--clr-text-light);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars {
  font-size: 18px;
  color: var(--clr-accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card p::before { content: '"'; }
.testimonial-card p::after  { content: '"'; }
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card footer strong { font-size: 14px; color: var(--clr-dark); }
.testimonial-card footer span  { font-size: 12px; color: var(--clr-text-muted); }
.testimonials__note {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-light);
  font-style: italic;
}


/* ============================================
   CONTACT
   ============================================ */
.contact__grid { display: grid; gap: 48px; }

.contact__list { display: flex; flex-direction: column; gap: 0; margin: 28px 0 32px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}
.contact__item:hover { color: var(--clr-accent); }
.contact__item--nolink { cursor: default; }
.contact__item--nolink:hover { color: inherit; }
.contact__item-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact__item span  { font-size: 14px; color: var(--clr-text-muted); }
.contact__hours {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--clr-border);
}
.contact__hours h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--clr-dark); text-transform: uppercase; letter-spacing: 1px; }
.contact__hours p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.8; }

/* Form */
.contact__form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.form-group label span { color: var(--clr-accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(26,107,58,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__icon { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--clr-dark); }
.form-success p { color: var(--clr-text-muted); margin-bottom: 24px; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 340px; }
.footer__brand .logo-text { color: var(--clr-white); }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  line-height: 1.7;
}
.footer__social { margin-top: 20px; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  border: 1px solid rgba(26,107,58,.3);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.footer__social-link:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--clr-accent); }
.footer__col address p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.footer__col address a:hover { color: var(--clr-accent); }
.footer__cta { margin-top: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}


/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  background: rgba(18,18,18,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 8px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-white);
  text-align: center;
  transition: opacity var(--transition);
}
.sticky-cta__btn:hover { opacity: 0.85; }
.sticky-cta__btn--call    { background: #1a6bdb; }
.sticky-cta__btn--whatsapp { background: #25D366; }
.sticky-cta__btn--quote   { background: var(--clr-accent); }

/* ============================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================ */
@media (min-width: 640px) {
  .hide-mobile { display: inline; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .about__img { height: 420px; }

  /* Nav */
  .nav__hamburger { display: none; }
  .nav__cta { display: inline-flex; }

  /* Hero */
  .hero__scroll { display: block; }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥ 960px)
   ============================================ */
@media (min-width: 960px) {
  :root { --spacing-section: 120px; }

  /* Nav */
  .nav__links  { display: flex; margin-left: auto; }
  .nav__cta    { margin-left: 8px; }
  .nav__hamburger { display: none; }

  /* About */
  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .about__img { height: 500px; }

  /* Why */
  .why__grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Footer */
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  /* Sticky CTA — hide on desktop */
  .sticky-cta { display: none; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   SVG ICON STYLES
   ============================================ */
.service-card__icon svg,
.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--clr-accent);
  margin-bottom: 18px;
  display: block;
}
.service-card__icon svg {
  margin-bottom: 0;
}

.why-item__icon svg,
.why-item__icon {
  width: 44px;
  height: 44px;
  color: var(--clr-accent);
  margin-bottom: 16px;
  display: block;
}
.why-item__icon svg {
  margin-bottom: 0;
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-accent);
}

.about__badge-icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-accent);
}
