:root {
  --sage-green-dark: #5d756a;
  --sage-green: #A6B59B;
  --sage-green-mid: #7b9388;
  --sage-green-semi: #8DA294;
  --sage-green-header: #BFC8B4;
  --sage-green-lighter: #e1e5dc;
  --sage-green-lightest: #eef0ea;
  --sage-green-light: #B8C5AC;
  --deep-olive: #7A8673;
  --deep-olive-dark: #65715E;
  --deep-olive-logo: #7e8073;
  --deep-olive-light: #889681;

  --rustic-brown: #42373B;
  --rustic-brown-light: #5B4A50;
  --rustic-brown-dark: #353132;

  --mocha-crust: #A67C68;
  --mocha-crust-light: #B88A74;
  --mocha-crust-dark: #8C5E4B;

  --warm-copper: #A47148;
  --warm-copper-light: #B9825A;
  --warm-copper-dark: #8C5E3E;

  --golden-wheat: #D6AD60;
  --golden-wheat-light: #E2C07A;
  --golden-wheat-dark: #B89048;
  --golden-wheat-lighter: #E9CF9C;
  --golden-wheat-lightest: #F1E0BD;


  --muted-tan: #CEB398;
  --muted-tan-light: #DDC7A2;
  --muted-tan-dark: #B89C7D;

  --crust-brown: #A98448;
  --crust-brown-light: #B89255;
  --crust-brown-dark: #8F703A;

  --parchment-flour: #F7F3F0;
  --parchment-flour-light: #FBF8F5;
  --parchment-flour-dark: #EAE6E2;

  --buttermilk-beige: #F2E6D8;
  --buttermilk-beige-light: #F7ECE0;
  --buttermilk-beige-dark: #E0D5C7;

  --clay-taupe: #D8D3CD;
  --clay-taupe-light: #E2DDD7;
  --clay-taupe-dark: #C6C1BA;

  --blush-rose: #EADBD7;
  --blush-rose-light: #F3E7E3;
  --blush-rose-dark: #DCCAC4;

  --toasted-mauve: #A88982;
  --toasted-mauve-light: #B69A93;
  --toasted-mauve-dark: #8F716A;

  --deep-ink: #3A405A;
  --deep-ink-light: #4B5170;
  --deep-ink-dark: #2D3248;

  --text-dark: #2A2A2A;

  --font-brand: "Cookie", script;
  --font-header: "Lovelace", serif;
  --font-body: "avenirNext", sans-serif;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  /* starting state */
  transition: opacity .3s, transform .3s;
}

.fade-up.active {
  animation: fadeUp 0.8s ease-out forwards;
}


