/* ==============================
   CORE
============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #0f2f57;
  --ink: #1b4b7a;
  --teal: #2f80ed;
  --seafoam: #e8f2ff;
  --sky: #f4f9ff;
  --amber: #77b3ff;
  --cream: #f8fbff;
  --white: #ffffff;
  --text: #2f4f72;
  --muted: #5f7897;
  --border: #cfe0f5;

  --shadow-sm: 0 8px 26px rgba(17, 39, 58, 0.08);
  --shadow-md: 0 20px 50px rgba(17, 39, 58, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --max-width: 1160px;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #dcecff 0%, transparent 33%), var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Archivo", "Arial Black", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 span,
h2 span {
  color: var(--teal);
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.soft-section {
  background: linear-gradient(145deg, var(--seafoam), #f9fcff);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 8vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.section-heading p {
  max-width: 620px;
  margin-inline: auto;
}

.large-copy {
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--seafoam);
  color: #1f5fa5;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.5rem 0.85rem;
  margin-bottom: 1rem;
}

/* ==============================
   BUTTONS
============================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #4f9cff, #2f6fd6);
  box-shadow: 0 14px 28px rgba(47, 111, 214, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 30px rgba(47, 111, 214, 0.33);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.full-button {
  width: 100%;
}

.center-button {
  text-align: center;
  margin-top: 2rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--teal);
}

/* ==============================
   HEADER / NAV
============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}

.logo-image {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.logo strong {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  color: var(--teal);
}

.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
}

.main-nav {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  flex-direction: column;
}

.main-nav.open {
  display: flex;
}

.main-nav a {
  font-weight: 700;
  border-radius: 12px;
  padding: 0.88rem 1rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--seafoam);
  color: #1f5fa5;
}

.nav-quote {
  display: none;
}

/* ==============================
   HERO
============================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at 80% 12%, rgba(113, 168, 248, 0.3), transparent 34%), radial-gradient(circle at 8% 58%, rgba(47, 128, 237, 0.14), transparent 34%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 12vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: clamp(1rem, 4.5vw, 1.16rem);
  max-width: 620px;
  margin: 0 auto 1.7rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-trust span {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
}

.hero-visual {
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
}

.cleaning-card {
  position: relative;
  min-height: 350px;
  border-radius: var(--radius-lg);
  border: 1px solid #c4daf5;
  background: linear-gradient(145deg, #e6f0ff, #fbfdff);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  display: grid;
  place-items: center;
  overflow: visible;
}

.cleaning-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-photo {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(16, 39, 57, 0.1);
  box-shadow: var(--shadow-sm);
  background: #eef4fd;
}

.spray-bottle {
  font-size: 7rem;
  animation: float 4s ease-in-out infinite;
}

.cleaning-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.cleaning-text strong {
  background: var(--white);
  color: var(--teal);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  box-shadow: var(--shadow-sm);
}

.floating-review {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  max-width: 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
}

.floating-review span {
  font-size: 0.72rem;
}

.floating-review strong {
  display: block;
  line-height: 1.35;
  color: var(--ink);
  font-size: 0.92rem;
}

.sparkle {
  position: absolute;
  font-size: 2rem;
}

.sparkle-one {
  top: 1.4rem;
  right: 2rem;
}

.sparkle-two {
  bottom: 3.5rem;
  right: 1.8rem;
}

.clean-bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(25, 133, 122, 0.12);
  background: rgba(255, 255, 255, 0.4);
}

.bubble-one {
  width: 76px;
  height: 76px;
  right: -20px;
  top: 80px;
}

.bubble-two {
  width: 36px;
  height: 36px;
  left: 8%;
  top: 160px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ==============================
   SERVICE STRIP
============================== */

.quick-services {
  padding: 1rem 0 2rem;
}

.quick-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.quick-service-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.quick-service-grid article > span {
  font-size: 1.5rem;
}

.quick-service-grid strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
}

.quick-service-grid p {
  font-size: 0.74rem;
}

/* ==============================
   CARDS / GRIDS
============================== */

.card-grid,
.steps,
.gallery-grid,
.comparison-grid,
.benefit-grid,
.contact-info,
.service-detail-grid,
.form-row,
.footer-grid,
.split-section,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.service-card,
.value-card,
.review-card,
.service-detail-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.service-card,
.value-card,
.review-card,
.service-detail-card,
.steps article,
.gallery-info,
.comparison,
.stats-grid article,
.quick-service-grid article,
.benefit-card,
.contact-info article,
.floating-review {
  text-align: center;
}

.service-card,
.value-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  background: var(--seafoam);
  margin-bottom: 1rem;
}

.service-card h3,
.value-card h3 {
  margin-bottom: 0.6rem;
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--teal);
}

.service-card-image {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #eef4fd;
}

.featured-card {
  border: 2px solid var(--teal);
}

.card-label {
  position: absolute;
  top: -13px;
  right: 1rem;
  border-radius: 999px;
  background: var(--amber);
  color: #153a66;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.34rem 0.7rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.benefit-card > span {
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.benefit-card p {
  font-size: 0.88rem;
}

.steps article {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #4f9cff, #2f6fd6);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 0.5rem;
}

/* ==============================
   REVIEWS / CTA
============================== */

.review-banner {
  background: linear-gradient(145deg, #174579, #0f2f57);
  color: var(--white);
  padding: 4rem 0;
}

.review-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  max-width: 860px;
}

.quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: #9dc9ff;
}

