/* ============================================================
   Breaker Bros — static stylesheet
   Faithfully converted from Next.js / Tailwind CSS.
   Design tokens, spacing, and breakpoints match the original.
   ============================================================ */

/* === RESET ================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img       { max-width: 100%; display: block; }
ul        { list-style: none; }
a         { text-decoration: none; color: inherit; }
button    { cursor: pointer; font: inherit; }

/* === DESIGN TOKENS ========================================= */
/*
  Tailwind spacing scale: 1 unit = 0.25rem
  Breakpoints: sm 640px  md 768px  lg 1024px  xl 1280px
  Colors, shadows, and radius values taken directly from
  tailwind.config.ts and src/lib/design.ts
*/
:root {
  --charcoal:          #1a1a1a;
  --charcoal-light:    #2d2d2d;
  --offwhite:          #f5f3ef;
  --muted-green:       #4a5d4a;
  --muted-green-light: #5c735c;

  /* Tailwind shadow-sm / shadow / shadow-md / shadow-lg */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);

  /* border-radius */
  --radius-xl:   0.75rem;   /* rounded-xl  */
  --radius-2xl:  1rem;      /* rounded-2xl */
  --radius-full: 9999px;    /* rounded-full */
}

/* === BASE ================================================== */
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, sans-serif;
  background-color: var(--offwhite);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5;
}

/* === UTILITY COLOR CLASSES ================================= */
.bg-charcoal       { background-color: var(--charcoal); }
.bg-charcoal-light { background-color: var(--charcoal-light); }
.bg-offwhite       { background-color: var(--offwhite); }
.color-charcoal    { color: var(--charcoal); }
.color-offwhite    { color: var(--offwhite); }
.color-charcoal-90 { color: rgba(26,26,26,.9); }

/* === CONTAINER ============================================= */
/* CONTAINER = mx-auto max-w-7xl px-5 sm:px-6 */
.container {
  width: 100%;
  max-width: 80rem;        /* max-w-7xl = 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;  /* px-5  */
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;  /* sm:px-6 */
    padding-right: 1.5rem;
  }
}

/* === BUTTONS =============================================== */
/*
  BTN_PRIMARY  — bg muted-green, white text, rounded-xl, min-h 60px
  BTN_SECONDARY_DARK  — outlined, offwhite, for dark backgrounds
  BTN_SECONDARY_LIGHT — outlined, charcoal, for light backgrounds
  md: min-h 64px, px-9 (2.25rem)
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: var(--radius-xl);
  padding: 1rem 1.75rem;           /* py-4 px-7 */
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease,
              border-color       .15s ease,
              box-shadow         .15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
@media (min-width: 768px) {
  .btn {
    min-height: 64px;
    padding-left: 2.25rem;   /* md:px-9 */
    padding-right: 2.25rem;
  }
}

/* Primary */
.btn-primary {
  background-color: var(--muted-green);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background-color: var(--muted-green-light);
  box-shadow: var(--shadow-md);
}

/* Secondary — dark backgrounds */
.btn-secondary-dark {
  background-color: transparent;
  color: var(--offwhite);
  border-color: rgba(245,243,239,.6);
  font-weight: 600;
}
.btn-secondary-dark:hover {
  border-color: var(--offwhite);
  background-color: rgba(245,243,239,.1);
}

/* Secondary — light backgrounds */
.btn-secondary-light {
  background-color: transparent;
  color: var(--charcoal);
  border-color: rgba(26,26,26,.2);
  font-weight: 600;
}
.btn-secondary-light:hover {
  border-color: rgba(26,26,26,.4);
  background-color: rgba(26,26,26,.05);
}

/* === BUTTON GROUPS ========================================= */
/*
  GAP_BUTTONS = mt-14 md:mt-16
  Mobile: flex-col, gap-6
  sm+:    flex-row, align-items center
*/
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;             /* gap-6 */
  margin-top: 3.5rem;      /* mt-14 = GAP_BUTTONS */
}
@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .btn-group { margin-top: 4rem; }  /* md:mt-16 */
}

/* Hero buttons — centered column on mobile, centered row on sm+ */
.btn-group--hero {
  align-items: center;     /* center buttons in column on mobile */
}
@media (min-width: 640px) {
  .btn-group--hero { justify-content: center; }
}

/* Single centered button (How It Works) */
.btn-group--center {
  align-items: center;
}
@media (min-width: 640px) {
  .btn-group--center { justify-content: center; }
}

/* === SITE HEADER =========================================== */
/*
  sticky top-0 z-50
  bg-charcoal, border-b border-white/10, shadow-sm
  inner: min-h-[64px] md:min-h-[68px], py-4
*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}

/* JS adds this when page has scrolled > 8px */
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 1rem;    /* py-4 */
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .header-inner { min-height: 68px; }
}

