/* ============================================================
   BEARLY USED & NEW TIRES -- style.css
   Mobile-first responsive design
   Breakpoints: 640px | 768px | 1024px | 1280px
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2744;
  --navy-dark:  #0e1829;
  --red:        #c0272d;
  --red-dark:   #a01f24;
  --sand:       #c8b89a;
  --tan:        #e8d9c0;
  --cream:      #f5efe4;
  --dark:       #111827;
  --muted:      #555;
  --white:      #ffffff;
  --open-green: #2d6a4f;
  --open-bg:    #1a3a2a;

  --radius:     4px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Libre Baskerville', serif;

  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a { color: inherit; }

/* ---- UTILITY ---- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}

.section-rule {
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-rule {
  margin: 16px auto 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 26px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-white:hover { background: var(--cream); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  justify-content: center;
}

.topbar-addr {
  display: none; /* hidden on mobile to save space */
}

.topbar-hours { color: var(--sand); }

.topbar-phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.topbar-phone:hover { color: var(--tan); }

@media (min-width: 768px) {
  .topbar {
    justify-content: space-between;
    padding: 9px 32px;
  }
  .topbar-addr { display: flex; align-items: center; gap: 5px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
  flex-shrink: 0;
}

.bear-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.05); }

.ham-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open state - animate to X */
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links - mobile: hidden drawer */
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  flex-direction: column;
  padding: 12px 0 16px;
  z-index: 199;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--red);
  background: rgba(192,39,45,0.04);
}

.nav-links .nav-cta {
  margin: 12px 20px 0;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none !important;
  background-image: none;
}
.nav-links .nav-cta:hover { background: var(--red-dark) !important; }

/* Desktop nav */
@media (min-width: 768px) {
  .site-nav { padding: 0 32px; }
  .nav-hamburger { display: none; }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .nav-links a {
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    font-size: 0.85rem;
  }

  .nav-links a:hover {
    background: none;
    border-bottom-color: var(--red);
    color: var(--red);
  }

  .nav-links .nav-cta {
    margin: 0;
    padding: 9px 20px !important;
    font-size: 0.85rem;
    border-bottom: none !important;
  }
}

