.hb-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1000px) {
  .hb-wrap {
    padding: 0 24px;
  }
}

.hb-section {
  padding: 96px 0;
}
@media (max-width: 1000px) {
  .hb-section {
    padding: 64px 0;
  }
}

.hb-eyebrow {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9A8B7A;
}
.hb-eyebrow--light {
  color: #D8CDBB;
}

.hb-heading {
  margin: 10px 0 0;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #2A2319;
}
@media (max-width: 1000px) {
  .hb-heading {
    font-size: 26px;
  }
}

.hb-link {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A2319;
  text-decoration: none;
  border-bottom: 1px solid #2A2319;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hb-link:hover {
  color: #B8902A;
  border-color: #B8902A;
}

.hb-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin: 0 0 48px;
}
@media (max-width: 1000px) {
  .hb-head {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.hb-head__controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hb-head--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hb-arrows {
  display: flex;
  gap: 10px;
}

.hb-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #2A2319;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.hb-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #2A2319;
  transition: stroke 0.2s ease;
}
.hb-arrow:hover {
  background: #2A2319;
}
.hb-arrow:hover svg {
  stroke: #FAF9F7;
}

.hb-btn {
  display: inline-block;
  padding: 16px 34px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.hb-btn--light {
  background: #FAF9F7;
  color: #2A2319;
  border-color: #FAF9F7;
}
.hb-btn--light:hover {
  background: transparent;
  color: #FAF9F7;
}
.hb-btn--ghost {
  color: #FAF9F7;
  border-color: rgba(250, 249, 247, 0.7);
}
.hb-btn--ghost:hover {
  background: #FAF9F7;
  color: #2A2319;
}

.hb-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: #E4DED2;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .hb-hero {
    min-height: 520px;
  }
}
.hb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 35, 25, 0.72) 0%, rgba(42, 35, 25, 0.42) 48%, rgba(42, 35, 25, 0.12) 100%);
}
.hb-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 64px 80px;
}
@media (max-width: 1000px) {
  .hb-hero__copy {
    padding: 48px 24px;
  }
}
.hb-hero__heading {
  margin: 22px 0 26px;
  max-width: 560px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #FAF9F7;
}
@media (max-width: 1000px) {
  .hb-hero__heading {
    font-size: 34px;
  }
}
.hb-hero__text {
  max-width: 460px;
  margin: 0 0 36px;
  font-family: "Marcellus", serif;
  font-size: 17px;
  line-height: 1.65;
  color: #E4DED2;
}
.hb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hb-credentials {
  background: #fff;
  border-top: 1px solid #D0C9BC;
  border-bottom: 1px solid #D0C9BC;
}
.hb-credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1000px) {
  .hb-credentials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hb-credentials__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.hb-credentials__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .hb-credentials__grid--3 {
    grid-template-columns: 1fr;
  }
}
.hb-credentials li {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid #D0C9BC;
}
.hb-credentials li:last-child {
  border-right: 0;
}
@media (max-width: 1000px) {
  .hb-credentials li {
    padding: 26px 10px;
  }
  .hb-credentials li:nth-child(2n) {
    border-right: 0;
  }
  .hb-credentials li:nth-child(-n+2) {
    border-bottom: 1px solid #D0C9BC;
  }
}
.hb-credentials__value {
  display: block;
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 28px;
  line-height: 1.15;
  color: #2A2319;
}
@media (max-width: 1000px) {
  .hb-credentials__value {
    font-size: 20px;
  }
}
.hb-credentials__label {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A8B7A;
}
@media (max-width: 1000px) {
  .hb-credentials__label {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

.hb-cards {
  display: grid;
  gap: 40px;
  align-items: start;
}
.hb-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}
.hb-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .hb-cards--3, .hb-cards--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .hb-cards--3, .hb-cards--2 {
    grid-template-columns: 1fr;
  }
}