/* text-xl font-bold tracking-tight text-offwhite md:text-2xl */
.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--offwhite);
}
@media (min-width: 768px) {
  .site-logo { font-size: 1.5rem; }
}

/* === MOBILE CTA BAR ======================================== */
/*
  fixed bottom-0, z-40, bg-charcoal, p-4
  hidden on md+
*/
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: var(--charcoal);
  padding: 1rem;          /* p-4 */
}
@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

.mobile-cta-btn {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background-color: var(--muted-green);
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background-color .15s ease;
}
.mobile-cta-btn:hover { background-color: var(--muted-green-light); }
@media (min-width: 768px) {
  .mobile-cta-btn { min-height: 64px; }
}

/* === MAIN ================================================== */
/*
  pb-28 md:pb-0  (makes room for the mobile CTA bar)
*/
.site-main {
  padding-bottom: 7rem;   /* pb-28 */
}
@media (min-width: 768px) {
  .site-main { padding-bottom: 0; }
}

/* === SECTIONS ============================================== */
/*
  SECTION_PY = py-20 md:py-28
  All default content sections use this.
*/
.section {
  padding-top: 5rem;      /* py-20 */
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 7rem;    /* md:py-28 */
    padding-bottom: 7rem;
  }
}

/*
  CTA_SECTION_PY = py-24 md:py-32
  Final CTA only.
*/
.section--cta {
  padding-top: 6rem;      /* py-24 */
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .section--cta {
    padding-top: 8rem;    /* md:py-32 */
    padding-bottom: 8rem;
  }
}

/* === SECTION HEADINGS ====================================== */
/*
  H2_CLASS = text-3xl font-bold tracking-tight md:text-4xl
  mb-14 (3.5rem) default — most sections
*/
.section-h2 {
  font-size: 1.875rem;    /* text-3xl */
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 3.5rem;  /* mb-14 */
}
@media (min-width: 768px) {
  .section-h2 { font-size: 2.25rem; } /* md:text-4xl */
}

/* Why Choose Us uses mb-12 (original design inconsistency preserved) */
.section-h2--mb-sm { margin-bottom: 3rem; } /* mb-12 */

/* === HERO ================================================== */
/*
  min-h-[72vh] md:min-h-[75vh]
  relative flex flex-col justify-center overflow-hidden
*/
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal);
  color: var(--offwhite);
  min-height: 72vh;
}
@media (min-width: 768px) {
  .hero { min-height: 75vh; }
}

/* Background image — absolute fill with heroZoom animation */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  will-change: transform;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Dark overlay — bg-black/60 */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,.6);
}

/* Hero content */
/*
  relative z-10 flex flex-col items-center text-center
  pt-20 pb-20 md:pt-24 md:pb-24
*/
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 5rem;      /* pt-20 */
  padding-bottom: 5rem;   /* pb-20 */
}
@media (min-width: 768px) {
  .hero-content {
    padding-top: 6rem;    /* md:pt-24 */
    padding-bottom: 6rem;
  }
}

/* H1_HERO = text-4xl … xl:text-7xl, leading-[1.15], tracking-tight */
.hero-h1 {
  font-size: 2.25rem;     /* text-4xl */
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 56rem;       /* max-w-4xl ≈ 896px */
  color: #fff;
}
@media (min-width: 768px)  { .hero-h1 { font-size: 3rem; } }   /* md:text-5xl */
@media (min-width: 1024px) { .hero-h1 { font-size: 3.75rem; } } /* lg:text-6xl */
@media (min-width: 1280px) { .hero-h1 { font-size: 4.5rem; } }  /* xl:text-7xl */

/* Subheadline — mt-8, max-w-2xl, text-white/95, md:text-xl, lg:text-2xl */
.hero-sub {
  margin-top: 2rem;       /* mt-8 */
  max-width: 42rem;       /* max-w-2xl */
  color: rgba(255,255,255,.95);
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero-sub {
    margin-top: 2.5rem;   /* md:mt-10 */
    font-size: 1.25rem;   /* md:text-xl */
  }
}
@media (min-width: 1024px) {
  .hero-sub { font-size: 1.5rem; } /* lg:text-2xl */
}

/* Trust points — mt-16, flex-wrap, gap-x-12 gap-y-2, md:mt-20 md:gap-x-14 */
.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3rem;       /* gap-x-12 */
  row-gap: 0.5rem;        /* gap-y-2 */
  margin-top: 4rem;       /* mt-16 */
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255,255,255,.9);
}
@media (min-width: 768px) {
  .trust-points {
    margin-top: 5rem;     /* md:mt-20 */
    column-gap: 3.5rem;   /* md:gap-x-14 */
    font-size: 1.125rem;  /* md:text-lg */
  }
}