.review-banner blockquote {
  font-size: clamp(1.3rem, 5vw, 2rem);
  line-height: 1.35;
  margin: 0.7rem 0 1rem;
  color: var(--white);
}

.review-banner strong,
.review-banner small {
  display: block;
}

.review-banner small {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

.cta-section {
  text-align: center;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #eaf3ff 0%, #d7e9ff 45%, #c5deff 100%);
}

.cta-section > .container > span {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.cta-section h2 {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.cta-section p {
  max-width: 580px;
  margin: 0 auto 1.5rem;
  color: #2e547f;
}

/* ==============================
   PAGE HERO
============================== */

.page-hero {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(145deg, #eaf3ff, #f8fbff);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0 auto 1rem;
  font-size: clamp(2.5rem, 11vw, 5rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 650px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* ==============================
   SERVICES PAGE
============================== */

.large-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.service-detail-card h2 {
  font-size: 1.55rem;
}

.service-detail-card > p {
  margin: 0.6rem 0 1rem;
}

.service-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #eef4fd;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-items: center;
}

.check-list li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--teal);
  font-weight: 900;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.addon-grid span {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 1rem;
  font-weight: 700;
}

.faq-container {
  max-width: 820px;
  margin-inline: auto;
}

.faq {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-weight: 800;
  padding: 1.2rem 0;
}

.faq-question span {
  font-size: 1.3rem;
}

.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
}

.faq.open .faq-answer {
  display: block;
}

/* ==============================
   ABOUT PAGE
============================== */

.about-visual {
  min-height: 340px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #dfeeff, #ffffff);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  background: #eef4fd;
}

.about-main-icon {
  font-size: 7.8rem;
}

.about-floating {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  padding: 0.8rem 1rem;
}

.value-card > span {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats-grid article {
  border: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 1rem;
}

.stats-grid strong {
  display: block;
  color: var(--teal);
  font-size: 1.35rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ==============================
   GALLERY PAGE
============================== */

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-image {
  min-height: 240px;
  overflow: hidden;
  background: #eef4fd;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.gallery-image.kitchen { background: #e9f2ff; }
.gallery-image.bathroom { background: #e2efff; }
.gallery-image.bedroom { background: #edf4ff; }
.gallery-image.office { background: #e7f1ff; }
.gallery-image.move { background: #eaf3ff; }
.gallery-image.living { background: #e5f0ff; }

.gallery-info {
  padding: 1.2rem;
}

.gallery-info span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  font-weight: 800;
}

.gallery-info h3 {
  margin-top: 0.3rem;
}

.before-after-section {
  background: linear-gradient(145deg, #164980, #2f6fd6);
  color: var(--white);
}

.before-after-section h2,
.before-after-section .section-heading p {
  color: var(--white);
}

.comparison {
  min-height: 300px;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison span {
  width: fit-content;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 900;
}

.comparison div {
  text-align: center;
  font-size: 4rem;
}

.comparison-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 1rem;
  background: #eef4fd;
}

.comparison.before {
  background: linear-gradient(145deg, #6c89ad, #90add1);
}

.comparison.after {
  background: linear-gradient(145deg, #ddebff, #ffffff);
}

.review-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

/* ==============================
   CONTACT PAGE
============================== */

.contact-layout {
  gap: 3rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-photo-wrap {
  margin-top: 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #eef4fd;
}

.contact-info article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.contact-info article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--seafoam);
}

.quote-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9ddf5;
  background: #f8fbff;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(25, 133, 122, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 1rem;
  border-radius: 12px;
  padding: 1rem;
  font-weight: 700;
  background: var(--seafoam);
  color: #1f5fa5;
}

/* ==============================
   FOOTER
============================== */

.footer {
  background: linear-gradient(160deg, #0f2c3f, #11273a);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  gap: 2rem;
}

.footer p,
.footer a {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-logo {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1.4rem;
  font-size: 0.8rem;
}

/* ==============================
   TABLET
============================== */

@media (min-width: 650px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .three-column {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ==============================
   DESKTOP
============================== */

@media (min-width: 900px) {
  .menu-button {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    width: auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    flex-direction: row;
  }

  .main-nav a {
    padding: 0.62rem 0.78rem;
  }

  .nav-quote {
    display: inline-flex;
  }

  .hero {
    padding: 6.4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.8rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-buttons,
  .hero-trust {
    justify-content: flex-start;
  }

  .quick-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .three-column {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }
}

/* ==============================
   LARGE SCREENS
============================== */

@media (min-width: 1250px) {
  .section {
    padding: 7rem 0;
  }
}

/* ==============================
   MOBILE TYPOGRAPHY CENTERING
============================== */

@media (max-width: 899px) {
  h1,
  h2,
  h3,
  p,
  .contact-info,
  .footer,
  .footer p,
  .footer h4,
  .footer a {
    text-align: center;
  }

  .contact-info article {
    justify-content: center;
  }

  .logo {
    justify-self: start;
  }
}

/* ==============================
   REDUCED MOTION
============================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
