/* ============================================
   BUDDY'S HANDYMAN — Stylesheet
   ============================================ */

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --charcoal-900: #1A1A1A;
  --charcoal-800: #2D2D2D;
  --charcoal-700: #3A3A3A;
  --green-500: #4CAF50;
  --green-600: #43A047;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-muted: #9E9E9E;
  --text-dark: #333333;
  --text-dark-muted: #666666;
  --error: #EF5350;
  --success: #66BB6A;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --container-px: 1.25rem;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.4);

  /* Nav */
  --nav-height: 72px;
}

/* ---------- Base Typography ---------- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  background-color: var(--charcoal-900);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background-color: var(--charcoal-800);
}

.section--dark-alt {
  background-color: var(--charcoal-700);
}

.section--light {
  background-color: var(--gray-100);
  color: var(--text-dark);
}

.section__heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.section--light .section__heading {
  color: var(--charcoal-900);
}

.section__heading--left {
  text-align: left;
}

.section__subheading {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.section__subheading--dark {
  color: var(--text-dark-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--green-500);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background-color: var(--green-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* ---------- Focus Indicators ---------- */
a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav--scrolled {
  background-color: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

/* Fallback text when logo image fails to load */
.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--green-500);
  border-radius: 1px;
}

.nav__link--cta {
  background-color: var(--green-500);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.nav__link--cta:hover {
  background-color: var(--green-600);
  color: var(--white);
  transform: translateY(-1px);
}

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

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__hamburger--active .nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--active .nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active .nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-px) 4rem;
  background: linear-gradient(
    135deg,
    var(--charcoal-900) 0%,
    #222222 30%,
    var(--charcoal-800) 60%,
    #252525 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__title--accent {
  color: var(--green-500);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.services__card {
  background-color: var(--charcoal-700);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.services__icon {
  color: var(--green-500);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.services__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.services__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text p {
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about__text .section__heading {
  margin-bottom: 1.5rem;
}

.about__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about__badge {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-500);
  margin-bottom: 0.25rem;
}

.about__badge-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

.about__logo-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery__filter {
  background: transparent;
  border: 2px solid var(--charcoal-700);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
  min-width: 44px;
}

.gallery__filter:hover {
  border-color: var(--green-500);
  color: var(--white);
}

.gallery__filter--active {
  background-color: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery__item--hidden {
  display: none;
}

.gallery__placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--charcoal-700) 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery__coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--charcoal-700);
  border-radius: 12px;
}

.gallery__coming-soon-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reviews__card {
  background-color: var(--charcoal-800);
  border-left: 4px solid var(--green-500);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.reviews__card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(76, 175, 80, 0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}

.reviews__stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.reviews__quote {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.reviews__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.reviews__service {
  font-size: 0.85rem;
  color: var(--green-500);
  margin-top: 0.25rem;
}

.reviews__photos {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reviews__photos img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px;
}

/* ============================================
   FAQ
   ============================================ */
.faq__container {
  max-width: 800px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-fast);
}

.faq__item[open] {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq__question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: '';
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-500);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq__item[open] .faq__question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq__question:hover {
  color: var(--green-600);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.contact__form {
  max-width: 800px;
  margin: 0 auto;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact__group--full {
  grid-column: 1 / -1;
}

.contact__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact__label span[aria-hidden] {
  color: var(--green-500);
}

.contact__label-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--charcoal-700);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact__input::placeholder {
  color: var(--text-muted);
}

.contact__input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.contact__input--error {
  border-color: var(--error);
}

.contact__input--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.2);
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239E9E9E' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.contact__error {
  display: block;
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.35rem;
  min-height: 1.2em;
}

/* Upload Area */
.contact__upload {
  border: 2px dashed var(--charcoal-700);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.contact__upload:hover,
.contact__upload--dragover {
  border-color: var(--green-500);
  background-color: rgba(76, 175, 80, 0.05);
}

.contact__upload-icon {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.contact__upload-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact__upload-browse {
  color: var(--green-500);
  font-weight: 600;
  text-decoration: underline;
}

.contact__upload-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* File Previews */
.contact__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact__preview {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--charcoal-700);
}

.contact__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.contact__preview-remove:hover {
  background-color: var(--error);
}

/* Submit Button */
.contact__submit {
  width: 100%;
  max-width: 300px;
  display: flex;
  margin: 0 auto;
}

.contact__submit--loading {
  pointer-events: none;
  opacity: 0.8;
}

.contact__submit--loading .contact__submit-text {
  visibility: hidden;
}

.contact__submit--loading .contact__submit-spinner {
  position: absolute;
  visibility: visible;
}

.contact__submit--loading .contact__submit-spinner {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
}

.spinner-icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Status */
.contact__status {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.contact__status--success {
  color: var(--success);
}

.contact__status--error {
  color: var(--error);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--charcoal-900);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__heading {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--green-500);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--green-500);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 24px;
  height: 24px;
}

/* Disabled social link (no URL yet) */
.footer__social-link--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.footer__bottom {
  border-top: 1px solid var(--charcoal-700);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

[data-animate][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate][data-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate][data-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate][data-delay="4"] {
  transition-delay: 0.4s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   MEDIA QUERIES (Mobile-First)
   ============================================ */

/* --- Mobile: Hamburger menu --- */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background-color: var(--charcoal-900);
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    transition: right var(--transition-base);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 0.875rem 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid var(--charcoal-700);
  }

  .nav__link--cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
  }

  .nav__link--active::after {
    display: none;
  }
}

/* --- 576px+ --- */
@media (min-width: 576px) {
  .contact__fields {
    grid-template-columns: 1fr 1fr;
  }

  .about__badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- 768px+ (Tablet) --- */
@media (min-width: 768px) {
  :root {
    --section-py: 6rem;
  }

  .section__heading {
    font-size: 2.5rem;
  }

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

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

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

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

/* --- 992px+ (Desktop) --- */
@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* --- 1200px+ (Large Desktop) --- */
@media (min-width: 1200px) {
  :root {
    --container-px: 2rem;
  }

  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