::-webkit-scrollbar {
  width: 16px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-horizontal {
  height: 16px;
}

@font-face {
  font-family: 'Cookie';
  src: url('/fonts/cookie.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lovelace';
  src: url('/fonts/lovelace.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'avenirNext';
  src: url('/fonts/avenirNext-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'avenirNext';
  src: url('/fonts/avenirNext-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'avenirNext';
  src: url('/fonts/avenirNext-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'avenirNext';
  src: url('/fonts/avenirNext-DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

html:hover {
  scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
}

::selection {
  background-color: var(--sage-green-mid);
  color: var(--deep-ink);
}

p b {
  letter-spacing: -.5px;
}

p,
li {
  margin-bottom: 1rem;
  letter-spacing: -.125px;
}

h1,
h2 {
  font-family: var(--font-header);
  font-weight: 700;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
}

body {
  color: var(--text-dark);
  background-color: var(--parchment-flour);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--deep-olive-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color .1s ease;
}

a:hover {
  color: var(--deep-olive-light);
  text-decoration: none;
}


a.site-link {
  color: var(--warm-copper);
  text-decoration: none;
}

a.site-link:hover {
  color: var(--sage-green-mid);
  text-decoration: underline;
  text-underline-offset: 1.25px;
  transition: color .1s ease, text-decoration .1s ease;
}

b {
  font-weight: 700;
}

.wrapper {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.wrapper.row {
  padding: 0;
  flex-direction: row;
}

.wrapper.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  align-items: center;
}

hr {
  border: none;
  height: 1px;
  width: 100%;
  background-color: var(--sage-green);
  margin: .5rem auto 1rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all .8s ease;
}

.header-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 400;
  text-align: center;
  color: var(--parchment-flour);
}

.header-top .offer {
  text-box-trim: trim-both;
}

.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  transition: padding .25s ease;
}

.header-link {
  color: inherit;
  text-decoration: none;
}

.header-link:hover {
  color: inherit;
  text-decoration: none;
}

.supernote {
  position: relative;
  top: -4px;
  right: 0;
}

.supernote svg {
  width: .5rem;
  height: .5rem;
}

/* .main-nav a.external::after {
  content: '↗';
  margin-left: 1px;
  position: relative;
  top: -4px;
  font-size: 15px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.main-nav a.external:hover::after {
  transform: translate(2px, -2px);
} */

.page-logo {
      user-select: none;
    max-width: 300px;
    height: auto;
}

.logo-wordmark {
  color: var(--sage-green-dark);
  transition: color .15s cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.logo-wordmark:hover {
  color: var(--sage-green-semi);
}

.content-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.main-nav {
  display: flex;
}

.main-nav a:not(.main-nav a.btn) {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--sage-green-dark);
  font-family: var(--font-body);
  transition: color .1s ease, background-color .1s ease, text-decoration .1s ease, font-size .4s ease;
}

.main-nav a:hover:not(.main-nav a.btn:hover) {
  color: var(--warm-copper);
}

.logo-link {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}

.logo-link:focus {
  outline: none;
}

.logo-link:active {
  color: inherit;
}

.btn {
  font-family: var(--font-body);
  text-decoration: none;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  border: 2px solid var(--_border-color);
  line-height: 1;
  cursor: pointer;
  letter-spacing: -.125px;
  display: inline-flex;
  gap: .25rem;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955), padding .4s ease, background 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955), font-size .4s ease, transform .15s cubic-bezier(0.455, 0.03, 0.515, 0.955), padding .15s cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow .15s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color .15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: fit-content;
}

.btn:hover {
  text-decoration: none;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: scale(.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.btn.primary {
  --_border-color: var(--golden-wheat);
  background-color: var(--golden-wheat);
  color: var(--rustic-brown);
}

.btn.primary:hover {
  --_border-color: var(--golden-wheat-light);
  background-color: var(--golden-wheat-light);
}

.btn.primary:active {
  --_border-color: var(--golden-wheat-dark);
  background-color: var(--golden-wheat-dark);
}

.btn.secondary {
  --_border-color: var(--sage-green-mid);
  background-color: var(--sage-green-mid);
  color: var(--parchment-flour-light);
}

.btn.secondary:hover {
  --_border-color: var(--sage-green-semi);
  background-color: var(--sage-green-semi);
}

.btn.secondary:active {
  --_border-color: var(--sage-green-dark);
  background-color: var(--sage-green-dark);
}

.btn.tertiary {
  --_border-color: var(--clay-taupe);
  background-color: var(--clay-taupe);
  color: var(--rustic-brown);
}

.btn.tertiary:hover {
  --_border-color: var(--buttermilk-beige);
  background-color: var(--buttermilk-beige);
}

.btn.mocha {
  --_border-color: var(--mocha-crust);
  background-color: var(--mocha-crust);
  color: var(--parchment-flour-light);
}

.btn.mocha:hover {
  --_border-color: var(--mocha-crust-light);
  background-color: var(--mocha-crust-light);
}

.btn.mocha:active {
  --_border-color: var(--mocha-crust-dark);
  background-color: var(--mocha-crust-dark);
}


.btn.ghost {
  --_border-color: var(--sage-green-mid);
  background-color: transparent;
  color: var(--sage-green-mid);
  box-shadow: none;
}

.btn.ghost:hover {
  --_border-color: var(--sage-green-mid);
  background-color: var(--sage-green-mid);
  color: var(--parchment-flour-light);
}

.btn.ghost:active {
  --_border-color: var(--sage-green-dark);
  background-color: var(--sage-green-dark);
}

.btn.wide {
  width: 100%;
  display: block;
}

.btn.rounded {
  border-radius: 999px;
}

.site-header {
  background-color: var(--parchment-flour);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--golden-wheat);
}

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

.site-title a {
  font-family: var(--font-family);
  font-size: 1.75rem;
  color: var(--rustic-brown);
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: var(--warm-copper);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--golden-wheat);
}

.form-company {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

footer {
  display: flex;
  flex-direction: column;
  padding: 2rem 0 0;
  font-family: var(--font-body);
  color: var(--rustic-brown);
  background-color: var(--parchment-flour-light);
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

footer .wrapper {
  width: 100%;
  justify-content: space-between;
  padding: 1rem 1rem .5rem;
}

.footer-inner .wrapper {
  flex-direction: row;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
  align-items: center;
}

.footer-logo img {
  user-select: none;
  max-width: 300px;
  height: auto;
}

.footer-logo,
.footer-logo img {
  display: block;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
}

.footer-legal-links a {
  color: var(--warm-copper);
  text-decoration: none;
}

.contact-info a,
.footer-links a {
  color: var(--warm-copper);
  text-decoration: none;
}

.contact-info a:hover,
.footer-links a:hover,
.footer-legal-links a:hover {
  color: var(--sage-green-mid);
  text-decoration: underline;
  text-underline-offset: 1.25px;
  transition: color .1s ease, text-decoration .1s ease;
}

.footer-left,
.footer-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.footer-right h3,
.footer-left h3 {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
  color: var(--sage-green-dark);
  font-family: var(--font-header);
}

.footer-socials {
  display: flex;
  gap: .5rem;
}

.footer-socials a {
  font-size: 1.25rem;
  margin: 0 .5rem;
  color: var(--warm-copper);
  transition: color .1s ease, transform .1s ease;
}

.footer-socials a:hover {
  color: var(--sage-green-mid);
  transform: scale(1.1);
}

.footer-socials svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.footer-bottom .wrapper {
  padding: .5rem 1rem 1.5rem
}

.footer-copy {
  margin-top: .5rem;
}

.footer-copy p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: .125rem;
}

.footer-social-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-credit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sage-green-mid);
  padding: 1rem;
  font-size: .875rem;
  color: var(--parchment-flour-light);
  border-top: 1px solid var(--sage-green-dark)
}

.footer-credit p {
  margin-bottom: 0;
}

.footer-credit a {
  color: var(--parchment-flour-light)
}

.footer-credit a:hover {
  color: var(--golden-wheat)
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

.footer-newsletter h3 {
  margin-bottom: 1rem;
}

.newsletter-input {
  display: flex;
  border: 1px solid var(--sage-green-mid);
  border-radius: 6px;
  position: relative;
  height: 3rem;
}

.newsletter-input label {
  position: absolute;
  left: 8px;
  top: .6875rem;
  color: #888;
  font-size: .875rem;
  letter-spacing: -.125px;
  pointer-events: none;
  cursor: text;
  background-color: #FFF;
  padding: 0 .5rem;
  transition: .2s ease, border .2s;
}

.newsletter-input input:focus+label,
.newsletter-input input:not(:placeholder-shown)+label {
  top: -1rem;
  left: -.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 6px;
  border: 1px solid var(--sage-green-dark);
  color: var(--warm-copper);
}

.newsletter-input button {
  background-color: var(--warm-copper);
  color: var(--parchment-flour);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color .3s ease;
}

.newsletter-btn-svg {
  width: 1rem;
  height: 1rem;
}

.newsletter-input button:hover {
  background-color: var(--golden-wheat);
  color: var(--text-dark);
}

.newsletter-input button:active {
  background-color: var(--golden-wheat-dark);
}

.contact-form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group label {
  position: absolute;
  left: 8px;
  top: .75rem;
  color: #888;
  font-size: .875rem;
  letter-spacing: -.125px;
  pointer-events: none;
  cursor: text;
  transition: 0.2s ease;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group:focus-within label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -1.6275rem;
  left: 0;
  font-size: 0.875rem;
  letter-spacing: 0;
  color: var(--sage-green-dark);
}

.form-group input,
.form-group textarea,
.newsletter-input input {
  width: 100%;
  padding: 0.6rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input {
  height: 48px;
  margin-bottom: 1rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 250px;
}

.form-group input:focus,
.form-group textarea:focus,
.newsletter-input input:focus {
  outline: none;
  border-color: var(--sage-green-dark);
  box-shadow: 0 0 0 2px rgba(93, 117, 106, .2);
}

.contact-form button {
  cursor: pointer;
  width: 100%;
  text-align: center;
}


.contact-form button:disabled {
  background-color: #888;
  cursor: default;
}

.contact-form button:disabled:active {
  transform: scale(1);
}

.company-form {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

#contactResponse {
  margin-top: 1rem;
  display: none
}

a.nav-link.active {
  position: relative;
  color: var(--golden-wheat-lighter)
}

a.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: .125rem;
  background-color: var(--golden-wheat-lighter)
}

@media screen and (min-width: 769px) {

  *:root {
    --subhead-height: 56px;
  }

  body {
    line-height: 1.7;
    font-size: 1.0625rem;
  }


  .wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }

  .content-wrapper {
    background: var(--parchment-flour-light);
  }

  header {
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    margin: 0 auto;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    justify-content: flex-start;
    background-color: var(--parchment-flour-light);
    border-bottom: 1px solid var(--sage-green-dark);
    transition: height .6s ease, border-color .6s ease, box-shadow .6s ease, background-color .6s ease;
  }


  .header-top {
    position: relative;
    background-color: var(--sage-green-mid);
    font-size: 1rem;
    transition: font-size .6s ease;
  }

  .header-top-inner {
    justify-content: flex-end;
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 1440px;
    transition: padding .6s ease;
  }

  .header-top .offer {
    order: 1;
  }

  .external-links {
    order: 2;
    display: flex;
    gap: .5rem;
    font-size: .875rem;
    padding: 0 .5rem;
    margin: 0 0 0 auto;
    width: fit-content;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    order: 3;
  }

  .contact-info svg {
    width: 1rem;
    height: 1rem;
    display: block;
  }

  .header-top-inner a {
    display: flex;
    gap: .25rem;
    padding: .75rem .375rem .6125rem;
    line-height: 1;
    border-radius: 4px;
    width: fit-content;
    align-items: center;
    color: var(--parchment-flour-light);
    transition: background-color .2s ease;
  }

  .svg-link {
    display: flex;
    align-items: center;
    gap: .5rem
  }

  .svg-link svg {
    width: 1rem;
    height: 1rem;
  }

  .svg-link .svg-link-svg {
    width: .625rem;
    height: .625rem;
    align-self: baseline;
  }

  .header-top-inner a:hover {
    color: var(--golden-wheat-lighter);
    text-decoration: none;
  }

  .header-inner {
    max-width: 1440px;
    justify-content: space-between;
    padding: 0 2rem;
    transition: height .6s ease, padding .6s ease
  }

  .main-nav {
    border-radius: .5rem;
    align-items: center;
    transition: height .6s ease;
  }

  .main-nav a:not(.main-nav a.btn) {
    font-size: 1rem;
    padding: .3em 1.2em;
    display: flex;
    line-height: 1;
  }

  .hero-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: border-color .6s ease, padding .6s ease;
  }

  #bottom-nav {
    display: flex;
    flex-direction: column;
  }

  .main-nav .btn {
    margin-left: 1.2em
  }

  header.shrink {
    height: 6rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: height .6s ease, border-color .6s ease .6s, box-shadow .6s ease, background-color .6s ease;
  }

  header.shrink .header-top-inner {
    padding: .25rem 2rem;
  }

  header.shrink .logo,
  header.shrink .logo-link {
    height: auto;
    transition: color .1s ease;
  }

  header.shrink .hero-nav {
    padding: 0;
    border-color: transparent
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 250px;
    height: 100%;
    transition: max-width 0.6s ease, height 0.6s ease;
  }

  .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .btn {
    padding: .8em 1.2em;
    border-radius: 4px;
    font-size: 1rem;
  }

  .btn.small {
    font-size: .8125rem;
    padding: .5rem .75rem;
    font-weight: 500;
    letter-spacing: -.25px;
  }

  h1,
  h2 {
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(2.125rem, 2.5rem + .25vw, 3.75rem);
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: clamp(1.9375rem, 2.125rem + .25vw, 3.25rem);
    letter-spacing: -.75px;
    margin-bottom: 1rem;
  }

  h3 {
    line-height: 1.25;
    font-size: clamp(1.0625rem, 1.125rem + .125vw, 1.375rem);
    letter-spacing: -.325px;
  }

  .accordion-wrapper {
    margin: 20px auto 0;
    margin-inline: auto;
    max-width: 700px;
  }

  .accordion-content {
    padding: .5rem 0 .5rem 1rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, max-height 0.4s ease;
  }

  .accordion-content[aria-hidden="false"] {
    max-height: 500px;
  }

  .accordion-content[aria-hidden="true"]>div {
    margin: 0;
  }

  .accordion-content>div {
    overflow: hidden;
    margin: 8px 0;
    transition: margin 0.4s ease;
  }

  .accordion-content ul li {
    color: var(--rustic-brown);
    display: grid;
    grid-template-columns: 95px auto;
    align-items: top;
  }

  .accordion-content ul li b {
    color: var(--rustic-brown);
  }

  .accordion {
    padding: 0;
    margin: 8px 0;
    will-change: max-height;
  }

  .accordion-panel {
    padding: 0;
    margin: 0;
  }

  .accordion h3 {
    position: relative;
    font-size: 1.125rem;
    margin: 0;
  }

  .accordion-trigger {
    margin: 0;
    padding: 8px 2rem 8px 10px;
    position: relative;
    display: block;
    font-size: 1rem;
    background-color: var(--blush-rose);
    font: inherit;
    color: var(--rustic-brown);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  .accordion-trigger::after {
    font-family: "AvenirNext";
    font-weight: 200;
    content: "◀︎";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) scale(1);
    font-size: 0.625rem;
    color: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .accordion-trigger[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-90deg) scale(1.2);
    color: var(--toasted-mauve);
  }

  .accordion-content a {
    letter-spacing: unset;
    font-weight: 400;
    text-transform: capitalize;
  }

  .accordion-content a:last-of-type {
    margin: 0 0 .25rem;
  }

  footer {
    border-top: 2px solid var(--sage-green-mid);

  }

  .cta-wrapper {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    justify-content: center;
  }

}

@media screen and (min-width: 1203px) {

  :root {
    --header-height: 7.25rem;
  }

  .mobile-only {
    display: none !important;
  }

  .mobile-logo,
  .mobile-header,
  #nav-mobile {
    display: none
  }

  .header-inner {
    position: relative;
  }

  main {
    padding-top: var(--header-height);
  }

}