/* === CARDS — What We Do ==================================== */
/*
  grid gap-14 sm:grid-cols-2 lg:grid-cols-3
*/
.cards-grid {
  display: grid;
  gap: 3.5rem;            /* gap-14 */
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/*
  CARD_CLASS = flex flex-col overflow-hidden rounded-2xl
               border border-charcoal/10 bg-white shadow-md
               transition hover:-translate-y-1 hover:shadow-lg
*/
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(26,26,26,.1);
  background-color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px); /* hover:-translate-y-1 (1 = 4px) */
  box-shadow: var(--shadow-lg);
}

/* Card image — relative h-48 overflow-hidden rounded-t-2xl md:h-52 */
.card-image {
  position: relative;
  height: 12rem;          /* h-48 = 192px */
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
@media (min-width: 768px) {
  .card-image { height: 13rem; } /* md:h-52 = 208px */
}
.card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card body — CARD_PADDING = p-6 md:p-8, flex flex-1 flex-col */
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;        /* p-6 */
}
@media (min-width: 768px) {
  .card-body { padding: 2rem; } /* md:p-8 */
}

/* H3_CLASS = text-xl font-bold md:text-2xl */
.card-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}
@media (min-width: 768px) {
  .card-h3 { font-size: 1.5rem; }
}

/* BODY_CLASS + BODY_MUTED, mt-5, flex-1 */
.card-desc {
  margin-top: 1.25rem;    /* mt-5 */
  flex: 1;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(26,26,26,.85); /* BODY_MUTED = text-charcoal/85 */
}
@media (min-width: 768px) {
  .card-desc { font-size: 1.125rem; }
}

/* mt-6 text-muted-green font-semibold */
.card-footer-label {
  margin-top: 1.5rem;     /* mt-6 */
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-green);
}

/* === HOW IT WORKS — steps ================================== */
/*
  grid gap-14 md:grid-cols-3 md:gap-12
*/
.steps-grid {
  display: grid;
  gap: 3.5rem;            /* gap-14 */
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;            /* md:gap-12 */
  }
}

.step { text-align: left; }

/* inline-flex h-12 w-12 items-center justify-center rounded-full bg-muted-green */
.step-number {
  display: inline-flex;
  height: 3rem;           /* h-12 */
  width: 3rem;            /* w-12 */
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--muted-green);
  font-size: 1.125rem;    /* text-lg */
  font-weight: 700;
  color: #fff;
}

/* H3_CLASS mt-7 text-offwhite */
.step-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.75rem;    /* mt-7 */
  color: var(--offwhite);
}
@media (min-width: 768px) {
  .step-h3 { font-size: 1.5rem; }
}

/* BODY_CLASS text-offwhite/90 mt-5 */
.step-desc {
  margin-top: 1.25rem;    /* mt-5 */
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245,243,239,.9);
}
@media (min-width: 768px) {
  .step-desc { font-size: 1.125rem; }
}

/* === VISUAL BREAK ========================================== */
/*
  relative mt-8 mb-8 h-[320px] w-full overflow-hidden
  md:mt-10 md:mb-10 md:h-[400px]
*/
.visual-break {
  position: relative;
  margin-top: 2rem;       /* mt-8 */
  margin-bottom: 2rem;    /* mb-8 */
  height: 320px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .visual-break {
    margin-top: 2.5rem;   /* md:mt-10 */
    margin-bottom: 2.5rem;
    height: 400px;
  }
}
.visual-break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual-break-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26,26,26,.35); /* bg-charcoal/35 */
}

/* === WHY CHOOSE US ========================================= */
/*
  grid gap-8 md:grid-cols-2 md:gap-x-24 md:gap-y-6
*/
.why-list {
  display: grid;
  gap: 2rem;              /* gap-8 */
}
@media (min-width: 768px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6rem;     /* md:gap-x-24 */
    row-gap: 1.5rem;      /* md:gap-y-6 */
  }
}

/* flex gap-4 */
.why-item {
  display: flex;
  gap: 1rem;
}

/* mt-0.5 shrink-0 text-muted-green */
.why-check {
  margin-top: .125rem;    /* mt-0.5 */
  flex-shrink: 0;
  color: var(--muted-green);
}

/* BODY_CLASS BODY_MUTED leading-relaxed */
.why-text {
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(26,26,26,.85);
}
@media (min-width: 768px) {
  .why-text { font-size: 1.125rem; }
}

