body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

/* Header */

.site-header {
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.logo a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: #333;
}

.main-nav a:hover {
  text-decoration: underline;
}

.search {
  margin-left: auto;
}


/* Footer */

.site-footer {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.footer-nav {
  margin-top: 0.5rem;
}

.footer-nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: #666;
}


/* Service Grid */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 6px;
  background: #fafafa;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  background: #f0f0f0;
}

.service-card h3 {
  margin-top: 0;
}


/* Responsive */

@media (max-width: 700px) {

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

  .site-header .container {
    flex-wrap: wrap;
  }

  .search {
    width: 100%;
    margin-top: 0.5rem;
  }

}


/* --------------------------------------------------
 * Grad Navigation
 * -------------------------------------------------- */


/*
 * Hamburger button
 */

.grad-menu-button {

  display: none;

  margin-left: 1rem;

  padding: 0.4rem 0.7rem;

  font-size: 1.5rem;

  line-height: 1;

  cursor: pointer;

  background: transparent;

  border: 1px solid #ccc;

  border-radius: 6px;

}


/*
 * Navigation drawer
 */

.grad-navigation {

  transition: transform 0.25s ease;

}


/*
 * Navigation links
 */

.grad-navigation a,
.grad-navigation a:visited {

  color: #222;

  text-decoration: none;

}


.grad-navigation a:hover,
.grad-navigation a:active {

  color: #222;

  text-decoration: none;

}


/*
 * Overlay
 */

.grad-overlay {

  display: none;

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.35);

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.25s ease;

  z-index: 900;

}


.grad-overlay.is-visible {

  display: block;

  opacity: 1;

  pointer-events: auto;

}


/*
 * Mobile navigation
 */

@media (max-width: 700px) {


  .grad-menu-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

  }


  .grad-navigation {

    position: fixed;

    top: 0;

    left: 0;


    width: 280px;

    max-width: 80vw;


    height: 100vh;


    padding: 2rem 1.5rem;


    background: #ffffff;


    box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25);


    display: flex;

    flex-direction: column;

    gap: 1rem;


    transform: translateX(-100%);


    z-index: 1000;

  }


  .grad-navigation.is-open {

    transform: translateX(0);

  }


  .grad-navigation a {

    color: #222;

    text-decoration: none;

    font-size: 1.1rem;

  }


  .search {

    width: 100%;

    margin-top: 0.5rem;

  }


}


/*
 * Desktop navigation
 */

@media (min-width: 701px) {


  .grad-overlay {

    display: none !important;

  }


  .grad-navigation {

    position: static;

    display: flex;

    flex-direction: row;

    gap: 1rem;

    transform: none;

    width: auto;

    height: auto;

    padding: 0;

    background: transparent;

    box-shadow: none;

  }


}
