html, body {
  height: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #171f27;
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Body / base text */
body, p, li, a, span, input, button, label {
  font-family: "europa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #222;
  font-size: 16px;
}

a {
  font-size: 17px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #3EBEFB;
  outline-offset: 2px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "dejanire-headline", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 28px;
  margin: 0 0 0.5rem;
}

/* Utilities */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-wysiwyg {
  background: #fff;
  padding: 72px 0;
}
.page-wysiwyg--contact {
  padding: 50px 0 0;
}
.page-wysiwyg__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: left;
}
.page-wysiwyg__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
}
.page-wysiwyg__rule {
  width: 72px;
  height: 4px;
  margin: 22px 0 26px;
  border: 0;
  background: #672330;
}
.page-wysiwyg p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.76);
}
.page-wysiwyg--gray {
  background: #efefef;
}

.locations-bar {
  background: #672330;
  color: rgba(255, 255, 255, 0.92);
}
.locations-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
}
.locations-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 420px));
  gap: 18px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.locations-bar__item {
  padding: 8px 8px;
}
.locations-bar__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.locations-bar__address {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.2px;
  color: white;
}
.locations-bar__address p {
  margin: 0;
}
.locations-bar__address a {
  color: white;
  text-decoration: none;
  font-size: inherit;
}
.locations-bar__address .locations-bar__address-link {
  color: white;
  text-decoration: none;
  font-size: inherit;
}
.locations-bar__hours {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: white;
}
@media (min-width: 760px) {
  .locations-bar__item + .locations-bar__item {
    position: relative;
  }
  .locations-bar__item + .locations-bar__item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
  }
}
@media (max-width: 759px) {
  .locations-bar__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .locations-bar__address {
    font-size: 13px;
  }
}

.info-block {
  background: #375a6b;
  color: rgba(255, 255, 255, 0.92);
  padding: 56px 0;
}
.info-block__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.info-block__title {
  margin: 0;
  color: #ffffff;
}
.info-block__accent {
  width: 28px;
  height: 2px;
  margin: 16px auto 22px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 99px;
}
.info-block__copy {
  max-width: 760px;
  margin: 0 auto 22px;
}
.info-block__copy p {
  margin: 0;
  color: white;
}
.info-block__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.info-block__link span {
  font-weight: 600;
  color: white;
}
.info-block__link:hover {
  opacity: 1;
  transform: translateX(2px);
}
.info-block--bright-accent .info-block__accent {
  background: #3EBEFB;
}
.info-block--bright-accent .info-block__link span {
  color: #3EBEFB;
}
.info-block--services {
  padding: 72px 0;
}
.info-block--services .info-block--services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.info-block--services .info-block--services__left {
  display: grid;
  justify-items: center;
  text-align: center;
}
.info-block--services .info-block__accent {
  width: 46px;
  height: 4px;
  margin: 16px auto 0;
}
.info-block--services .info-block--services__list {
  margin: 0;
  padding-left: 26px;
  display: grid;
  gap: 16px;
}
.info-block--services .info-block--services__list li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}
.info-block--services .info-block__link {
  margin-top: 28px;
  font-size: 17px;
  font-family: "dejanire-headline", serif;
  line-height: 1;
  opacity: 1;
}
@media (max-width: 900px) {
  .info-block--services .info-block--services__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .info-block--services .info-block--services__right {
    max-width: 640px;
    margin: 0 auto;
  }
}

.flip-flop {
  background: #fff;
  padding: 72px 0;
}
.flip-flop__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.flip-flop__media {
  height: 100%;
  min-height: 420px;
}
.flip-flop__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.flip-flop__content {
  max-width: none;
}
.flip-flop__title {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.82);
}
.flip-flop p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.74);
}
.flip-flop__link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.82);
  font-family: "dejanire-headline", serif;
  font-size: 17px;
  line-height: 1;
}
.flip-flop__link span {
  color: #672330;
  font-size: 0.86em;
}
.flip-flop--flipped .flip-flop__media {
  order: 2;
}
.flip-flop--flipped .flip-flop__content {
  order: 1;
}
.flip-flop--grey {
  background: #efefef;
}
@media (max-width: 900px) {
  .flip-flop__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flip-flop__media {
    order: 1;
  }
  .flip-flop__content {
    order: 2;
    max-width: 100%;
  }
}