@media screen and (max-width: 768px) {

  *:root {
    --header-height: 3.5rem;
  }

  body {
    line-height: 1.7;
    font-size: .9375rem;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: -2.5px;
    line-height: 1.2;
    text-align: center;
    max-width: 330px;
    margin: 0 auto;
  }

  h2 {
    font-size: clamp(1.5rem, 1.75rem + .25vw, 2rem);
    letter-spacing: -1.75px;
    line-height: 1.2;
  }

  h3 {
    letter-spacing: -.5px;
    line-height: 1.2;
    font-size: clamp(1.15rem, 1.25rem + .25vw, 1.75rem);
  }

  .btn {
    padding: .9em 1.8em;
    border-radius: .25rem;
    font-size: .9375rem
  }

  .footer-inner,
  .footer-inner .wrapper {
    flex-direction: column;
  }

  .footer-inner .footer-logo {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-inner .footer-left {
    order: 2;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-inner .footer-right {
    order: 3;
    gap: 1.5rem;

  }

  .contact-info a {
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .newsletter-input button {
    margin-top: 0 !important;
  }

  .newsletter-input label {
    top: .75rem;
  }

  header {
    border-bottom: 1px solid var(--sage-green-mid)
  }

  .cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    justify-content: center;
  }

      .cta-wrapper .btn {
    width: 100%;
  }

}

@media screen and (max-width: 768px),
screen and (min-width: 769px) and (max-width: 1202.99px) {


  .desktop-only,
  #bottom-nav,
  .external-links,
  header .contact-info {
    display: none;
  }

  header {
    background-color: var(--parchment-flour-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);

  }

  header .logo-block,
  header .logo-link,
  header .logo-wrapper {
    margin: auto auto auto 0;
    order: 2;
    width: 100%;
    max-height: 34px;
    max-width: 204px;
  }

  /* .logo-wordmark {
    color: var(--parchment-flour-light)
  }

  .logo-wordmark:hover {
    color: var(--golden-wheat-light);
  } */

  .btn.primary.pill.mobile-only {
    order: 3;
    margin-left: auto;
    border-radius: 999px;
    padding: .6em .8em .5em;
    font-size: .78125rem;
  }

  .hero-nav {
    display: none;
  }

  h1,
  h2 {
    margin-bottom: 1rem;
  }

  .btn.small {
    font-size: .8125rem;
    padding: .5rem .75rem;
    font-weight: 500;
    letter-spacing: -.25px;
  }

  header {
    position: fixed;
    left: 0;
    border-radius: 0;
    top: 0;
    z-index: 10;
    height: 100%;
    max-height: var(--header-height);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow-y: visible;
  }

  .header-top {
    display: none;
    background-color: var(--sage-green-dark);
    padding: .25rem 1rem;
  }

  .header-top span {
    font-size: 12px;
    font-weight: 500;
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: center;
    align-content: center;
    width: 100%;
    justify-content: space-between;
    padding: .25rem .75rem
  }

  .svg-link svg {
    width: 1rem;
    height: 1rem;
  }

  #bodyBg {
    opacity: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    pointer-events: none;
  }

  #bodyBg.active {
    z-index: 9;
    opacity: 1;
    transition: opacity .3s ease;
    pointer-events: all;
  }

  .no-scroll {
    overflow-y: hidden;
  }

  #nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--parchment-flour-light);
    width: 75%;
    max-width: 325px;
    padding: 1rem 1.5rem calc(6rem + env(safe-area-inset-bottom));
    gap: .75rem;
    height: 100%;
    min-height: -webkit-fill-available;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 12;
    -webkit-overflow-scrolling: touch;
  }

  #nav-mobile.nav-open {
    transform: translateX(0%);
    overflow-y: auto;
    scrollbar-width: none;
  }

  #nav-mobile.nav-open::-webkit-scrollbar {
    display: none;
  }

  #nav-mobile a:not(#nav-mobile .btn):not(#nav-mobile .mobile-nav-footer a, #bottom-nav a.btn) {
    display: flex;
    font-family: var(--font-body);
    color: var(--rustic-brown);
    text-decoration: none;
    width: fit-content;
    padding: .375rem 0;
    transition: color 0.2s ease;
    text-align: left;
    font-weight: 400;
    gap: .25rem;
    font-size: .90625rem;
  }

  #nav-mobile a.active:not(#nav-mobile .btn):not(#nav-mobile .mobile-nav-footer a, #bottom-nav a.btn) {
    position: relative;
    color: var(--golden-wheat-dark);
    font-weight: 500;

  }

  #nav-mobile a.active:not(#nav-mobile .btn):not(#nav-mobile .mobile-nav-footer a, #bottom-nav a.btn)::after {
    background-color: var(--golden-wheat-dark);
    height: .0625rem;
  }

  #nav-mobile a:not(#nav-mobile a.btn:hover):not(#bottom-nav a.btn:hover):hover {
    color: var(--warm-copper);
  }

  #nav-mobile .wrapper {
    padding: 0;
  }

  .nav-wrapper {
    display: flex;
    flex-direction: column;
    height: 150vh;
    overflow-y: scroll;
    scrollbar-width: none;
    gap: .75rem
  }

  #nav-mobile h3 {
    font-family: var(--font-header);
    color: var(--sage-green-dark);
    font-size: 1.1875rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: .375rem;
    padding: .25rem .25rem 0 0;
    letter-spacing: -.75px;
  }

  .wrapper.links {
    margin-top: 0;
    margin-left: 0;
  }

  #nav-mobile .header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 180px;
    margin: 0 auto .5rem;
  }

  #nav-mobile .wrapper.links a {
    line-height: 1.6;
  }

  #nav-mobile .btn {
    font-size: .9375rem;
    margin: .25rem auto .5rem;
    padding: .7em .9em .6em;
    width: 100%;
    border-radius: 999px;
  }

  .mobile-nav-footer {
    margin: auto auto 0 auto;
    display: flex;
    flex-direction: column;
  }

  #nav-mobile .mobile-nav-footer p.b-name {
    font-weight: 700;
  }

  .mobile-nav-footer p {
    color: var(--rustic-brown);
  }

  #nav-mobile .mobile-nav-footer p,
  #nav-mobile .mobile-nav-footer a {
    font-size: .8125rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 500;
    padding: 2px 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  #mobileHamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    height: .875rem;
    width: 1.625rem;
    transform: scale(1);
    margin: .5rem .75rem .5rem 0;
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    align-self: center;
    justify-self: end;
    border: none;
    order: 1;
  }

  #mobileHamburger span {
    display: block;
    height: 2px;
    margin: 0;
    border-radius: 8px;
    background-color: var(--sage-green-mid);
    transition: transform 0.3s ease, background-color 0.3s ease, width 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    justify-content: center;
  }

  #mobileHamburger span:nth-child(1) {
    background-color: var(--sage-green-mid);
    width: 100%;
  }

  #mobileHamburger span:nth-child(2) {
    background-color: var(--sage-green-mid);
    opacity: 1;
    width: 100%;
  }

  #mobileHamburger span:nth-child(3) {
    background-color: var(--sage-green-mid);
    width: 100%;
  }

  #mobileHamburger.open span:nth-child(1) {
    width: 75%;
    transform: translateX(3.5px);
  }

  #mobileHamburger.open span:nth-child(2) {
    width: 100%;
  }

  #mobileHamburger.open span:nth-child(3) {
    width: 50%;
    transform: translateX(7px);
  }

  #mobileHamburger.open span {
    background-color: var(--golden-wheat);
  }


  .big-btn {
    padding: 1.2em 2.4em;
    font-size: clamp(.875rem, 1rem + .025vw, 1.25rem);
  }

  .footer-links ul {
    flex-direction: column;
  }



  .accordion-wrapper {
    margin: 1.25rem auto 0;
    margin-inline: auto;
  }

  .accordion-content {
    padding: .5rem 0 .5rem 1rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, max-height 0.4s ease;
  }

  .accordion-content[aria-hidden="false"] {
    max-height: 500px;
  }

  .accordion-content[aria-hidden="true"]>div {
    margin: 0;
  }

  .accordion-content>div {
    overflow: hidden;
    margin: .25rem 0;
    transition: margin 0.4s ease;
  }

  .accordion-content ul li {
    color: var(--rustic-brown);
    display: grid;
    grid-template-columns: 95px auto;
    align-items: top;
  }

  .accordion-content ul li b {
    color: var(--rustic-brown);
  }

  .accordion {
    padding: 0;
    margin: 8px 0;
  }

  .accordion-panel {
    padding: 0;
    margin: 0;
  }

  .accordion h3 {
    position: relative;
    font-size: 1rem;
    margin: 0;
  }

  .accordion-trigger {
    margin: 0;
    padding: 8px 2rem 8px 10px;
    letter-spacing: -.75px;
    position: relative;
    display: block;
    font-size: 1rem;
    background-color: var(--blush-rose);
    font: inherit;
    color: var(--rustic-brown);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  .accordion-trigger::after {
    font-family: "AvenirNext";
    font-weight: 200;
    content: "◀︎";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) scale(1);
    font-size: 0.625rem;
    color: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .accordion-trigger[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-90deg) scale(1.2);
    color: var(--toasted-mauve);
  }

  /* 
  form {
    margin-top: 1rem !important;
  }

  form button {
    max-width: 100% !important;
    margin-top: 1rem !important;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    padding: 16.5px 24px !important
  } */

  .faq-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--blush-rose)
  }

  .food-law-p {
    font-size: .9375rem;
    max-width: 500px;
    color: var(--parchment-flour);
  }

  .food-law-p:first-of-type {
    margin-bottom: 1rem;
  }

  .image-banner-text {
    font-size: 1.125rem;
    letter-spacing: -.25px;
  }

  .class-caption {
    text-align: left;
  }

}