.hb-card {
  display: block;
  color: #2A2319;
  text-decoration: none;
}
.hb-card__media {
  display: block;
  overflow: hidden;
  background: #EAE4D8;
}
.hb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hb-card__media--4x3 {
  aspect-ratio: 4/3;
}
.hb-card__media--16x10 {
  aspect-ratio: 16/10;
}
.hb-card__meta {
  display: block;
  padding-top: 20px;
  font-family: "Marcellus", serif;
}
.hb-card__eyebrow {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9A8B7A;
}
.hb-card__title {
  display: block;
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 19px;
  line-height: 1.3;
}
.hb-card__title .artwork-title {
  font-weight: inherit;
}
.hb-card__sub {
  display: block;
  font-size: 14px;
  color: #5B5347;
}
.hb-card__news-title {
  display: block;
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: 22px;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  .hb-card__news-title {
    font-size: 19px;
  }
}
.hb-card__excerpt {
  display: block;
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #5B5347;
}
.hb-card:hover {
  color: #2A2319;
}
.hb-card:hover .hb-card__media img {
  transform: scale(1.03);
}
.hb-card:hover .hb-link {
  color: #B8902A;
  border-color: #B8902A;
}

.hb-newsletter {
  background: #fff;
  border-top: 1px solid #D0C9BC;
  border-bottom: 1px solid #D0C9BC;
  padding: 76px 0;
}
@media (max-width: 1000px) {
  .hb-newsletter {
    padding: 56px 0;
  }
}
.hb-newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.hb-newsletter__heading {
  margin: 12px 0;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: #2A2319;
}
.hb-newsletter__text {
  margin: 0 0 28px;
  font-family: "Marcellus", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #5B5347;
}
.hb-newsletter__form .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #2A2319;
  text-align: left;
}
.hb-newsletter__form .newsletter-form .mb-3 {
  flex: 1 1 200px;
  margin: 0 !important;
}
.hb-newsletter__form .newsletter-form .form-control {
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Marcellus", serif;
  font-size: 14px;
  color: #2A2319;
  box-shadow: none;
}
.hb-newsletter__form .newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.hb-newsletter__form .newsletter-form .form-control::placeholder {
  color: #A79E8E;
}
.hb-newsletter__form .newsletter-form .newsletter-hp {
  position: absolute;
  left: -9999px;
}
.hb-newsletter__form .newsletter-form .btn {
  margin: 0;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: #2A2319;
  color: #FAF9F7;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 52px;
}
.hb-newsletter__form .newsletter-form .btn:hover {
  background: #000;
}
.hb-newsletter__form .newsletter-form__status {
  flex-basis: 100%;
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: 13px;
}
.hb-newsletter__form .newsletter-form__status:not(:empty) {
  padding: 10px 14px;
  border-top: 1px solid #D0C9BC;
}
.hb-newsletter__form--cf7 .wpcf7-form {
  text-align: left;
}
.hb-newsletter__form--cf7 .wpcf7-form > p {
  margin: 0 0 14px;
}
.hb-newsletter__form--cf7 .wpcf7-form label {
  display: block;
  margin: 0 0 5px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8B7A;
}
.hb-newsletter__form--cf7 .wpcf7-form label + br {
  display: none;
}
.hb-newsletter__form--cf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.hb-newsletter__form--cf7 .wpcf7-form input[type=text], .hb-newsletter__form--cf7 .wpcf7-form input[type=email], .hb-newsletter__form--cf7 .wpcf7-form input[type=tel], .hb-newsletter__form--cf7 .wpcf7-form textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #D0C9BC;
  border-radius: 0;
  background: #fff;
  font-family: "Marcellus", serif;
  font-size: 14px;
  color: #2A2319;
}
.hb-newsletter__form--cf7 .wpcf7-form input[type=text]:focus, .hb-newsletter__form--cf7 .wpcf7-form input[type=email]:focus, .hb-newsletter__form--cf7 .wpcf7-form input[type=tel]:focus, .hb-newsletter__form--cf7 .wpcf7-form textarea:focus {
  outline: none;
  border-color: #2A2319;
  box-shadow: none;
}
.hb-newsletter__form--cf7 .wpcf7-form input[type=submit] {
  width: 100%;
  margin: 4px 0 0;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
  background: #2A2319;
  color: #FAF9F7;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.hb-newsletter__form--cf7 .wpcf7-form input[type=submit]:hover {
  background: #000;
}
.hb-newsletter__form--cf7 .wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 14px;
  font-family: "Marcellus", serif;
  font-size: 13px;
}

