/* ============================================
   Galaxy Ink Tattoos — Styles
   Palette: Burgundy #7B2D3B · Blush #F5E6D3
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6D3;
  --blush-light: #FBF5EE;
  --blush-mid: #E8D5C0;
  --cream: #FDF9F5;
  --white: #FFFFFF;
  --text-dark: #1A1210;
  --text-mid: #4A3530;
  --text-light: #7A6058;
  --text-muted: #A08880;
  --line: rgba(123, 45, 59, 0.12);
  --line-strong: rgba(123, 45, 59, 0.25);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-smooth);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}

.logo-text-light {
  color: var(--white);
}

/* Navigation */
.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.25s var(--ease-smooth);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--burgundy);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
  padding: 8px 20px;
  background: var(--burgundy);
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  transition: background 0.25s var(--ease-smooth), transform 0.2s var(--ease-out);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--burgundy-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  margin-right: -4px;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero .container {
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 80px;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero-title-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-credentials span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.cred-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blush-mid);
  flex-shrink: 0;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(123, 45, 59, 0.12);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 750;
  object-fit: cover;
}

.hero-accent-line {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--burgundy);
  border-radius: 12px;
  opacity: 0.2;
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  padding: 36px 28px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-smooth), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(123, 45, 59, 0.1);
  border-color: var(--line-strong);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-image-col img {
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(123, 45, 59, 0.1);
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 640;
  object-fit: cover;
}

.about-stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--burgundy);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.3);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-text-col {
  max-width: 480px;
}

.about-text-col > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.about-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 120px 0 100px;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .section-desc {
  margin: 0 auto;
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--blush);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 16, 0.2) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
  border-radius: 10px;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--burgundy);
  color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-eyebrow {
  color: var(--blush);
}

.testimonials-header .section-title {
  color: var(--white);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--blush-light);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: rgba(245, 230, 211, 0.6);
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 4px;
}

.contact-detail-link {
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Form */
.contact-form-col {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.06);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(123, 45, 59, 0.06);
  border: 1px solid rgba(123, 45, 59, 0.15);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--burgundy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--blush);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
}

.footer-nav ul {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(245, 230, 211, 0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-address {
  font-size: 0.8125rem;
  color: rgba(245, 230, 211, 0.4);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* Default: visible for no-JS / reduced-motion */
.reveal {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item:nth-child(3) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(3) img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 0 64px;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-credentials {
    justify-content: center;
  }

  .hero-image-wrap {
    justify-content: center;
    order: 1;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-col {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-text-col {
    max-width: 100%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
    z-index: 999;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav li:last-child {
    border-bottom: none;
  }

  .primary-nav a {
    display: block;
    padding: 16px 0;
    font-size: 0.9375rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

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

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

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

  .gallery-item:nth-child(3) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(3) img {
    aspect-ratio: 4 / 5;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-form-col {
    padding: 28px;
  }

  .hero-accent-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8125rem;
  }

  .about-stat {
    left: 0;
    bottom: -16px;
    padding: 18px 24px;
  }

  .about-stat-num {
    font-size: 2rem;
  }
}
