/* ========================================
   Lama builder — style.css
   Brand: #0891B2 (OKLCH ≈ oklch(0.60 0.14 210))
   ======================================== */

/* 12-token OKLCH palette */
:root {
  --primary:        oklch(0.60 0.14 210);   /* #0891B2 */
  --primary-light:  oklch(0.75 0.08 210);   /* lighter teal */
  --primary-dark:   oklch(0.40 0.11 210);   /* deep teal */
  --accent:         oklch(0.60 0.14 240);   /* blue-violet shift +30° */
  --surface:        oklch(0.97 0.01 210);   /* near-white tinted */
  --surface-alt:    oklch(0.93 0.02 210);   /* light teal grey */
  --dark:           oklch(0.15 0.02 210);   /* near-black */
  --light:          oklch(0.97 0.01 210);   /* white-ish */
  --muted:          oklch(0.38 0.05 210);   /* grey-teal — contrast ≥5:1 on white */
  --font-display:   'Montserrat', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --max-width:      1200px;
  --header-height:  72px;
  --radius:         8px;
  --radius-lg:      16px;
  --shadow-sm:      0 2px 8px oklch(0.15 0.02 210 / 0.12);
  --shadow-md:      0 4px 24px oklch(0.15 0.02 210 / 0.16);
  --shadow-lg:      0 8px 40px oklch(0.15 0.02 210 / 0.22);
  --transition:     0.25s ease;
}

/* ======== Reset ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ======== Custom scrollbar ======== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface-alt); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ======== Selection ======== */
::selection { background: var(--accent); color: #fff; }

/* ======== Focus visible ======== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ======== Skip link ======== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ======== Fluid type scale ======== */
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw + 0.5rem, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw + 0.4rem, 1.25rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}

/* ======== Header ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: oklch(0.97 0.01 210 / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(0.97 0.01 210 / 0.97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--surface-alt);
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--dark); }

.nav-links {
  display: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--primary-dark); background: oklch(0.60 0.14 210 / 0.08); }

.nav-cta {
  display: none;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md) !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--surface);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--surface-alt);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--dark);
  font-size: 1.05rem;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--surface-alt); color: var(--primary); }
.mobile-nav a.nav-cta-mobile {
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

/* ======== Buttons ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--surface-alt);
  border-color: var(--surface-alt);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ======== Section basics ======== */
section {
  padding: 72px 24px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);  /* darker for 4.5:1 contrast on light bg */
  background: oklch(0.60 0.14 210 / 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== HERO ======== */
#hero {
  padding: 0;
  background: #fff;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-content { order: 1; max-width: 560px; }
.hero-image-wrap { order: 2; width: 100%; max-width: 540px; }

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark); /* darker for contrast */
  background: oklch(0.60 0.14 210 / 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.1s;
}
.hero-content h1 {
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.35s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.5s;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.65s;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  /* No opacity animation on image-wrap to preserve LCP visibility */
  animation: heroSlideIn 0.7s ease both;
  animation-delay: 0.1s;
}
@keyframes heroSlideIn {
  from { transform: translateX(24px); }
  to   { transform: translateX(0); }
}
.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -8px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Hero animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======== FEATURES GRID ======== */
#features_grid {
  background: var(--surface-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid oklch(0.93 0.02 210);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px; height: 56px;
  background: oklch(0.60 0.14 210 / 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { color: var(--primary); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ======== GALLERY ======== */
#gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.02 210 / 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ======== TESTIMONIALS ======== */
#testimonials { background: var(--surface-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0.93 0.02 210);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg { color: #F59E0B; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--muted); }

/* ======== CTA / CONTACT ======== */
#contact {
  background: var(--primary);
  color: #fff;
}
#contact h2, #contact .section-tag { color: #fff; }
#contact .section-header p { color: rgba(255,255,255,0.8); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { color: #fff; margin-bottom: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-detail-text { display: flex; flex-direction: column; }
.contact-detail-text span:first-child { font-size: 0.8rem; opacity: 0.7; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-detail-text a, .contact-detail-text strong {
  color: #fff; font-weight: 600;
  font-size: 1.05rem;
  transition: opacity var(--transition);
}
.contact-detail-text a:hover { opacity: 0.8; }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--surface-alt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.60 0.14 210 / 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-top: 14px;
}
.form-status.success { background: #D1FAE5; color: #065F46; display: block; }
.form-status.error   { background: #FEE2E2; color: #991B1B; display: block; }
.form-honeypot { display: none !important; }

/* ======== PORTFOLIO ======== */
#portfolio { background: #fff; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.portfolio-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-alt);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.portfolio-card-img {
  height: 200px;
  background: linear-gradient(135deg, oklch(0.60 0.14 210 / 0.15), oklch(0.60 0.14 240 / 0.25));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}
.portfolio-card-body { padding: 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: oklch(0.60 0.14 210 / 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.portfolio-card-body h3 { margin-bottom: 8px; }
.portfolio-card-body p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.portfolio-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-alt);
  font-size: 0.85rem; color: var(--muted);
}

/* ======== FOOTER ======== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 24px 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand .site-logo { font-size: 1.4rem; margin-bottom: 12px; display: block; }
.footer-brand .site-logo span { color: rgba(255,255,255,0.8); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; margin-bottom: 10px;
}
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.83rem; opacity: 0.6;
  text-align: center;
}

/* ======== MOBILE CTA BAR ======== */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: 60px;
  box-shadow: 0 -2px 12px oklch(0.15 0.02 210 / 0.18);
}
.mobile-cta__call {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  transition: background var(--transition);
}
.mobile-cta__call:hover { background: var(--primary-dark); }
.mobile-cta__contact {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.mobile-cta__contact:hover { background: oklch(0.25 0.02 210); }

/* Compensate bottom bar on mobile */
body { padding-bottom: 60px; }

/* ======== Responsive ======== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-cta { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .hamburger { display: none; }

  /* Hero split layout */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: calc(100vh - var(--header-height));
    padding: 80px 40px;
  }
  .hero-content { order: 1; flex: 1; }
  .hero-image-wrap { order: 2; flex: 1; max-width: none; }
  .hero-image-wrap img { height: 540px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  section { padding: 96px 40px; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ======== Print styles ======== */
@media print {
  .site-header,
  footer,
  .mobile-cta,
  .contact-form-wrap,
  .hamburger,
  .mobile-nav { display: none !important; }

  body { padding-bottom: 0; color: #000; background: #fff; }
  section { padding: 24px 0; }
  h1, h2, h3, h4 { color: #000; }

  a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { font-weight: 600; }
}
