@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --text: #333333;
  --heading: #111111;
  --muted: #777777;
  --line: #dddddd;
  --soft-line: #eeeeee;
  --accent: #a62425;
  --accent-hover: #b85051;
  --background: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 90%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 20px;
  min-height: 100%;
  background: var(--background);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  word-wrap: break-word;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

a:hover,
a:focus {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
  clear: both;
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

h1 {
  font-size: 2.5rem;
  margin: 2em 0 1em;
}

h2 {
  font-size: 1.75rem;
  margin: 2em 0 1em;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5em 0 1em;
}

h4 {
  font-size: 1.25rem;
  margin: 1.5em 0 1em;
}

h5 {
  font-size: 1.125rem;
  margin: 1em 0 0.5em;
}

p,
ul,
ol,
table,
figure,
form {
  margin: 0 0 1.6em;
}

ul,
ol {
  padding: 0;
  margin-left: 2em;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

button {
  border: 0;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--background);
  border: 1px solid var(--line);
  color: var(--heading);
  z-index: 1000;
}

.site-header {
  margin-bottom: 55px;
}

.site-branding {
  max-width: 1120px;
  margin: 0 auto;
  padding: 25px 0 35px;
  text-align: center;
}

.site-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
  vertical-align: middle;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
  color: var(--heading);
  text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
  opacity: 0.8;
}

.site-description {
  margin: 0;
  padding-top: 4px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.main-navigation {
  max-width: 1260px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  font-size: 93.8%;
  position: relative;
}

.menu-toggle {
  width: 100%;
  padding: 0;
  background: transparent;
  color: var(--text);
  line-height: 58px;
  text-align: left;
}

.menu-toggle::before {
  content: "\2630";
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.menu,
.sub-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  display: none;
}

.menu.open {
  display: block;
}

.menu a,
.menu button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border-top: 1px solid var(--soft-line);
  color: var(--text);
  line-height: 58px;
  text-align: left;
  text-decoration: none;
}

.menu a:hover,
.menu a:focus,
.menu button:hover,
.menu button:focus,
.menu a[aria-current="page"],
.has-submenu.current-parent > button {
  color: var(--accent);
  outline: none;
}

.has-submenu > button::after {
  content: "\25be";
  display: inline-block;
  font-size: 0.85em;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

.sub-menu {
  display: none;
}

.has-submenu.open > .sub-menu {
  display: block;
}

.sub-menu a {
  padding-left: 30px;
}

.site-content {
  flex: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.entry-header {
  margin-bottom: 40px;
  text-align: center;
}

.entry-title {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.2;
}

.entry-content {
  width: 100%;
}

.entry-content strong {
  font-weight: 600;
}

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

.entry-content figure {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.entry-content figure img {
  display: block;
  margin: 0 auto;
}

.entry-content figcaption {
  color: var(--muted);
  font-size: 93.8%;
  font-style: italic;
  margin-top: 0.8em;
}

.entry-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #e6e6e6;
  font-size: 93.8%;
}

.entry-content tbody {
  display: table;
  width: 100%;
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid #e6e6e6;
  padding: 0.8em 1.2em 0.8em 0;
  text-align: left;
  vertical-align: top;
}

.entry-content td:first-child {
  min-width: 8.5rem;
}

.entry-content td:nth-child(2) {
  min-width: 10rem;
}

.embed-wrapper,
.video-embed .embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.embed-wrapper iframe,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-card {
  border-bottom: 1px solid var(--soft-line);
  border-top: 1px solid var(--soft-line);
  padding: 1.2em 0;
  text-align: center;
}

.contact-form {
  border-top: 1px solid var(--soft-line);
  padding-top: 1.2em;
}

.form-field {
  margin-bottom: 1em;
}

.form-field label {
  display: block;
  margin-bottom: 0.35em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  color: #666666;
  padding: 0.8em;
}

.form-field textarea {
  min-height: 14rem;
  resize: vertical;
}

.button {
  display: inline-block;
  border: 1px solid var(--heading);
  background: var(--heading);
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.2em 1.7em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.button:hover,
.button:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.site-footer {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto 28px;
}

.site-bottom {
  border-top: 1px solid var(--line);
  color: #999999;
  margin-top: 30px;
  padding-top: 28px;
  text-align: center;
}

.footer-navigation {
  margin-bottom: 20px;
  font-size: 87.5%;
}

.footer-menu {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

.footer-menu a {
  color: #666666;
  text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-menu a[aria-current="page"] {
  color: var(--heading);
}

.site-info {
  font-size: 81.3%;
  margin-bottom: 6px;
  padding-top: 3px;
}

@media screen and (min-width: 783px) {
  html {
    font-size: 100%;
  }

  body {
    margin-left: 30px;
    margin-right: 30px;
    font-size: 18px;
  }

  .site-header {
    margin-bottom: 75px;
  }

  .site-branding {
    padding-bottom: 50px;
    padding-top: 40px;
  }

  .site-title {
    font-size: 54px;
  }

  .menu-toggle {
    display: none;
  }

  .menu,
  .menu.open {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 30px;
    text-align: center;
    text-transform: uppercase;
  }

  .menu > li {
    position: relative;
    text-align: left;
    white-space: nowrap;
  }

  .menu > li > a,
  .menu > li > button {
    width: auto;
    border-top: 0;
    line-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .has-submenu > button {
    padding-right: 12px;
  }

  .sub-menu {
    position: absolute;
    left: -9999px;
    top: 100%;
    z-index: 10;
    display: block;
    width: 230px;
    background: var(--background);
    box-shadow: 0 1px 3px #dddddd;
    opacity: 0;
    text-transform: none;
    transition: opacity 0.2s ease-in-out;
    white-space: normal;
  }

  .has-submenu:hover > .sub-menu,
  .has-submenu:focus-within > .sub-menu,
  .has-submenu.open > .sub-menu {
    left: 0;
    opacity: 1;
  }

  .sub-menu a {
    border-top: 1px solid var(--soft-line);
    font-size: 93.8%;
    line-height: 1.5;
    padding: 14px 18px;
  }
}

@media screen and (min-width: 980px) {
  body {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 620px) {
  body {
    margin-left: 16px;
    margin-right: 16px;
  }

  .site-title {
    font-size: 2.5rem;
  }

  .entry-title {
    font-size: 2.1rem;
  }

  .entry-content th,
  .entry-content td {
    padding-right: 1em;
  }
}
