/* ------------------------------
   BASIC PAGE SETUP
------------------------------ */

* {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Nunito", sans-serif;
    color: #1f1f1f;
    background-color: #ffffff;
    
  }

  .new-line {
    display: block;
  }
 /* ------------------------------
   TYPOGRAPHY
------------------------------ */ 
    h1,
    h2,
    h3,
    .header-link,
    .button {
    font-family: "Quicksand", sans-serif;
    }
  
  /* ------------------------------
     HEADER
  ------------------------------ */
  
  .site-header {
    background-color: #a8b8a0;
    padding: 10px 40px 0;
  }
  
  .header-inner {
    max-width: 1180px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
  }
  
  .logo-wrap {
    position: relative;
    z-index: 1;
  
    padding: 0 22px;
    transform: translateY(45px);
    margin-bottom: -25px;
  }
  
  .logo {
    display: block;
    width: 220px;
    height: auto;
  }
  
  
  /* blank space on left keeps logo centered */
  
  .header-spacer {
    justify-self: start;
  }
  
  
  /* contact link */
  
  .header-link {
    justify-self: end;
  
    position: relative;
    z-index: 1;
  
    background-color: #a8b8a0;
    padding-left: 22px;
    padding-bottom: 15px;
  
    color: #1f1f1f;
    text-decoration: none;
  
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .header-link:hover {
    opacity: 0.6;
  }
  
  
  /* ------------------------------
     TEMPORARY SECTION STYLING
  ------------------------------ */
  
  main section {
    padding: 80px 40px;
  }
  
  .section-inner,
  .hero-content,
  .service-row {
    max-width: 1180px;
    margin: 0 auto;
  }
  
/* ------------------------------
   HERO
------------------------------ */

.hero {
    background-color: #f9f3f0;
    padding: 30px 40px;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 1300px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    min-height: 600px;
  }
  
  .hero-copy {
    position: relative;
    z-index: 2;
  
    max-width: 500px;
    text-align: left;
    transform: translateX(50px);
  }
  
  .hero h1 {
    margin: 0 0 20px;
    font-family: "Quicksand", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.08;
  }
  
  .hero-text {
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 1.6;
  }
  .hero-art {
    align-self: end;
    justify-self: end;
  
    width: 100%;
    transform: translateX(60px);
  }
  
  .hero-art img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  img {
    max-width: 100%;
  }
  
  .site-footer {
    position: relative;
  
    background-color: #a8b8a0;
    text-align: center;
  
    padding: 70px 20px 50px;
  }

  .site-footer::before {
    content: "";
  
    position: absolute;
    top: -30px;
    left: 0;
  
    width: 100%;
    height: 45px;
  
    background-color: #ffffff;
  
    border-radius: 0 0 50% 50%;
  }

  /* ------------------------------
   INTRO / ABOUT
------------------------------ */

.intro {
    text-align: center;
    padding: 90px 40px 30px;
  }
  
  .intro .section-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  
  .intro-image {
    margin-bottom: 30px;
  }
  
  .intro-image img {
    width: 200px;
    height: auto;
  }
  
  .intro h2 {
    font-size: 30px;
    margin: 0 0 24px;
  }
  
  .intro p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
  }
  
  .intro-divider {
    margin-top: 45px;
  }
  
  .intro-divider img {
    width: 80px;
    height: auto;
  }

/* ------------------------------
   SERVICES
------------------------------ */

.services {
    padding: 40px 40px 45px;
  }
  
  .services-heading {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .services-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
  }
  
  
  /* individual service rows */
  
  .service-row {
    max-width: 900px;
    margin: 0 auto 90px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }
  
  
  /* flip every other row */
  
  .service-row.reverse {
    flex-direction: row-reverse;
  }
  
  
  /* graphic */
  
  .service-image {
    flex: 0 0 260px;
    text-align: center;
  }
  
  .service-image img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }
  
  
  /* text */
  
  .service-text {
    flex: 1;
    max-width: 380px;
  }
  
  .service-text h3 {
    margin: 0 0 12px;
  
    font-size: 25px;
    font-weight: 700;
  }
  
  .service-text p {
    margin: 0;
  
    font-size: 17px;
    line-height: 1.7;
  }
  
  
  /* remove extra space after last service */
  
  .service-row:last-child {
    margin-bottom: 0;
  }

/* ------------------------------
   CONTACT
------------------------------ */

.contact {
    padding: 45px 35px 120px;
    text-align: center;
  }
  
  .contact-inner {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .contact-image {
    margin-bottom: 25px;
  }
  
  .contact-image img {
    display: block;
    width: 110px;
    height: auto;
    margin: 0 auto;
  }
  
  .contact h2 {
    margin: 0 0 18px;
    font-size: 38px;
  }
  
  .contact p {
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
  }
  
  .contact-button {
    display: inline-block;
  
    padding: 13px 25px;
  
    background-color: #a8b8a0;
    color: #f9f3f0;
  
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
  
    border-radius: 4px;
  
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
  }
  /* ------------------------------
   MOBILE HEADER
------------------------------ */

@media (max-width: 768px) {

    .site-header {
      padding-left: 18px;
      padding-right: 18px;
    }
  
    .header-inner {
      grid-template-columns: 1fr auto 1fr;
    }
  
    .logo-wrap {
      padding: 0 10px;
    }
  
    .logo {
      width: 170px;
    }
  
    .header-link {
      font-size: 11px;
      letter-spacing: 0.5px;
      padding-left: 10px;
    }
  
    .header-spacer {
      display: block;
    }

  /* ------------------------------
   MOBILE HERO
------------------------------ */

.hero {
    padding: 90px 20px 0;
    overflow: hidden;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-copy {
    width: 100%;
    max-width: 100%;
  
    margin: 0 auto 30px;
    text-align: center;
  
    transform: none;
  }
  
  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 18px;
  }
  
  .hero-text {
    max-width: 340px;
    margin: 0 auto;
  
    font-size: 17px;
    line-height: 1.5;
  }
  
  .hero-art {
    width: 130%;
    max-width: none;
  
    margin: 0 -15%;
  
    transform: none;
  }
  
  .hero-art img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* ------------------------------
   MOBILE INTRO
------------------------------ */
  .intro {
    padding: 70px 20px;
  }
  
  .intro-image img {
    width: 140px;
  }
  
  .intro h2 {
    font-size: 30px;
  }
  
  .intro p {
    font-size: 16px;
  }
  
  .intro-divider img {
    width: 50px;
  }

  /* ------------------------------
   MOBILE SERVICES
------------------------------ */

.services {
    padding: 70px 20px 80px;
  }
  
  .services-heading {
    margin-bottom: 55px;
  }
  
  .services-heading h2 {
    font-size: 32px;
  }
  
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 25px;
  
    margin-bottom: 70px;
  }
  
  .service-image {
    flex: none;
    width: 100%;
  }
  
  .service-image img {
    max-width: 190px;
  }
  
  .service-text {
    max-width: 420px;
    text-align: center;
  }
  
  .service-text h3 {
    font-size: 23px;
  }
  
  .service-text p {
    font-size: 16px;
  }
  /* ------------------------------
   MOBILE CONTACT
------------------------------ */
  .contact {
    padding: 70px 20px 100px;
  }
  
  .contact-image img {
    width: 90px;
  }
  
  .contact h2 {
    font-size: 30px;
  }
  
  .contact p {
    font-size: 16px;
  }

}