  @import url('https://fonts.googleapis.com/css2?family=Bellota+Text&family=Birthstone+Bounce:wght@500&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand&display=swap');

  @font-face {
    font-family: "vincent";
    src: url("vincent.ttf") format("truetype");
  }

  body {
    margin: 0;
    background: #E6D9BF url(bgbody.png);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    color: #a57e34;
  }

  a { color: #a57e34; text-decoration: none; }
  a:hover { color: #7b5536; }

  .site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* HEADER BACKGROUND BAR */
  .header-bg {
    width: 100%;
    height: 250px;
    background: #6E4A2A url(bghead.png) no-repeat top center;
    background-size: cover;
    position: relative;
    z-index: 1;
  }

  /* HEADER IMAGE + OVERLAY LAYERED ON TOP */
  .header {
    width: 1233px;
    margin-top: -244px;
    position: relative;
    z-index: 2;
  }

  .header-inner {
    position: relative;
    width: 1233px;
    max-width: 100%;
    margin: 0 auto;
  }

  .header-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .header-overlay {
    position: absolute;
    top: 420px; /* moved 170px down */
    left: 580px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 3;
  }

  .site-title {
    font-family: "vincent";
    font-size: 70px;
    color: #58371c;
  }

  .nav {
    margin-top: -10px;
  }
  .nav a {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: #58371c;
    text-decoration: none;
    margin-right: 20px;
  }
  .nav a:hover { color: #7b5536; }

  .content {
    width: 870px;
    margin-top: 10px;
    position: relative;
    z-index: 0;
  }

  .footer {
    width: 100%;
    height: 60px;
    background: #6E4A2A url(bghead.png);
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .footer-inner {
    width: 600px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #e5d8bd;
  }
  .footer-inner a { color: #e5d8bd; }
  .footer-inner a:hover { color: #7b5536; }

  h1, h2, h3 {
    font-family: "vincent";
    color: #865423;
    text-align: left;
    margin-top: 0;
  }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 20px; }

  /* RESPONSIVE LAYOUT: IGNORE HEADER BG AND LAYERING */
  @media (max-width: 1300px) {
    .header-bg { display: none; }
    .header { width: 100%; margin-top: 0; }
    .header-inner { width: 100%; padding: 0 20px; position: static; }
    .header-overlay { position: static; padding-left: 0; margin-top: 10px; align-items: center; text-align: center; }
    .site-title { text-align: center; font-size: 50px; }
    .nav { margin-top: 10px; text-align: center; }
    .nav a { display: inline-block; margin: 0 10px; font-size: 24px; }
    .header-image { width: 100%; height: auto; }
    .content { width: 90%; margin-top: 20px; }
  }