.faq {
  background: #efefef;
  padding: 76px 0;
}
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px;
}
.faq__title {
  margin: 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.82);
}
.faq__accent {
  width: 34px;
  height: 3px;
  margin: 16px auto 34px;
  background: #3EBEFB;
}
.faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.faq__question-wrap {
  margin: 0;
}
.faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.82);
}
.faq__icon {
  font-family: "dejanire-headline", serif;
  font-size: 40px;
  line-height: 1;
  color: #375a6b;
  transition: color 0.25s ease, transform 0.25s ease;
}
.faq__question[aria-expanded=true] .faq__icon {
  color: #672330;
  transform: rotate(180deg);
}
.faq__question-text {
  font-size: 18px;
  line-height: 1.3;
}
.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.faq__answer-inner {
  padding: 0 0 28px 54px;
}
.faq__answer-inner p {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.74);
  font-size: 16px;
  line-height: 1.75;
}
.faq__answer-inner p:last-child {
  margin-bottom: 0;
}
.faq__item.is-open .faq__answer {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__icon {
    transition: none;
  }
}

.contact-split {
  background: #efefef;
  padding: 72px 0 88px;
}
.contact-split__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.contact-split__title {
  margin: 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.84);
}
.contact-split__accent {
  width: 40px;
  height: 4px;
  margin: 14px auto 44px;
  background: #672330;
}
.contact-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-split__left {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-split__block {
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.contact-split__icon {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1;
}
.contact-split__line {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  text-decoration: none;
}
.contact-split__line a {
  font-size: 18px;
  color: inherit;
  text-decoration: none;
}
.contact-split__hours {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.contact-split .gform_wrapper {
  margin: 0;
}
.contact-split .gform_wrapper.gravity-theme .gfield_label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.82);
}
.contact-split .gform_wrapper.gravity-theme input[type=text],
.contact-split .gform_wrapper.gravity-theme input[type=email],
.contact-split .gform_wrapper.gravity-theme input[type=tel],
.contact-split .gform_wrapper.gravity-theme textarea {
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: transparent;
  min-height: 54px;
  padding: 10px 12px;
}
.contact-split .gform_wrapper.gravity-theme textarea {
  min-height: 180px;
}
.contact-split .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 20px;
  padding: 0;
  justify-content: center;
}
.contact-split .gform_wrapper.gravity-theme .gform_button.button,
.contact-split .gform_wrapper.gravity-theme .gform_button {
  min-width: 200px;
  border-radius: 999px;
  border: 3px solid #3EBEFB;
  background: transparent;
  color: rgba(0, 0, 0, 0.84);
  font-family: "dejanire-headline", serif;
  font-size: 20px;
  line-height: 1;
  padding: 13px 22px;
}
@media (max-width: 900px) {
  .contact-split__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.team-member {
  background: #fff;
  padding: 74px 0 82px;
}
.team-member__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
}
.team-member__title {
  margin: 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.84);
}
.team-member__accent {
  width: 40px;
  height: 4px;
  margin: 14px auto 44px;
  background: #672330;
}
.team-member__profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 54px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.team-member__photo-wrap {
  width: min(320px, 100%);
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(55, 90, 107, 0.45);
}
.team-member__photo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-member__name {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.82);
}
.team-member__role {
  margin: 0 0 18px;
  color: #672330;
  font-family: "dejanire-headline", serif;
  font-size: 23px;
  line-height: 1.2;
}
.team-member__list {
  margin: 0;
  padding-left: 30px;
  display: grid;
  gap: 8px;
}
.team-member__list li {
  color: rgba(0, 0, 0, 0.76);
  font-size: 16px;
  line-height: 1.55;
}
.team-member__list li::marker {
  color: #672330;
}
.team-member__copy {
  margin-top: 36px;
}
.team-member__copy p {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.76);
  line-height: 1.65;
}
.team-member__copy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .team-member__profile {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .team-member__photo-wrap {
    margin: 0 auto;
  }
}

.blog-page {
  background: linear-gradient(180deg, #f6f0eb 0%, #ffffff 220px);
}

.blog-shell {
  padding: 56px 0 88px;
}
.blog-shell--related {
  padding-top: 0;
}
.blog-shell--related .blog-shell__title {
  font-size: clamp(1.2rem, 2vw, 2rem);
}
.blog-shell__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.blog-shell__header {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}
.blog-shell__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.84);
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.blog-shell__description {
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 17px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.1);
}
.blog-card__media {
  position: relative;
}
.blog-card__thumb-link {
  display: block;
  height: 260px;
}
.blog-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__thumb-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, rgba(55, 90, 107, 0.96), rgba(103, 35, 48, 0.9));
}
.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(103, 35, 48, 0.94);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: calc(100% - 32px);
}
.blog-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.blog-card__title {
  margin: 0 0 14px;
}
.blog-card__title a {
  color: rgba(0, 0, 0, 0.86);
  text-decoration: none;
  font-family: "dejanire-headline", serif;
  font-size: 25px;
  line-height: 1;
}
.blog-card__excerpt {
  margin-bottom: 22px;
  color: rgba(0, 0, 0, 0.74);
}
.blog-card__excerpt p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
.blog-card__read-more {
  margin-top: auto;
  align-self: flex-start;
}