.hb-slider .hb-head {
  margin-bottom: 40px;
}

.hb-track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 48px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hb-track::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1000px) {
  .hb-track {
    padding: 0 24px 8px;
    gap: 16px;
  }
}
@media (min-width: 1377px) {
  .hb-track {
    padding-left: calc((100vw - 1280px) / 2 + 48px);
  }
}

.hb-tile {
  flex: 0 0 230px;
  scroll-snap-align: start;
  color: #2A2319;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .hb-tile {
    flex-basis: 180px;
  }
}
.hb-tile__media {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #EAE4D8;
}
.hb-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hb-tile__title {
  display: block;
  padding-top: 16px;
  font-family: "Cinzel", serif;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.02em;
}
.hb-tile:hover {
  color: #2A2319;
}
.hb-tile:hover img {
  transform: scale(1.04);
}
.hb-tile:hover .hb-tile__title {
  color: #B8902A;
}

.hb-az .hb-head {
  margin-bottom: 26px;
}
.hb-az__letters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 32px;
}
@media (max-width: 1000px) {
  .hb-az__letters {
    gap: 2px;
    margin-bottom: 24px;
  }
}
.hb-az__letter {
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #2A2319;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
@media (max-width: 1000px) {
  .hb-az__letter {
    min-width: 30px;
    height: 32px;
    font-size: 12px;
    padding: 0 3px;
  }
}
.hb-az__letter:hover:not([disabled]) {
  color: #B8902A;
  border-color: #D0C9BC;
}
.hb-az__letter.is-active {
  background: #2A2319;
  border-color: #2A2319;
  color: #FAF9F7;
}
.hb-az__letter[disabled] {
  color: rgba(154, 139, 122, 0.45);
  cursor: default;
}
.hb-az__panels {
  position: relative;
  transition: opacity 0.2s ease;
}
.hb-az__panel {
  display: none;
}
.hb-az__panel.is-active {
  display: flex;
}
.hb-az__status {
  min-height: 1.2em;
  margin: 8px 0 0;
  padding: 0 48px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8B7A;
}
@media (max-width: 1000px) {
  .hb-az__status {
    padding: 0 24px;
  }
}
.hb-az.is-loading .hb-az__panels {
  opacity: 0.35;
}
.hb-az.is-loading .hb-arrow {
  opacity: 0.4;
  cursor: wait;
}
.hb-az .hb-az__letter.is-pending {
  border-color: #B8902A;
  color: #B8902A;
  animation: hb-pulse 0.9s ease-in-out infinite alternate;
}

@keyframes hb-pulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.45;
  }
}
.hb-testimonials {
  background: #fff;
  border-top: 1px solid #D0C9BC;
  border-bottom: 1px solid #D0C9BC;
}
.hb-testimonials__track {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.hb-testimonials__track::-webkit-scrollbar {
  display: none;
}
.hb-testimonials__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.hb-testimonials__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hb-testimonials__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}
.hb-testimonials__inner--text {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}
.hb-testimonials__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #EAE4D8;
}
.hb-testimonials__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hb-testimonials__mark {
  display: block;
  margin: 0 0 4px;
  font-family: "Cinzel", serif;
  font-size: 64px;
  line-height: 1;
  color: #9A8B7A;
}
.hb-testimonials__quote {
  margin: 0;
}
.hb-testimonials__quote p {
  margin: 0 0 22px;
  font-family: "Marcellus", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: #2A2319;
}
@media (max-width: 1000px) {
  .hb-testimonials__quote p {
    font-size: 18px;
  }
}
.hb-testimonials__quote cite {
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A8B7A;
}

.hb-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.hb-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #9A8B7A;
  background: transparent;
  cursor: pointer;
}
.hb-dots button.is-active {
  background: #9A8B7A;
}

