/*  // Reset.
    // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain) */

  * {
    box-sizing: border-box;
  }
  
  html, body, div, span, applet, object,
  iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
  pre, a, abbr, acronym, address, big, cite,
  code, del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var, b,
  u, i, center, dl, dt, dd, ol, ul, li, fieldset,
  form, label, legend, table, caption, tbody,
  tfoot, thead, tr, th, td, article, aside,
  canvas, details, embed, figure, figcaption,
  footer, header, hgroup, menu, nav, output, ruby,
  section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }

  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }

  body {
    line-height: 1;
  }

  ol, ul {
    list-style:none;
  }

  blockquote, q {
    quotes: none;

    &:before,
    &:after {
      content: '';
      content: none;
    }
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  body {
    -webkit-text-size-adjust: none;
  }

  mark {
    background-color: transparent;
    color: inherit;
  }

  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }

  input, select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
  }
:root {
  --dark-green: #0c160b;
  --gold: #ffbf66;
  --green: #22401e;
}

@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-Ultralight.otf") format("OpenType");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-Medium.otf") format("OpenType");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-Bold.otf") format("OpenType");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Hatton";
  src: 
    url("/fonts/PPHatton-UltralightItalic.otf") format("OpenType"),
    url("/fonts/PPHatton-MediumItalic.otf") format("OpenType"),
    url("/fonts/PPHatton-BoldItalic.otf") format("OpenType");
  font-style: italic;
  font-weight: 200 500 700;
  font-display: swap;
}

html {
  background-color: var(--green);
  font-family: system-ui, sans-serif;
  font-size: 16px;
}

body {
  color: var(--gold);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 0 1rem;

  @media only screen and (width >= 768px) {
    padding: 0 2rem;
  }

  & .btn {
    align-items: center;
    background-color: inherit;
    border: 1px solid var(--gold);
    border-radius: 0.25rem;
    color: var(--gold);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 0.25rem;
    justify-content: center;
    letter-spacing: 6%;
    min-height: 2.125rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;

    &:hover:not([aria-disabled="true"]) {
      background-color: var(--gold);
      color: var(--green);
      text-decoration: none;
    }
  }

  & header {
    align-items: center;
    display: flex;
    width: 100%;

    & a.home {
      align-items: center;
      color: var(--gold);
      display: flex;
      font-family: "PP Hatton";
      font-size: 0.75rem;
      font-weight: 700;
      gap: 0.5rem;
      text-decoration: none;
      text-transform: uppercase;

      & span {
        display: none;

        @media only screen and (width >= 420px) {
          display: inline;
        }
      }

      & img.logo {
        max-width: 50px;
        width: 100%;
      }
    }

    & nav {
      align-items: center;
      display: flex;
      gap: 2rem;
      padding: 1rem 0;
      margin-left: auto;

      & svg {
        fill: var(--gold);
        max-width: 30px;
        width: 100%;
      }

      > a[hidden] {
        display: none;
      }
    }
  }

  & > section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: auto;
    text-align: center;

    & img.logo {
      max-width: 200px;
      width: 100%;

      @media only screen and (width >= 768px) {
        max-width: 300px;
      }
    }

    & h1 {
      font-family: "PP Hatton";
      font-size: 1.75rem;
      font-weight: 700;
      text-transform: uppercase;

      @media only screen and (width >= 768px) {
        font-size: 2.625rem;
      }

      & small {
        display: block;
        font-size: 1rem;
        font-weight: 100;
        letter-spacing: 3px;
        margin: 0.5rem 0;

        @media only screen and (width >= 768px) {
          font-size: 2rem;
        }

        &:before,
        &:after {
          content: "—";
          padding: 0 5px;
        }
      }
    }

    & h2 {
      font-family: "PP Hatton";
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 3px;

      @media only screen and (width >= 768px) {
        font-size: 1.125rem;
      }
    }

    & form {
      max-width: 600px;
      text-align: left;
      width: 100%;

      & button.btn {
        font-family: inherit;
        margin-top: 0.5rem;
      }

      & .field {
        display: flex;
        flex-direction: column;
      }

      & label {
        font-size: 0.75rem;
        font-weight: bold;
        letter-spacing: 6%;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
      }

      & input[type="text"], 
      & input[type="email"], 
      & input[type="number"], 
      & textarea {
        background-color: var(--green);
        border: 1px solid var(--gold);
        border-radius: 0.25rem;
        color: var(--gold);
        font-size: 1.125rem;
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        width: 100%;

        &::placeholder {
          color: var(--gold);
          opacity: 0.5;
        }
      }
    }
  }
}

footer {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.8;
  padding: 1rem 0;
  text-align: center;
}