  /* -----------------------------------------
     Basic reset + colors
     Keeping the palette to just 3 colors keeps
     things looking elegant instead of busy.
     ----------------------------------------- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Work Sans', sans-serif;
    color: #2F332E;
    background-color: #FAF9F5;
    line-height: 1.6;
  }

  h1, h2, h3 {
    font-family: 'Fraunces', serif;
    color: #3C5240;
    font-weight: 600;
  }

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

  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  /* -----------------------------------------
     Header
     ----------------------------------------- */
  header {
    border-bottom: 1px solid #E2E0D8;
    padding: 20px 0;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3C5240;
  }

  nav a {
    margin-left: 24px;
    font-size: 0.95rem;
  }

  /* Hamburger icon: hidden on desktop, shown on mobile below.
     We use a hidden checkbox + label trick so the menu opens
     and closes without needing any JavaScript. */
  .menu-toggle {
    display: none;
  }

  .hamburger {
    display: none;                  /* only appears on small screens, see media query */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;                  /* generous padding = easier to tap on a phone */
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background-color: #3C5240;
    display: block;
  }

  /* -----------------------------------------
     Hero section
     Demonstrates: background-image, background-color
     (as a fallback), font-style (italic), and font-color
     ----------------------------------------- */
  .hero {
    text-align: center;
    padding: 100px 0;
    background-color: #E7EDE3;                 /* fallback color if the image doesn't load */
    background-image: url('https://picsum.photos/1400/700?blur=2');
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* a dark overlay so white text stays readable on top of the photo */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(60, 82, 64, 0.65);   /* green tint, semi-transparent */
  }

  .hero .container {
    position: relative;                          /* sits above the overlay */
    z-index: 1;
  }

  .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #FAF9F5;                              /* font color: light, for contrast on dark photo */
  }

  .hero p {
    font-size: 1.1rem;
    font-style: italic;                          /* font style: italic */
    color: #E7EDE3;                               /* font color: soft green-white */
    max-width: 500px;
    margin: 0 auto 30px auto;
  }

  /* Buttons: a filled button and an outline "ghost" button,
     both act as links (they're <a> tags styled to look like buttons) */
  .button {
    display: inline-block;
    background-color: #E8A33D;                   /* button background color */
    color: #2F332E;                               /* button text color */
    padding: 14px 28px;                           /* tall enough to tap easily on touchscreens */
    border-radius: 4px;
    font-weight: 500;
  }

  .button:hover {
    background-color: #D9922C;                    /* slightly darker on hover */
  }

  .button-outline {
    display: inline-block;
    background-color: transparent;
    color: #FAF9F5;
    border: 1.5px solid #FAF9F5;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 12px;
  }

  .button-outline:hover {
    background-color: rgba(255,255,255,0.1);
  }

  /* -----------------------------------------
     Services section
     ----------------------------------------- */
  .services {
    background-color: #F0EFE7;
  }

  .services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .service-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1;
    min-width: 200px;
  }

  /* images inside each service card */
  .service-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;             /* crops the image to fill the box neatly */
    border-radius: 6px;
    margin-bottom: 14px;
  }

  .service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .service-item p {
    font-size: 0.95rem;
    color: #5A5F54;
  }

  /* -----------------------------------------
     Pricing section
     ----------------------------------------- */
  .pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .price-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    border: 1px solid #E2E0D8;
    padding: 30px 20px;
    border-radius: 6px;
  }

  .price-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .price-item .amount {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: #3C5240;
    margin-bottom: 14px;
  }

  /* -----------------------------------------
     Contact section
     ----------------------------------------- */
  .contact {
    background-color: #3C5240;
    color: #FAF9F5;
    text-align: center;
  }

  .contact h2 {
    color: #FAF9F5;
    margin-bottom: 14px;
  }

  .contact p {
    color: #D9E2D7;
    margin-bottom: 24px;
  }

  .contact .button {
    background-color: #FAF9F5;
    color: #3C5240;
  }

  /* -----------------------------------------
     Footer
     ----------------------------------------- */
  footer {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: #8A8F84;
  }

  /* -----------------------------------------
     Responsive: everything below this line only
     applies on screens 600px wide or smaller
     (phones, mostly).
     ----------------------------------------- */
  @media (max-width: 600px) {

    /* stack the 3-column sections into 1 column */
    .service-list, .price-list {
      flex-direction: column;
    }

    /* smaller heading sizes so they don't wrap awkwardly */
    .hero h1 {
      font-size: 1.8rem;
    }

    .hero {
      padding: 70px 0;
    }

    section {
      padding: 40px 0;
    }

    /* show the hamburger icon, hide the row of nav links */
    .hamburger {
      display: flex;
    }

    nav {
      display: none;                       /* hidden by default on mobile */
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #FAF9F5;
      border-bottom: 1px solid #E2E0D8;
      flex-direction: column;
      padding: 10px 20px;
    }

    /* when the checkbox is checked (icon tapped), reveal the nav */
    .menu-toggle:checked ~ nav {
      display: flex;
    }

    header .container {
      position: relative;                  /* so the dropdown nav positions correctly */
    }

    nav a {
      margin-left: 0;
      padding: 14px 0;                     /* taller tap area for fingers */
      font-size: 1rem;
      border-bottom: 1px solid #E2E0D8;
    }

    nav a:last-child {
      border-bottom: none;
    }

    /* stack hero buttons instead of squeezing side by side */
    .hero .button,
    .hero .button-outline {
      display: block;
      width: 100%;
      max-width: 280px;
      margin: 10px auto 0 auto;
    }

    .button-outline {
      margin-left: auto;
    }
  }