/* === WHERE WE ARE — lead paragraph ========================= */
/*
  LEAD_CLASS + GAP_HEADING (mt-14 md:mt-16)
  text-xl leading-relaxed md:text-2xl
*/
.section-lead {
  font-size: 1.25rem;     /* text-xl */
  line-height: 1.625;     /* leading-relaxed */
  margin-top: 3.5rem;     /* GAP_HEADING = mt-14 */
}
@media (min-width: 768px) {
  .section-lead {
    font-size: 1.5rem;    /* md:text-2xl */
    margin-top: 4rem;     /* md:mt-16 */
  }
}

/* mt-12 wraps the map */
.map-outer { margin-top: 3rem; } /* mt-12 */

/* MAP_WRAPPER = overflow-hidden rounded-xl border border-charcoal/10 bg-charcoal/5 shadow */
.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26,26,26,.1);
  background-color: rgba(26,26,26,.05);
  box-shadow: var(--shadow);
}

/* aspect-video w-full min-height 280px */
.map-aspect {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 280px;
}
.map-aspect iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

/* === FINAL CTA ============================================= */
/*
  H2_CLASS_LARGE = text-3xl font-bold tracking-tight md:text-4xl lg:text-5xl
*/
.final-cta-h2 {
  font-size: 1.875rem;    /* text-3xl */
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--offwhite);
}
@media (min-width: 768px)  { .final-cta-h2 { font-size: 2.25rem; } } /* md:text-4xl */
@media (min-width: 1024px) { .final-cta-h2 { font-size: 3rem; } }    /* lg:text-5xl */

/* GAP_HEADING = mt-14 md:mt-16 */
.final-cta-phone-row {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .final-cta-phone-row { margin-top: 4rem; }
}

/*
  PHONE_DISPLAY = text-4xl font-bold md:text-5xl lg:text-6xl
  underline decoration-muted-green decoration-2 underline-offset-4
*/
.final-cta-phone {
  font-size: 2.25rem;     /* text-4xl */
  font-weight: 700;
  color: var(--offwhite);
  text-decoration: underline;
  text-decoration-color: var(--muted-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration .15s ease;
}
.final-cta-phone:hover { text-decoration: none; }
@media (min-width: 768px)  { .final-cta-phone { font-size: 3rem; } }    /* md:text-5xl */
@media (min-width: 1024px) { .final-cta-phone { font-size: 3.75rem; } } /* lg:text-6xl */

/* === FOOTER ================================================ */
/*
  FOOTER_PY = py-16 md:py-20
  bg-charcoal-light, border-t border-white/10
*/
.site-footer {
  background-color: var(--charcoal-light);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 4rem;      /* py-16 */
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .site-footer {
    padding-top: 5rem;    /* md:py-20 */
    padding-bottom: 5rem;
  }
}

/* text-xl font-bold text-offwhite */
.footer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--offwhite);
}

/* mt-4 */
.footer-phone { margin-top: 1rem; }
.footer-phone a {
  font-size: 1.125rem;    /* text-lg */
  font-weight: 600;
  color: var(--offwhite);
  text-decoration: underline;
  text-decoration-color: rgba(245,243,239,.4);
  text-underline-offset: 2px;
}
.footer-phone a:hover { text-decoration: none; }

/* mt-3 */
.footer-email { margin-top: .75rem; }
.footer-email a {
  font-size: 1.125rem;
  color: var(--offwhite);
  text-decoration: underline;
  text-decoration-color: rgba(245,243,239,.4);
  text-underline-offset: 2px;
}
.footer-email a:hover { text-decoration: none; }

/* mt-3 text-lg text-offwhite/90 */
.footer-location {
  margin-top: .75rem;
  font-size: 1.125rem;
  color: rgba(245,243,239,.9);
}

/* mt-8 text-base text-offwhite/70 */
.footer-social-label {
  margin-top: 2rem;       /* mt-8 */
  font-size: 1rem;
  color: rgba(245,243,239,.7);
}

/* mt-4 flex flex-wrap gap-x-6 gap-y-2 */
.footer-social-links {
  margin-top: 1rem;       /* mt-4 */
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;     /* gap-x-6 */
  row-gap: .5rem;         /* gap-y-2 */
  font-size: 1rem;
}
.footer-social-links a {
  color: rgba(245,243,239,.85);
  text-decoration: underline;
  text-decoration-color: rgba(245,243,239,.35);
  text-underline-offset: 2px;
}
.footer-social-links a:hover {
  color: var(--offwhite);
  text-decoration: none;
}

/* mt-10 text-base text-offwhite/70 */
.footer-copy {
  margin-top: 2.5rem;     /* mt-10 */
  font-size: 1rem;
  color: rgba(245,243,239,.7);
}