.blog-pagination {
  margin-top: 38px;
}
.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.82);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
}
.blog-pagination .page-numbers.current {
  border-color: #672330;
  background: #672330;
  color: #fff;
  font-weight: 700;
}
.blog-pagination .page-numbers:hover {
  border-color: rgba(103, 35, 48, 0.45);
  color: #672330;
}

.blog-empty {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 34px;
  text-align: center;
}
.blog-empty__title {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.84);
}
.blog-empty__copy {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}

.features {
  background: #fff;
  color: rgba(0, 0, 0, 0.78);
  padding: 64px 0;
}
.features__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.features__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
}
.features__accent {
  width: 28px;
  height: 2px;
  margin: 16px auto 36px;
  background: rgba(103, 35, 48, 0.55);
  border-radius: 99px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  max-width: 980px;
}
.features__cta {
  margin-top: 34px;
}
@media (max-width: 860px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 560px;
  }
}

.button-row {
  padding: 48px 0;
}
.button-row__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.testimonial-slider {
  padding: 72px 0;
  background: #f6f4f2;
  color: rgba(0, 0, 0, 0.78);
}
.testimonial-slider__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.testimonial-slider__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
}
.testimonial-slider__accent {
  width: 28px;
  height: 2px;
  margin: 16px auto 32px;
  background: rgba(103, 35, 48, 0.55);
  border-radius: 99px;
}
.testimonial-slider__viewport {
  overflow: hidden;
}
.testimonial-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.25s ease;
}
.testimonial-slider__controls {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testimonial-slider__btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.testimonial-slider__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.testimonial-slide {
  padding: 0 10px;
}
.testimonial-slide__text {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
}
.testimonial-slide__author {
  margin: 0;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.feature {
  display: grid;
  gap: 14px;
  justify-items: center;
}
.feature__icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
}
.feature__icon-mark {
  color: #672330;
  opacity: 0.85;
  display: block;
  width: 100%;
  height: auto;
}
.feature__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
}
.feature__copy {
  margin: 0;
  max-width: 260px;
}

.quote-block {
  background: #EEEEEE;
  padding: 72px 0;
}
.quote-block__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.quote-block__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: center;
}
.quote-block__media {
  display: grid;
  place-items: center;
}
.quote-block__photo {
  width: 200px;
  height: 200px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}
.quote-block__content {
  max-width: 760px;
}
.quote-block__quote {
  margin: 0 0 18px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.78);
  font-family: "dejanire-headline", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 28px;
}
.quote-block__meta {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, 0.62);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}
.quote-block__name {
  color: rgba(0, 0, 0, 0.82);
  font-weight: 600;
}
.quote-block__sep {
  opacity: 0.45;
}
.quote-block__title {
  color: rgba(0, 0, 0, 0.82);
}
.quote-block__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #672330;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.quote-block__link:hover {
  opacity: 0.9;
  transform: translateX(2px);
}
.quote-block__link span {
  color: inherit;
}
@media (max-width: 860px) {
  .quote-block__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    justify-items: center;
  }
  .quote-block__content {
    max-width: 620px;
  }
  .quote-block__meta {
    justify-content: center;
  }
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  background: #171f27;
  overflow: hidden;
  padding: 54px 0 18px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 420px at 50% 18%, rgba(23, 31, 39, 0.35) 0%, rgba(23, 31, 39, 0) 60%), radial-gradient(1200px 700px at 50% 40%, rgba(23, 31, 39, 0) 0%, rgba(23, 31, 39, 0.55) 70%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 1;
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}
.site-footer__cta {
  margin-top: 2px;
}
.site-footer__meta {
  width: 100%;
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: white;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__meta-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  text-align: right;
  color: white;
}
@media (max-width: 760px) {
  .site-footer__meta {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__meta-right {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    color: white;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-decoration: none;
}
.footer-brand__logo {
  display: block;
  width: clamp(90px, 11.4vw, 144px);
  height: auto;
}
.footer-brand__mark {
  width: 54px;
  height: 54px;
  color: white;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand__text {
  display: grid;
  gap: 6px;
  color: white;
  line-height: 1.05;
}
.footer-brand__name {
  font-weight: 700;
  color: white;
  letter-spacing: 0.2px;
}
.footer-brand__tag {
  opacity: 0.75;
  color: white;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  color: white;
}
.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: opacity 0.25s ease;
  color: white;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-nav .sub-menu {
  display: none;
}

.footer-locations {
  width: 100%;
  margin-top: 8px;
}
.footer-locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 420px));
  gap: 18px;
  justify-content: center;
  align-items: start;
}
.footer-locations__item {
  padding: 10px 10px;
}
.footer-locations__title {
  margin: 0 0 6px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}
