/* RESET */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: 100dvh;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: 0 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  overflow: visible;
}

button,
fieldset,
iframe,
img {
  border: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* VARIABLES */

:root {
  --nav-height: 4.6rem;

  --ff-serif: "Garamond Pro", Georgia, Times, "Times New Roman", serif;
  --ff-sans-serif: "Avant Garde", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

@media (min-width: 48em) {
  :root {
    --nav-height: 6.25rem;
  }
}

/**** GLOBAL ****/

body {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: var(--ff0-serif);
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-sans-serif);
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h1 {
  font-size: clamp(2rem, 0.926vw + 1.792rem, 2.625rem);
}

h2 {
  font-size: clamp(1.5rem, 0.741vw + 1.333rem, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 0.37vw + 1.167rem, 1.5rem);
}

h4 {
  font-size: 1.1875rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1.1875rem;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

/**** FORMS ****/

form.form {
  margin: 0 !important;
  padding: 0 !important;
}

@media only screen and (min-width: 48em) {
  form.form {
    max-width: 26rem;
  }
}

/* Inputs & Text Areas */

form.form .form-field {
  position: relative;
  margin-bottom: 1.25rem;
  margin-inline: 0 !important;
}

form.form .form-field label {
  display: inline-block;
  float: none;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  font-family: var(--ff-sans-serif) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: auto !important;
  padding: 0 !important;
}

form.form p.required label,
form.form span.required label {
  background-image: none !important;
}

form.form p.required label::after,
form.form span.required label::after {
  content: " *";
}

form.form .form-field input[type="text"],
form.form .form-field input[type="email"],
form.form .form-field input[type="password"],
form.form .form-field select,
form.form .form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  color: #000;
  display: block;
  font-family: var(--ff-sans-serif) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  margin: 0;
  outline: none;
  padding: 0.75rem 0.4375rem;
  transition: all 0.3s;
  width: 100%;
}

form.form .form-field textarea {
  height: 12rem;
  resize: none;
}

form.form .form-field input[type="text"]:focus,
form.form .form-field input[type="email"]:focus,
form.form .form-field input[type="password"]:focus,
form.form .form-field select:focus,
form.form .form-field textarea:focus {
  border-color: #a0a0a0;
  outline: none;
}

form.form .form-field input[type="text"]:read-only,
form.form .form-field input[type="email"]:read-only,
form.form .form-field input[type="password"]:read-only,
form.form .form-field select:read-only,
form.form .form-field textarea:read-only {
  color: #666;
  cursor: default;
}

form.form .form-field input[type="text"]:read-only:focus,
form.form .form-field input[type="email"]:read-only:focus,
form.form .form-field input[type="password"]:read-only:focus,
form.form .form-field select:read-only:focus,
form.form .form-field textarea:read-only:focus {
  border-color: inherit;
  transition: none;
}

form.form .pd-checkbox {
  display: flex;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

form.form .pd-checkbox > label {
  display: inline-block;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  line-height: 1.4;
  padding-left: 0.25rem !important;
  vertical-align: middle;
  letter-spacing: normal;
  width: auto;
  text-transform: none;
}

form.form .pd-checkbox span.value {
  left: 0;
  position: absolute;
  top: 0;
}

form.form .pd-checkbox input {
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  display: flex;
  height: 0.8125rem;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  outline: none;
  position: relative;
  width: 0.8125rem;
}

form.form .pd-checkbox input:checked {
  background-color: #000;
}

form.form .pd-checkbox input:checked::after {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 1px;
  width: 5px;
}

form.form .form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(https://storage.pardot.com/1087812/1737585035t7UrbeEE/vcf_icon_caret_black.svg);
  background-position: top 1rem right 0.7rem;
  background-repeat: no-repeat;
  background-size: 0.6rem;
  padding-right: 2rem;
}

form.form .form-field.hide-input-label input + label {
  display: none;
}

form.form span.value {
  display: inline-block;
  margin-left: 0;
  width: 100%;
}

form.form span.required,
form.form label.required {
  font-weight: normal;
}

form.form span.errors {
  color: red;
  display: inline-block;
  margin-bottom: 2rem;
  width: 100%;
}

form.form p.no-label.error,
form.form span.no-label.error {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.4rem;
}

/**** LINKS & BUTTONS ****/

a,
a:hover {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form.form p.submit {
  margin: 2rem 0 0 !important;
}

.nav-offset {
  padding-top: var(--nav-height);
}

.site-nav {
  background-color: #000;
  height: var(--nav-height);
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.site-nav-logo {
  align-items: center;
  display: flex;
  height: 100%;
}

.site-nav-logo a img {
  height: 1.875rem;
  width: 13.65rem;
}

/**** CONTENT SECTION ****/

.wrapper {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  width: 100%;
}

.content-section {
  position: relative;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media only screen and (min-width: 48em) {
  .content-section {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}

@media only screen and (min-width: 64em) {
  .content-section {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
}

.two-cols {
  display: grid;
  gap: 1rem;
}

@media only screen and (min-width: 48em) {
  .two-cols {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/**** LINKS & BUTTONS ****/

a,
a:hover {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a[href^="tel:"],
a[href^="tel:"]:hover,
a[href^="tel:"]:focus,
a[href^="tel:"]:active {
  cursor: default;
  text-decoration: none !important;
}

.button,
a.button,
button.button,
input[type="submit"] {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: linear-gradient(to right, #000 50%, transparent 0);
  background-position: 100%;
  background-size: 200% 200%;
  border-color: #000;
  border-style: solid;
  border-width: 1px;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--ff-sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  height: 3.4375rem;
  justify-content: center;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin: 0 !important;
  min-width: 7.75rem;
  padding-bottom: 0 !important;
  padding-inline: 2rem !important;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  width: auto;
}

.button:hover,
.button:active,
a.button:hover,
a.button:active,
button.button:hover,
button.button:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  color: #fff;
  background-position: 0;
  outline: none;
}

.button:disabled,
.button:disabled:hover,
.button:disabled:active,
a.button:disabled,
a.button:disabled:hover,
a.button:disabled:active,
input[type="submit"]:disabled,
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled:active {
  background-color: #aaa;
  color: #eee;
  cursor: default;
  pointer-events: none;
}

/**** FOOTER ****/

.site-footer {
  background-color: #000;
  color: #fff;
  height: var(--nav-height);
  margin-top: auto;
  padding-inline: clamp(1.25rem, 2.871vw + 0.541rem, 3.125rem);
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-footer-logo a {
  display: inline-block;
}

.site-footer-logo a img {
  height: 1.875rem;
  width: 13.65rem;
}

.site-footer-copyright {
  color: #666;
  font-family: var(--ff-sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (min-width: 64em) {
  .site-footer-logo {
    margin-bottom: 0;
  }
}
