:root {
  --primary-text-color: #313131;
  --light-text-color: rgba(0, 0, 0, 0.5);
  --link-color: #446618;
  --link-color-hover: hsl(86.1538461538, 61.9047619048%, -0.2941176471%);
  --background-color: #E2DBCF;
  --header-background-color: #E5E2DB;
  --footer-background-color: #BCB19D;
  --serif: cormorant-garamond, serif;
  --sans: brandon-grotesque, sans-serif;
  --max-width: 50rem;
  --padding: 2rem;
  --panel-gap: 5rem;
  --header-height: 4rem;
}
@media (max-width: 550px) {
  :root {
    --padding: 1rem;
    --header-height: 3rem;
    --panel-gap: 3rem;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ir {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.undo-font-smoothing {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-smoothing: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background-color);
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  padding: 0 var(--padding);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-container {
  max-width: calc(var(--max-width) + var(--padding) * 2);
  padding: var(--header-height) var(--padding) 0;
  margin: 0 auto;
}

.site-footer {
  background: var(--footer-background-color);
}

.center-align {
  display: flex;
  align-items: center;
}

.center-justify {
  display: flex;
  justify-content: center;
}

.reverse {
  flex-direction: row-reverse;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

html {
  font-size: 20px;
  color: var(--primary-text-color);
  font-family: var(--serif);
}

body {
  font-size: 1rem;
  line-height: 1.3;
}

a {
  cursor: pointer;
  color: var(--link-color);
}
a:hover, a.active {
  color: var(--link-color-hover);
}

p, ul, ol, blockquote {
  margin: 0;
}
p + p, p + ul, p + ol, p + blockquote, ul + p, ul + ul, ul + ol, ul + blockquote, ol + p, ol + ul, ol + ol, ol + blockquote, blockquote + p, blockquote + ul, blockquote + ol, blockquote + blockquote {
  margin-top: 1.3em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h2 {
  font-size: 2.4rem;
}
@media (max-width: 550px) {
  h2 {
    font-size: 1.8rem;
  }
}

h4 {
  font-family: var(--sans);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 550px) {
  h4 {
    font-size: 0.8rem;
  }
}

.center-text {
  text-align: center;
}

input, button {
  display: block;
  font-family: var(--sans);
  background: none;
  border: 1px solid var(--primary-text-color);
  border-radius: 0;
  font-size: inherit;
  padding: 0.5em 0.75em;
  height: 2.5em;
  color: var(--primary-text-color);
}
input::-moz-placeholder, button::-moz-placeholder {
  color: var(--light-text-color);
}
input::placeholder, button::placeholder {
  color: var(--light-text-color);
}

button, .button {
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-background-color);
  font-size: 0.7rem;
  line-height: 1;
}
.site-header .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .left, .site-header .right {
  width: 4rem;
}
.site-header a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 550px) {
  .site-header .left {
    width: 3.25rem;
  }
  .site-header .right {
    display: none;
  }
  .site-header .center img {
    width: 6rem;
    height: auto;
  }
}

.pre-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--header-background-color);
  padding: 1.5rem var(--padding);
  text-align: center;
}
.pre-footer div + div {
  margin-left: 3rem;
}
@media (max-width: 1000px) {
  .pre-footer {
    flex-direction: column;
  }
  .pre-footer div + div {
    margin: 1rem 0 0;
    text-align: center;
  }
}

.site-footer {
  padding: var(--panel-gap) var(--padding) 0;
  font-size: 0.7rem;
  color: var(--light-text-color);
}
.site-footer .wrapper {
  padding: calc(var(--padding) * 1.25) 0;
  border-top: 1px solid var(--light-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .wrapper > * + * {
  margin-left: calc(var(--padding) * 1.5);
}
.site-footer a, .site-footer strong {
  text-transform: uppercase;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--primary-text-color);
  text-decoration: underline;
}
.site-footer p, .site-footer ul, .site-footer li {
  margin: 0;
  padding: 0;
}
.site-footer ul {
  list-style: none;
}
.site-footer .mailing-list p {
  text-transform: uppercase;
}
.site-footer form {
  display: flex;
  margin-top: 0.25rem;
}
.site-footer form input, .site-footer form button {
  width: 7rem;
}
.site-footer form button {
  margin-left: 0.5rem;
}
@media (max-width: 50rem) {
  .site-footer {
    text-align: center;
  }
  .site-footer .wrapper {
    flex-direction: column;
  }
  .site-footer .wrapper > * + * {
    margin: 1.5rem 0 0;
  }
}

.panel {
  padding: var(--panel-gap) 0;
}

.panel-home-image {
  padding: calc(var(--panel-gap) * 2) 0;
}
.panel-home-image img {
  display: block;
  margin: 0 auto;
  max-width: 60vw;
}

.panel-narrow-text {
  text-align: center;
}
.panel-narrow-text .text-wrapper {
  max-width: 20rem;
  margin: 0 auto;
}
.panel-narrow-text h2 {
  margin: 0;
}
.panel-narrow-text img {
  display: block;
  margin: calc(var(--panel-gap) / 2) auto;
}

.panel-quote {
  text-align: center;
  font-size: 2.4rem;
}
@media (max-width: 700px) {
  .panel-quote {
    font-size: 1.4rem;
  }
}

.panel-404 {
  text-align: center;
}