@media (min-width: 1024px) {
  .site-nav { padding: 0 48px; }
  .logo-main { font-size: 1.35rem; }
  .nav-links { gap: 32px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,39,68,0.1) 0%,
    rgba(26,39,68,0.05) 30%,
    rgba(26,39,68,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 36px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title .accent { color: var(--red); display: block; }

.hero-sub {
  font-size: 0.95rem;
  color: var(--tan);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 768px) {
  .hero { height: 82vh; }
  .hero-content { padding: 0 40px 52px; }
  .hero-eyebrow { font-size: 0.78rem; }
  .hero-sub { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 0 60px 64px; max-width: 900px; }
}

/* ============================================================
   PHONE BAND
   ============================================================ */
.phone-band {
  background: var(--navy);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.ph-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 2px;
}

.ph-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.ph-number:hover { color: var(--tan); }

.band-hours {
  font-family: var(--font-display);
  color: var(--tan);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.band-hours strong { color: var(--white); font-weight: 600; }

.band-location {
  font-family: var(--font-display);
  color: var(--sand);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.band-location strong { color: var(--white); display: block; }

.band-muted { color: #7a8ea8; font-size: 0.78rem; display: block; }

@media (min-width: 640px) {
  .phone-band {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 32px;
  }
}

@media (min-width: 1024px) {
  .phone-band { padding: 22px 60px; }
  .ph-number { font-size: 2rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 64px 20px;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-top: 5px solid var(--navy);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.service-highlight {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

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

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .services { padding: 80px 40px; }
}

@media (min-width: 1024px) {
  .services { padding: 90px 60px; }
}

/* ============================================================
   CALENDAR SECTION
   ============================================================ */
.calendar-section {
  padding: 64px 20px;
  background: var(--navy);
}

.calendar-section .section-label { color: var(--sand); }
.calendar-section .section-title { color: var(--white); }
.calendar-section .section-rule { margin: 16px auto 0; }

.calendar-note {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--sand);
  letter-spacing: 0.05em;
  text-align: center;
  margin: 14px auto 0;
  max-width: 520px;
  line-height: 1.5;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.cal-month {
  background: var(--navy-dark);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.cal-month-header {
  background: var(--red);
  padding: 13px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 10px 4px;
  gap: 2px;
}

.cal-dow span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  padding: 4px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 10px 10px;
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  transition: transform 0.15s;
  cursor: default;
}

.cal-day.empty { background: transparent; }
.cal-day.closed { background: #1a2744; color: #3a4a5e; }
.cal-day.open { background: var(--open-green); color: var(--white); font-weight: 700; }
.cal-day.open:hover { transform: scale(1.15); z-index: 2; }
.cal-day.today { outline: 2px solid var(--red); outline-offset: 1px; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin-top: 28px;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.legend-open { background: var(--open-green); }
.legend-closed { background: #1a2744; border: 1px solid #2a3a54; }
.legend-today { background: transparent; border: 2px solid var(--red); }

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

@media (min-width: 900px) {
  .calendar-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .calendar-section { padding: 80px 40px; }
}

@media (min-width: 1024px) {
  .calendar-section { padding: 90px 60px; }
}

/* ============================================================
   SIGN / WHY US SECTION
   ============================================================ */
.sign-section {
  padding: 64px 20px;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.sign-photo-wrap {
  position: relative;
}

.sign-photo-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.sign-photo-wrap::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  pointer-events: none;
}

.sign-copy { color: var(--white); }
.sign-copy .section-label { text-align: left; }
.sign-copy .section-title { text-align: left; color: var(--white); }
.sign-copy .section-rule { margin: 16px 0 0; }

.sign-copy p {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--tan);
}

.sign-bullets {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sign-bullets li {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sign-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.sign-copy .btn-primary { margin-top: 32px; }

@media (min-width: 768px) {
  .sign-section { padding: 80px 40px; }
}

@media (min-width: 900px) {
  .sign-section {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 80px 60px;
  }
}

@media (min-width: 1024px) {
  .sign-section { padding: 90px 60px; gap: 72px; }
}

/* ============================================================
   ABOUT / MURAL STRIP
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr;
}

.about-image {
  height: 300px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.about-image:hover img { transform: scale(1.04); }

.about-text {
  background: var(--tan);
  padding: 48px 20px;
}

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; color: var(--navy); }
.about-text .section-rule { margin: 14px 0 0; }

.about-text p {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #3a3222;
}

.faith-badge {
  margin-top: 28px;
  background: var(--navy);
  color: var(--tan);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.65;
  border-left: 4px solid var(--red);
}

.faith-badge cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--sand);
}

@media (min-width: 768px) {
  .about-image { height: 380px; }
  .about-text { padding: 56px 40px; }
}

@media (min-width: 900px) {
  .about-strip {
    grid-template-columns: 1.1fr 1fr;
    min-height: 420px;
  }
  .about-image { height: auto; }
}

@media (min-width: 1024px) {
  .about-text { padding: 64px 56px; }
}

/* ============================================================
   CTA BAR
   ============================================================ */
.cta-bar {
  background: var(--red);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.cta-bar h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-bar p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin-top: 6px;
}

@media (min-width: 640px) {
  .cta-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 52px 40px;
  }
}

@media (min-width: 1024px) {
  .cta-bar { padding: 60px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: var(--sand);
}

.footer-inner { padding: 48px 20px 20px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: #7a8ea8;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  font-size: 0.86rem;
  color: #7a8ea8;
  margin-bottom: 7px;
  line-height: 1.5;
}

.footer-col ul li strong { color: var(--tan); }

.footer-note {
  color: #5a6e84 !important;
  font-size: 0.78rem !important;
  margin-top: 6px;
}

.footer-phone a {
  color: var(--tan) !important;
  text-decoration: none;
  font-weight: bold;
}

.footer-phone a:hover { color: var(--white) !important; }

.footer-bottom {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  color: #4a5a6e;
}

.footer-verse { font-style: italic; color: #5a6e84; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (min-width: 768px) {
  .footer-inner { padding: 52px 40px 24px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1024px) {
  .footer-inner { padding: 56px 60px 28px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- FOOTER CREDIT ---- */
.footer-credit {
  font-size: 0.76rem;
  color: #4a5a6e;
}

.footer-credit a {
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,184,154,0.3);
  transition: color var(--transition), border-color var(--transition);
}

.footer-credit a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

@media (max-width: 639px) {
  .footer-credit { text-align: center; }
}
