:root {
  --ink: #162536;
  --pink: #cfa3b0;
  --pale: #f9d7e1;
  --text: #777;
  --paper: #eff2f4;
  --footer: #d3d3d3;
  --deep-footer: #6e6e6e;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.72;
}
.site {
  min-height: 100vh;
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #bd8298;
  text-decoration: none;
}
a:hover {
  color: #c892aa;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #7e7e7e;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}
h1 {
  font-size: 2.55rem;
}
h2 {
  font-size: 2.1rem;
}
h3 {
  font-size: 1.55rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1rem;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  left: 10px;
}
.brandbar {
  padding: 26px 20px 15px;
  background: var(--ink);
  text-align: center;
}
.brandbar a {
  color: #fff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: -2px;
}
.main-nav {
  position: relative;
  z-index: 20;
  min-height: 75px;
  background: #000;
}
.nav-inner {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}
.site-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 75px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.site-menu a,
.site-menu > li > button {
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  color: #fff;
  font:
    600 0.82rem/1 "Open Sans",
    "Segoe UI",
    Arial,
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 14px;
  cursor: pointer;
}
.site-menu > li > a:not(.nav-logo a)::after,
.site-menu > li > button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  border-bottom: 1px solid transparent;
}
.site-menu > li > a:hover,
.site-menu > li > a.active,
.site-menu > li > button:hover {
  color: var(--pink);
}
.site-menu > li > a:hover::after,
.site-menu > li > a.active::after,
.site-menu > li > button:hover::after {
  border-color: var(--pink);
}
.nav-logo a {
  padding: 0 10px;
}
.nav-logo img {
  width: 175px;
  max-height: 95px;
  object-fit: contain;
  margin-top: -20px;
}
.has-submenu ul {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  background: #000;
  list-style: none;
  box-shadow: 0 12px 25px #0003;
}
.has-submenu:hover ul,
.has-submenu.open ul {
  display: block;
}
.has-submenu li a {
  display: block;
  padding: 12px 18px;
  line-height: 1.4;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  height: min(550px, 52vw);
  min-height: 330px;
  background: #222;
  overflow: hidden;
}
.hero-slides,
.hero-slide {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
  border: 0;
  background: #0004;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}
.hero-prev {
  left: 18px;
}
.hero-next {
  right: 18px;
}
.main-content {
  font-size: 1.08rem;
}
.x-section {
  position: relative;
  padding: 45px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.x-container {
  display: flex;
  flex-wrap: wrap;
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}
.x-column {
  min-width: 0;
  padding-right: 28px !important;
}
.x-column:last-child {
  padding-right: 0 !important;
}
.x-1-1 {
  width: 100%;
}
.x-1-2 {
  width: 50%;
}
.x-1-3 {
  width: 33.333%;
}
.x-2-3 {
  width: 66.666%;
}
.x-1-4 {
  width: 25%;
}
.cs-ta-center {
  text-align: center;
}
.mtn {
  margin-top: 0;
}
.mbm {
  margin-bottom: 1rem;
}
.h-custom-headline {
  margin-top: 0;
}
.x-text p:first-child {
  margin-top: 0;
}
.x-text ol,
.x-text ul {
  padding-left: 1.4rem;
}
.alignleft {
  float: left;
  margin: 0 25px 15px 0;
}
.alignnone {
  margin: 0 auto;
}
.x-gap {
  border: 0;
}
.x-section[style*="background-image"] {
  background-attachment: scroll;
}
.x-section[style*="background-image"] h2 {
  filter: drop-shadow(0 1px 2px #0006);
}
.x-img-link {
  display: block;
}
.x-block-grid,
.x-slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.x-block-grid {
  display: flex;
  gap: 2%;
  align-items: flex-start;
}
.x-block-grid-item {
  margin: 0 !important;
}
.x-block-grid-item img + br {
  display: none;
}
#slide .x-slides > .x-slide:not(:first-child),
#testimonial .x-slides > .x-slide:not(:first-child) {
  display: none;
}
#slide .x-block-grid-item img {
  width: 100%;
  margin-bottom: 4%;
  object-fit: cover;
}
#testimonial {
  max-width: 1000px;
  margin: auto;
}
#testimonial .x-block-grid {
  align-items: center;
}
#testimonial img {
  width: 230px;
  max-width: 100%;
  margin: auto;
  border-radius: 50%;
}
.star {
  color: #cfa3b0;
  letter-spacing: 2px;
}
.quote-mark {
  font:
    2rem Georgia,
    serif;
  color: #cfa3b0;
}
.archived-entry {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 45px;
}
.archived-entry > p:first-child {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
}
.archived-entry > p:first-child img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.archived-entry h2 {
  margin-top: 38px;
}
.custom-landing {
  padding: 55px 0 65px;
}
.custom-landing .x-container {
  display: block;
  max-width: 940px;
}
.eyebrow {
  margin: 0 0 8px;
  color: #bb8297;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.custom-landing h1 {
  margin: 0 0 30px;
}
.custom-copy {
  font-size: 1.12rem;
}
.custom-copy h3 {
  margin-top: 35px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.feature-grid > div {
  padding: 24px;
  background: #f7d8e1;
}
.feature-grid strong,
.feature-grid span {
  display: block;
}
.feature-grid strong {
  color: #6e6e6e;
  text-transform: uppercase;
}
.cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta:hover {
  background: #2d4663;
  color: #fff;
}
.footer-main {
  padding: 20px 0 12px;
  background: var(--footer);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 60px;
  width: 88%;
  max-width: 1200px;
  margin: auto;
}
.footer-contact h3 {
  margin: 4px 0 8px;
}
.footer-contact p {
  margin: 0 0 15px;
}
.footer-contact a {
  color: #666;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.contact-form label {
  position: relative;
}
.contact-form label span {
  position: absolute;
  clip: rect(0 0 0 0);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid #8d8d8d;
  background: transparent;
  color: #555;
  font: inherit;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #9f6379;
}
.contact-form .wide {
  grid-column: 1/-1;
}
.contact-form button {
  justify-self: end;
  width: 140px;
  border: 0;
  border-radius: 0;
  background: #9e9e9e;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-bottom {
  padding: 7px 20px;
  background: var(--deep-footer);
  color: #fff;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: #fff;
}
@media (max-width: 1080px) {
  .nav-inner {
    width: 96%;
  }
  .site-menu a,
  .site-menu > li > button {
    padding: 0 9px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }
  .nav-logo img {
    width: 145px;
  }
}
@media (max-width: 900px) {
  .brandbar {
    padding: 18px;
  }
  .brandbar a {
    font-size: 3.2rem;
  }
  .main-nav {
    min-height: 58px;
  }
  .nav-inner {
    width: 100%;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 58px;
    padding: 0 22px;
    border: 0;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    border-top: 2px solid #fff;
  }
  .menu-toggle b {
    margin-left: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .site-menu {
    display: none;
    min-height: 0;
    padding: 8px 0 14px;
    flex-direction: column;
  }
  .site-menu.open {
    display: flex;
  }
  .site-menu > li {
    display: block;
  }
  .site-menu a,
  .site-menu > li > button {
    width: 100%;
    min-height: 44px;
    padding: 0 22px;
  }
  .nav-logo {
    display: none !important;
  }
  .has-submenu ul {
    position: static;
    display: block;
    background: #111;
    box-shadow: none;
  }
  .has-submenu > button {
    display: none !important;
  }
  .has-submenu li a {
    padding-left: 42px;
  }
  .hero {
    height: 430px;
  }
  .x-column {
    width: 100%;
    padding-right: 0 !important;
  }
  .x-1-4 {
    width: 50%;
    padding: 0 16px 24px !important;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .archived-entry {
    width: 90%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 13px;
  }
  .brandbar a {
    font-size: 2.55rem;
  }
  .hero {
    height: 330px;
    min-height: 260px;
  }
  .hero-prev,
  .hero-next {
    width: 38px;
    height: 48px;
  }
  .x-container {
    width: 90%;
  }
  .x-section {
    padding: 35px 0 !important;
  }
  .x-1-4 {
    width: 100%;
    padding: 0 0 28px !important;
  }
  .x-block-grid {
    display: block;
  }
  .x-block-grid-item {
    width: 100% !important;
  }
  .alignleft {
    float: none;
    margin: 0 auto 18px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .wide {
    grid-column: auto;
  }
  .contact-form button {
    justify-self: stretch;
    height: 42px;
  }
  .footer-inner {
    width: 90%;
  }
  .custom-landing {
    padding: 40px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.65rem;
  }
}