.footer-locations__address {
  margin: 0 0 10px;
  color: white;
  opacity: 1;
  font-size: 18px;
}
.footer-locations__address a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.footer-locations__address .footer-locations__address-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.footer-locations__hours {
  margin: 0;
  color: white;
  opacity: 0.85;
  font-size: 16px;
}
.footer-locations__book {
  display: inline-block;
  margin-top: 6px;
  color: white;
  text-decoration: none;
  font-size: 15px;
}
@media (min-width: 760px) {
  .footer-locations__item + .footer-locations__item {
    position: relative;
  }
  .footer-locations__item + .footer-locations__item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 759px) {
  .footer-locations__grid {
    grid-template-columns: 1fr;
  }
}

.locations-bar__book {
  display: inline-block;
  margin-top: 6px;
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.site-footer__meta-right span {
  color: white;
}

/* Pixel & Hammer little color squares */
.ph-dots {
  display: inline-flex;
  gap: 6px;
  color: white;
}
.ph-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  opacity: 0.95;
  color: white;
}
.ph-dots i:nth-child(1) {
  background: #e53935;
}
.ph-dots i:nth-child(2) {
  background: #1e88e5;
}
.ph-dots i:nth-child(3) {
  background: #43a047;
}
.ph-dots i:nth-child(4) {
  background: #fdd835;
}

.site-hero {
  position: relative;
  min-height: 82vh;
  color: #ffffff;
  overflow: hidden;
  background-image: var(--hero-image, none);
  background-color: #375a6b;
  background-size: cover;
  background-position: var(--hero-position, bottom);
  background-repeat: no-repeat;
}
.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(55, 90, 107, 0.95) 0%, rgba(55, 90, 107, 0.78) 28%, rgba(55, 90, 107, 0.45) 80%, rgba(55, 90, 107, 0) 100%);
}
.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.1);
}
.site-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 22px 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.site-hero--compact {
  min-height: 41vh;
  background-position: var(--hero-position, center);
}

/* ===== Top Navigation ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__cta {
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-decoration: none;
}
.brand__logo {
  display: block;
  width: 150px;
  height: auto;
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 18px;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__tag {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav li {
  position: relative;
}
.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  transition: opacity 0.25s ease;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav a:hover {
  opacity: 1;
}
.nav .sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  padding: 12px 0;
  margin: 0;
  background: rgba(55, 90, 107, 0.98);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.nav .sub-menu a {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  width: 100%;
}
.nav li:hover > .sub-menu,
.nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 9px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.menu-toggle__line {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 360px);
  padding: 90px 24px 24px;
  background: rgba(55, 90, 107, 0.98);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: grid;
  align-content: start;
  gap: 22px;
}
.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.mobile-menu__nav {
  display: grid;
  gap: 14px;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.mobile-menu__list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  display: block;
}
.mobile-menu__list .sub-menu {
  list-style: none;
  margin: 8px 0 0 12px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 10px;
}
.mobile-menu__list .sub-menu a {
  font-size: 18px;
  opacity: 0.9;
}
.mobile-menu__cta {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .mobile-menu__panel {
  transform: translateX(0);
}
body.menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
body.menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .topbar .nav,
  .topbar .topbar__cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}

/* ===== Hero Content ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.hero__content {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 600;
}
.hero__sub {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 28px;
  color: white;
}
.hero__sub p {
  margin: 0;
  color: white;
  font-size: 25px;
}
.hero--compact {
  padding: 72px 0 34px;
}
.hero--compact .hero__content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero--compact .hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn--ghost {
  color: #ffffff;
  background: transparent;
  border-color: #3EBEFB;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn--solid {
  background: #672330;
  color: #ffffff;
}
.btn--solid:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.youtube-embed {
  background: #fff;
  padding: 0;
}
.youtube-embed__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 22px;
}
.youtube-embed__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
  text-align: center;
}
.youtube-embed__accent {
  width: 28px;
  height: 2px;
  margin: 16px auto 28px;
  background: rgba(103, 35, 48, 0.55);
  border-radius: 99px;
}
.youtube-embed__frame-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
  aspect-ratio: 16/9;
}
.youtube-embed__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}/*# sourceMappingURL=style.css.map */