@media screen and (min-width: 769px) and (max-width: 1366px) {

  /* 
  #hero {
    padding-top: 1rem;
  } */

}

@media screen and (min-width: 769px) and (max-width: 1440px) {

  .content-wrapper {
    max-width: calc(100% - 10%) !important;
  }

}

@media screen and (min-width: 769px) and (max-width: 1202.99px) {

  *:root {
    --header-height: 3.75rem;
  }


  h1 {
    font-size: clamp(1.9375rem, 2.125rem + .125vw, 3rem);
    letter-spacing: -1.5px;
    text-align: inherit;
    max-width: initial;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  h2 {
    font-size: clamp(1.5rem, 1.75rem + .125vw, 2.7125rem);
    letter-spacing: -1px;
    line-height: 1.2;
  }

  main {
    padding-top: var(--header-height);
  }

  header {
    border-bottom: 4px solid var(--sage-green-mid)
  }

  header .logo-block,
  header .logo-link,
  header .logo-wrapper {
    margin: auto;
    order: 2;
    width: 100%;
    max-height: 42px;
    max-width: 252px;
  }

  .btn.primary.pill.mobile-only {
    order: 3;
    font-size: .9375rem;
    margin-left: auto;
    border-radius: .375rem;
    padding: .7em 1.4em;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: .5rem 2rem;
  }

  #nav-mobile {
    min-height: 100vh;
  }

    .cta-wrapper .btn {
    width: 100%;
  }

}

@media screen and (min-width: 769px) and (max-width: 1100px) {

  .footer-inner .wrapper {
    display: grid;
    justify-content: space-evenly;
  }

  .footer-inner .footer-logo {
    grid-row: 1;
    grid-column: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  footer button {
    margin-top: 0 !important
  }

  .footer-inner .footer-left {
    grid-row: 2;
    grid-column: 1;
    gap: 1.5rem;
  }

  .footer-inner .footer-right {
    grid-row: 2;
    grid-column: 2;
    gap: 1.5rem;
  }

}