.hb-about {
  background: #fff;
  border-top: 1px solid #D0C9BC;
  border-bottom: 1px solid #D0C9BC;
}
.hb-about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .hb-about__inner {
    grid-template-columns: 1fr;
  }
}
.hb-about__image {
  margin: 96px 0 96px 48px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #EAE4D8;
}
.hb-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1000px) {
  .hb-about__image {
    margin: 48px 24px 0;
    aspect-ratio: 4/3;
  }
}
.hb-about__copy {
  padding: 96px 80px;
}
@media (max-width: 1000px) {
  .hb-about__copy {
    padding: 40px 24px 56px;
  }
}
.hb-about__heading {
  margin: 14px 0 24px;
  max-width: 460px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #2A2319;
}
@media (max-width: 1000px) {
  .hb-about__heading {
    font-size: 26px;
  }
}
.hb-about__text {
  max-width: 480px;
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5B5347;
}
.hb-about__text p {
  margin: 0 0 16px;
}

.hb-news {
  background: #fff;
  border-top: 1px solid #D0C9BC;
}

.flexible-content.hero-slideshow--home {
  height: auto;
  min-height: 680px;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home {
    min-height: 560px;
  }
}
.flexible-content.hero-slideshow--home .slide-wrapper, .flexible-content.hero-slideshow--home .slick-list, .flexible-content.hero-slideshow--home .slick-track {
  height: auto;
  min-height: 680px;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slide-wrapper, .flexible-content.hero-slideshow--home .slick-list, .flexible-content.hero-slideshow--home .slick-track {
    min-height: 560px;
  }
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item {
  min-height: 680px;
  height: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 0 80px 88px;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slide-wrapper .slide-item {
    min-height: 560px;
    padding: 0 20px 84px;
  }
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content {
  position: relative;
  z-index: 2;
  width: auto;
  min-width: 0;
  max-width: 440px;
  margin: 0;
  padding: 26px 34px 28px 32px;
  background: rgba(28, 24, 20, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-left: 2px solid #B8902A;
  text-align: left !important;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content {
    max-width: 100%;
    padding: 20px 24px 22px 22px;
  }
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-eyebrow {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #D2B15C;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2.slide-title {
  margin: 0 0 20px;
  max-width: none;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #FAF9F7;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2.slide-title {
    font-size: 23px;
    margin-bottom: 16px;
  }
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2 .artwork-title, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content h2.slide-title .artwork-title {
  font-weight: inherit;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content p:not(.slide-eyebrow) {
  margin: 0 0 14px;
  font-family: "Marcellus", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E4DED2;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .divider {
  display: none;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link {
  display: inline-block;
  padding-bottom: 4px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FAF9F7;
  border-bottom: 1px solid rgba(250, 249, 247, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link:hover, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link:focus-visible {
  color: #D2B15C;
  border-color: #D2B15C;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link:hover span, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .slide-content .slide-link:focus-visible span {
  transform: translateX(4px);
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn-primary {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 14px 28px;
  border-radius: 0;
  background: #FAF9F7;
  color: #2A2319;
  border: 1px solid #FAF9F7;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn:hover, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn:focus, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn-primary:hover, .flexible-content.hero-slideshow--home .slide-wrapper .slide-item .btn-primary:focus {
  background: transparent;
  color: #FAF9F7;
  border-color: #FAF9F7;
}
.flexible-content.hero-slideshow--home .slick-prev, .flexible-content.hero-slideshow--home .slick-next {
  top: auto;
  bottom: 88px;
  transform: none;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 0;
  background: rgba(28, 24, 20, 0.55);
  border: 1px solid rgba(250, 249, 247, 0.7);
  color: #FAF9F7;
  z-index: 5;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.flexible-content.hero-slideshow--home .slick-prev:hover, .flexible-content.hero-slideshow--home .slick-next:hover {
  background: #FAF9F7;
  color: #2A2319;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slick-prev, .flexible-content.hero-slideshow--home .slick-next {
    bottom: 24px;
  }
}
.flexible-content.hero-slideshow--home .slick-prev {
  left: auto;
  right: 134px;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slick-prev {
    right: 74px;
  }
}
.flexible-content.hero-slideshow--home .slick-next {
  right: 80px;
}
@media (max-width: 1000px) {
  .flexible-content.hero-slideshow--home .slick-next {
    right: 20px;
  }
}
