/* Layout */
/* Spacing */
/* Transitions */
/* Breakpoints */
/* Z-index scale */
/* Forms */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/poppins/poppins-v15-latin-ext_latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins/poppins-v15-latin-ext_latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins/poppins-v15-latin-ext_latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins/poppins-v15-latin-ext_latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins/poppins-v15-latin-ext_latin-700.woff2") format("woff2");
}
/* Minimal base reset for consistent rendering */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #000000;
  background: #FCEFEA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #D66056;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: #C84F46;
}
button,
input,
textarea,
select {
  font-family: 'Poppins', sans-serif;
}
.wrap {
  max-width: 1332px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main {
  background: linear-gradient(to bottom, #FCEFEA 0%, #FFFEFE 50%, #FCEFEA 100%);
}
.u-hidden {
  display: none !important;
}
.eyebrow {
  margin: 0 0 10px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.header {
  position: relative;
  z-index: 1000;
  background: #FCEFEA;
}
.header__wrap {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr) 246px;
  align-items: center;
  min-height: 136px;
}
.header__brand {
  width: 246px;
}
.header__brand:focus {
  outline: 0;
}
.header__brand img {
  width: 246px;
  max-width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}
.header__nav-link {
  color: #4E4E4E;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__nav-link--active,
.header__nav-link:hover {
  color: #D66056;
}
.header__nav .header__nav-cta {
  display: none;
}
.header__menu-toggle {
  display: none;
}
/* Keep the full navigation inside the header between the tablet menu and wide desktop layout. */
@media all and (min-width: 990px) and (max-width: 1199px) {
  .header__wrap {
    grid-template-columns: 185px minmax(0, 1fr) 210px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .header__brand,
  .header__brand img {
    width: 185px;
  }
  .header__nav {
    gap: 16px;
  }
  .header__nav-link {
    font-size: 12px;
  }
  .button--header {
    min-width: 210px;
  }
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .header__wrap {
    display: flex;
    min-height: 90px;
    justify-content: space-between;
  }
  .header__brand {
    flex-basis: auto;
  }
  .header__brand img {
    width: 148px;
  }
  .header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .header__menu-toggle:focus,
  .header__menu-toggle:active {
    border: 0;
    box-shadow: none;
    outline: 0;
  }
  .header__menu-line {
    display: block;
    height: 2px;
    background: #483A30;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .header__nav {
    display: flex;
    position: absolute;
    top: 90px;
    right: 20px;
    left: auto;
    width: calc(100% - 40px);
    max-width: 250px;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .header__nav-link {
    display: block;
    padding: 12px;
  }
  .header__nav .header__nav-cta {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    margin-bottom: 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 300;
  }
  .header__wrap > .button {
    display: none;
  }
  .is-menu-open .header__nav {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }
  .is-menu-open .header__menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .is-menu-open .header__menu-line:nth-child(2) {
    opacity: 0;
  }
  .is-menu-open .header__menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__menu-line,
  .header__nav {
    transition: none;
  }
}
.footer {
  padding: 23px 0 24px;
  color: #D5D5D4;
  background: #312E2C;
}
.footer__wrap {
  max-width: 1380px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__wordmark {
  margin: 0;
  font-size: 100px;
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.footer__claim {
  margin: 174px 0 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.02;
}
.footer__claim span {
  color: #D66056;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 230px 220px minmax(0, 1fr) auto;
  gap: 45px;
  align-items: start;
  margin-top: 132px;
}
.footer__nav,
.footer__social-links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__partner {
  display: flex;
  align-self: end;
  justify-self: end;
}
.footer__partner img {
  display: block;
  width: 174px;
  height: auto;
}
.footer__bottom a,
.footer__bottom p {
  margin: 0;
  color: #D5D5D4;
  font-size: 20px;
  line-height: 1.5;
}
.footer__contact a {
  overflow-wrap: anywhere;
}
.footer__bottom a:hover,
.footer__legal a:hover {
  color: #FFFFFF;
}
.footer__nav a {
  font-weight: 600;
  text-transform: uppercase;
}
.footer__contact p {
  margin-top: 12px;
}
.footer__qr {
  width: 92px;
  height: 92px;
  margin-top: 14px;
  object-fit: cover;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  color: #D5D5D4;
  font-size: 16px;
}
.footer__legal p {
  margin: 0;
}
.footer__legal a {
  color: #D5D5D4;
  text-decoration: underline;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }
  .footer__top {
    display: block;
  }
  .footer__wordmark {
    font-size: 52px;
  }
  .footer__claim {
    margin-top: 45px;
    font-size: 39px;
  }
  .footer__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-top: 55px;
  }
  .footer__legal {
    display: block;
    margin-top: 35px;
  }
  .footer__legal a {
    display: inline-block;
    margin-top: 10px;
  }
}
@media all and (max-width: 640px) {
  .footer__bottom {
    grid-template-columns: 1fr;
  }
  .footer__partner {
    align-self: start;
    justify-self: start;
  }
  .footer__partner img {
    width: 140px;
    height: auto;
  }
}
.button {
  text-decoration: none !important;
  display: inline-block;
  padding: 10px 18px;
  color: #FFFFFF !important;
  background-color: #D66056 !important;
  border: thin solid transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 9999px;
  -moz-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  padding: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
}
.button:hover {
  background-color: #BE4B42 !important;
  color: #FFFFFF !important;
}
.button--outline {
  background: transparent !important;
  border-color: #FFFFFF;
}
.button--outline:hover {
  background: #FFFFFF !important;
  color: #483A30 !important;
}
.button--header {
  min-width: 246px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 300;
}
.button--submit {
  min-width: 154px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  font-size: 12px;
}
.form {
  display: flex;
  flex-wrap: wrap;
}
.form__field {
  width: 100%;
  margin-bottom: 14px;
}
.form__field label {
  display: block;
  margin-bottom: 5px;
  color: #A49D99;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 10px 14px;
  color: #FFFFFF;
  background: #4E4E4E;
  border: 1px solid #87817D;
  border-radius: 8px;
  font-size: 16px;
  outline: 0;
}
.form__field input {
  height: 44px;
}
.form__field textarea {
  min-height: 190px;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: #D66056;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #9C9C9C;
}
.form .button {
  margin-left: auto;
}
/* Contact Form 7 wraps field markup and the submit button in paragraphs. */
.form__field > p {
  margin: 0;
}
.form .wpcf7-form-control-wrap {
  display: block;
}
.form > p {
  display: flex;
  width: 100%;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.form > p .button {
  margin-left: 0;
}
.form .wpcf7-response-output {
  width: 100%;
  margin: 16px 0 0;
}
.form .wpcf7-not-valid-tip {
  margin-top: 6px;
}
.form__field--acceptance {
  flex: 1 1 0;
  width: auto;
  margin-bottom: 0;
  align-self: center;
}
.form__field--acceptance > p {
  display: flex;
  align-items: center;
}
.form__field--acceptance .wpcf7-list-item {
  margin: 0;
}
.form__field--acceptance label {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
.form__field--acceptance input[type='checkbox'] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #D66056;
}
.form__field--acceptance a {
  color: #D66056;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form > .form__field--acceptance + p {
  position: relative;
  width: auto;
  margin-left: auto;
}
.form > .form__field--acceptance + p .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: -34px;
  margin: 0;
  transform: translateY(-50%);
}
@media all and (max-width: 767px) {
  .form__field--acceptance {
    flex-basis: 100%;
    margin-bottom: 14px;
  }
  .form > .form__field--acceptance + p {
    width: 100%;
  }
}
/* Pages */
.hero {
  padding-bottom: 16px;
  background: transparent;
}
.contact-page .hero {
  padding-bottom: 40px;
}
.hero__layout--homepage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 20px;
}
.hero__layout--homepage .hero__media,
.hero__widget {
  height: 800px;
}
.hero__widget {
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 34px;
}
.hero__widget-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero__media {
  position: relative;
  height: 700px;
  overflow: hidden;
  border-radius: 34px;
}
.hero__image,
.hero__shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__image {
  object-fit: cover;
  object-position: center 46%;
}
.hero__shade {
  background: linear-gradient(90deg, rgba(14, 11, 8, 0.86) 0%, rgba(14, 11, 8, 0.55) 33%, rgba(14, 11, 8, 0.05) 65%, transparent 100%);
}
.hero__content {
  position: absolute;
  bottom: 60px;
  left: 43px;
  width: 570px;
  color: #FFFFFF;
}
.hero__title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.hero__title span {
  color: #D66056;
}
.hero__text {
  max-width: 500px;
  margin: 20px 0 28px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.62;
}
.hero__actions {
  display: flex;
  gap: 18px;
}
.hero__actions .button {
  border-radius: 12px;
  font-size: 13px;
  font-weight: 300;
}
@keyframes hero-image-enter {
  from {
    opacity: 0.94;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hero__image {
  animation: hero-image-enter 0.5s ease-out 0.08s both;
}
.hero__title,
.hero__text,
.hero__actions {
  animation: hero-content-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__title {
  animation-delay: 0.18s;
}
.hero__text {
  animation-delay: 0.24s;
}
.hero__actions {
  animation-delay: 0.3s;
}
.services {
  padding-bottom: 65px;
  background: transparent;
}
.services__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 1.7fr;
  align-items: stretch;
  min-height: 158px;
  padding: 0;
  color: #FFFFFF;
  background: #483A30;
  border-radius: 12px;
}
.services__item {
  display: grid;
  grid-template-rows: 56px 42px;
  align-content: center;
  justify-items: center;
  min-width: 0;
  color: #FFFFFF;
  text-align: center;
}
.services__item:hover {
  color: #FFFFFF;
  opacity: 0.75;
}
.services__icon {
  width: 54px;
  height: 56px;
  margin: 0;
  object-fit: contain;
}
.services__label {
  align-self: start;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}
.services__all {
  position: relative;
  display: grid;
  grid-template-rows: 56px 42px;
  align-content: center;
  justify-items: center;
  min-width: 0;
  padding: 0;
  color: #D6CFCA;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.services__all:before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 72px;
  border-left: 1px solid rgba(227, 227, 227, 0.28);
  content: '';
  transform: translateY(-50%);
}
.services__all-icon {
  width: 54px;
  height: 56px;
  object-fit: contain;
}
.services__all-label {
  align-self: start;
  margin-top: 6px;
}
.services__all-label span {
  margin-left: 6px;
  font-size: 17px;
}
.services__all:hover {
  color: #FFFFFF;
}
.process {
  padding: 10px 0 132px;
  background: transparent;
}
.process__wrap {
  max-width: 1240px;
}
.process__intro {
  margin-left: 2px;
}
.process__heading {
  margin: 0;
  color: #000000;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.process__heading span {
  display: block;
  color: #D66056;
}
.process__lead {
  margin: 29px 0 46px;
  color: #1D1D1D;
  font-size: 24px;
  line-height: 1.35;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 50px;
}
.process__card,
.process__cta {
  position: relative;
  min-height: 280px;
  padding: 83px 38px 30px;
  border-radius: 40px;
}
.process__card {
  overflow: visible;
  background: #EDEDED;
}
.process__card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: #D66056;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32;
}
.process__card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #898989;
  font-size: 20px;
  line-height: 1.5;
}
.process__card-icon {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  opacity: 1;
}
.process__card:after {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 40px;
  background: url('../images/icons/arrow.svg') center / contain no-repeat;
  content: '';
}
.process__card--price:before,
.process__card--errors:before {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: -47px;
  width: 40px;
  height: 40px;
  background: url('../images/icons/arrow.svg') center / contain no-repeat;
  content: '';
  transform: translateX(50%);
}
.process__card--price:after,
.process__card--errors:after,
.process__card--trust:after,
.process__card--start:after {
  top: 50%;
  right: -45px;
  transform: translateY(-50%) rotate(-90deg);
}
.process__card--stress:after {
  right: 50%;
  bottom: -47px;
  transform: translateX(50%);
}
.process__cta {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  background: #D66056;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.27;
}
.process__cta:hover {
  color: #FFFFFF;
  background: #BE4B42;
}
.process__cta span {
  position: absolute;
  right: 27px;
  bottom: 1px;
  color: rgba(255, 255, 255, 0.17);
  font-size: 130px;
  line-height: 1;
}
.contact {
  padding-bottom: 100px;
  background: transparent;
}
.contact__shell {
  overflow: visible;
}
.contact__image-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
}
.contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.contact__columns {
  display: flex;
  gap: 0;
}
.contact__details,
.contact__form-panel {
  flex: 1 1 0;
  width: auto;
  border-radius: 0 0 34px 34px;
}
.contact__details {
  padding: 72px 58px 34px;
  background: #E8E8E8;
}
.contact__heading {
  margin: 0 0 42px;
  color: #D66056;
  font-size: 43px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.contact__address {
  margin: 0;
  font-style: normal;
}
.contact__address-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin: 0 0 20px;
}
.contact__address-row img {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.contact__address-row span {
  color: #4E4E4E;
  font-size: 20px;
  line-height: 1.45;
}
.contact__address-row strong {
  display: block;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact__address-row a {
  color: #4E4E4E;
}
.contact__address-row a {
  overflow-wrap: anywhere;
}
.contact__address-row a:hover {
  color: #D66056;
}
.contact__socials {
  display: flex;
  gap: 8px;
  margin: 31px 0 35px;
}
.contact__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #FFFFFF;
  background: #000000;
  border-radius: 50%;
  font-size: 16px;
}
.contact__socials a:hover {
  color: #FFFFFF;
  background: #D66056;
}
.contact__social-icon {
  width: 30px;
  height: 30px;
}
.contact__social-link--facebook .contact__social-icon {
  width: 20px;
  height: 24px;
}
.contact__social-link--link .contact__social-icon,
.contact__social-link--linkedin .contact__social-icon {
  width: 18px;
  height: 21px;
}
.contact__socials .contact__social-link--instagram,
.contact__socials .contact__social-link--instagram:hover {
  color: #000000;
  background: transparent;
}
.contact__social-link--instagram .contact__social-icon {
  width: 42px;
  height: 42px;
}
.contact__map {
  width: 100%;
  height: 185px;
  border: 0;
  object-fit: cover;
}
.contact__form-panel {
  padding: 83px 56px 40px;
  background: #483A30;
}
.contact__form-heading {
  margin: 0 0 56px;
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hero__layout--homepage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__layout--homepage .hero__media {
    height: 600px;
    order: -1;
  }
  .hero__widget {
    height: 800px;
  }
  .hero__media {
    height: 600px;
  }
  .hero__content {
    left: 45px;
  }
  .services__inner {
    display: flex;
    padding: 20px;
  }
  .services__item {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .services__icon {
    width: 42px;
    height: 44px;
  }
  .services__label {
    font-size: 11px;
  }
  .services__all {
    display: none;
  }
  .process__grid {
    gap: 30px;
  }
  .process__card,
  .process__cta {
    padding: 48px 25px 25px;
    min-height: 250px;
  }
  .process__card-title {
    font-size: 14px;
  }
  .process__card-text {
    font-size: 13px;
  }
}
@media all and (max-width: 767px) {
  .hero {
    padding-bottom: 12px;
  }
  .contact-page .hero {
    padding-bottom: 24px;
  }
  .hero__layout--homepage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero__layout--homepage .hero__media {
    height: 600px;
    order: -1;
  }
  .hero__widget {
    height: 800px;
    border-radius: 22px;
  }
  .hero__media {
    height: 600px;
    border-radius: 22px;
  }
  .hero__image {
    object-position: 62% center;
  }
  .hero__shade {
    background: linear-gradient(90deg, rgba(14, 11, 8, 0.88) 0%, rgba(14, 11, 8, 0.54) 65%, rgba(14, 11, 8, 0.08) 100%);
  }
  .hero__content {
    top: auto;
    bottom: 34px;
    left: 24px;
    width: calc(100% - 48px);
    transform: none;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__text {
    margin: 14px 0 20px;
    font-size: 14px;
    line-height: 1.42;
  }
  .hero__actions {
    gap: 10px;
  }
  .hero__actions .button {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 6px;
    font-size: 9px;
  }
  .services {
    padding-bottom: 45px;
  }
  .services__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
    padding: 16px 8px;
    border-radius: 10px;
  }
  .services__item {
    grid-template-rows: 33px 36px;
    min-height: 104px;
  }
  .services__icon {
    width: 31px;
    height: 33px;
  }
  .services__label {
    font-size: 9px;
  }
  .services__all {
    display: none;
  }
  .process {
    padding: 5px 0 72px;
  }
  .process__heading {
    font-size: 31px;
  }
  .process__lead {
    margin: 20px 0 30px;
    font-size: 14px;
  }
  .process__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process__card,
  .process__cta {
    min-height: 0;
    padding: 32px 27px;
    border-radius: 24px;
  }
  .process__card-title {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .process__card-text {
    max-width: 80%;
    font-size: 13px;
  }
  .process__card-icon {
    right: 17px;
    bottom: 17px;
  }
  .process__card:before,
  .process__card:after {
    display: none;
  }
  .process__cta {
    min-height: 160px;
    font-size: 24px;
  }
  .contact {
    padding-bottom: 55px;
  }
  .contact__shell {
    overflow: hidden;
    border-radius: 22px;
  }
  .contact__image-wrap {
    height: 180px;
    border-radius: 0;
  }
  .contact__columns {
    display: block;
    gap: 0;
  }
  .contact__details,
  .contact__form-panel {
    width: 100%;
    border-radius: 0;
  }
  .contact__details {
    padding: 42px 26px 30px;
  }
  .contact__heading {
    margin-bottom: 30px;
    font-size: 35px;
  }
  .contact__address-row span {
    font-size: 16px;
  }
  .contact__address-row strong {
    font-size: 20px;
  }
  .contact__map {
    height: 155px;
  }
  .contact__form-panel {
    padding: 45px 26px 30px;
  }
  .contact__form-heading {
    margin-bottom: 35px;
    font-size: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .hero__title,
  .hero__text,
  .hero__actions {
    animation: none;
  }
}
.about-page__hero {
  padding-bottom: 45px;
}
.about-page .why-me {
  padding: 40px 0 50px;
}
.why-me__surface {
  padding: 64px 48px 66px;
  background: #F8F4F0;
  border-radius: 34px;
}
.why-me__heading {
  margin: 0;
  color: #D66056;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.why-me__lead {
  margin: 18px 0 48px;
  color: #000000;
  font-size: 20px;
  line-height: 1.45;
}
.why-me__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #F8F7F0;
  border: 1px solid rgba(78, 78, 78, 0.55);
  border-radius: 30px;
}
.why-me__card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 288px;
  padding: 42px 48px 34px;
}
.why-me__card:nth-child(odd) {
  border-right: 1px solid rgba(78, 78, 78, 0.55);
}
.why-me__card:nth-child(-n+2) {
  border-bottom: 1px solid rgba(78, 78, 78, 0.55);
}
.why-me__icon {
  width: 92px;
  height: 92px;
  margin: 3px auto 0;
  object-fit: contain;
}
.why-me__copy {
  min-width: 0;
}
.why-me__card-heading {
  margin: 0 0 24px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}
.why-me__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 17px;
  line-height: 1.55;
}
.why-me__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 208px;
  gap: 38px;
  align-items: end;
  margin-top: 94px;
  padding: 0 52px;
}
.why-me__stat {
  margin: 0;
  color: #4E4E4E;
}
.why-me__stat strong {
  display: block;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}
.why-me__stat strong span {
  color: #D66056;
}
.why-me__stat small {
  display: block;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
}
.why-me__stat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 20px;
  color: #FFFFFF;
  background: #D66056;
  border-radius: 38px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.why-me__stat-cta:hover {
  color: #FFFFFF;
  background: #ce4135;
}
.guide {
  position: relative;
  max-width: 1800px;
  min-height: 990px;
  margin: 0 auto;
  padding: 65px 0 135px;
  background: transparent;
}
.guide__media {
  width: calc(50% + 54px);
  height: 790px;
  min-height: 0;
  overflow: hidden;
}
.guide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.guide__content {
  position: absolute;
  z-index: 1;
  top: 65px;
  right: 0;
  display: flex;
  width: 50%;
  align-items: center;
  min-height: 790px;
  color: rgba(255, 255, 255, 0.68);
  background: #483A30;
  border-radius: 36px 0 0 36px;
}
.guide__content-inner {
  width: 100%;
  max-width: 650px;
  padding: 65px 68px;
}
.guide__eyebrow {
  margin: 0 0 100px;
  color: #D66056;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.guide__heading {
  margin: 0 0 38px;
  color: #FFFFFF;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.guide__heading span {
  color: #D66056;
}
.guide__quote {
  margin: 0 0 50px;
  padding-left: 28px;
  border-left: 4px solid #D66056;
  color: rgba(255, 255, 255, 0.85);
  font-size: 21px;
  font-style: italic;
  line-height: 1.48;
}
.guide__text {
  margin: 0 0 58px;
  font-size: 17px;
  line-height: 1.58;
}
.guide__button {
  min-width: 150px;
  border-radius: 12px;
  font-size: 11px;
}
.selling-strategy {
  padding: 0 0 135px;
  background: transparent;
}
.selling-strategy__wrap {
  max-width: 1332px;
}
.selling-strategy__intro {
  max-width: 1230px;
  margin: 0 auto;
}
.selling-strategy__heading {
  margin: 0;
  color: #D66056;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.selling-strategy__lead {
  margin: 18px 0 46px;
  color: #000000;
  font-size: 20px;
  line-height: 1.45;
}
.selling-strategy__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin: 0;
  padding: 28px;
  color: #FFFFFF;
  background: #000000;
  border-radius: 38px;
  list-style: none;
}
.selling-strategy__item {
  min-height: 385px;
  padding: 19px 20px 24px;
  background: #3b3b3b;
  border-radius: 10px;
}
.selling-strategy__number {
  display: block;
  margin-bottom: 55px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.selling-strategy__item-heading {
  min-height: 54px;
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}
.selling-strategy__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}
.about-page__contact {
  padding: 0 0 120px;
  background: transparent;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .why-me__surface {
    padding: 50px 34px;
  }
  .why-me__card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 32px 25px;
  }
  .why-me__icon {
    width: 65px;
    height: 65px;
  }
  .why-me__card-heading {
    font-size: 15px;
  }
  .why-me__text {
    font-size: 13px;
  }
  .why-me__stats {
    gap: 20px;
    padding: 0;
  }
  .why-me__stat strong {
    font-size: 50px;
  }
  .why-me__stat small {
    font-size: 12px;
  }
  .why-me__stat-cta {
    min-height: 90px;
    font-size: 11px;
  }
  .guide {
    min-height: 785px;
    padding: 45px 0 90px;
  }
  .guide__media {
    width: calc(50% + 38px);
    height: 650px;
    min-height: 0;
  }
  .guide__content {
    top: 45px;
    width: 50%;
    min-height: 650px;
  }
  .guide__content-inner {
    padding: 50px 35px;
  }
  .guide__eyebrow {
    margin-bottom: 60px;
  }
  .guide__quote {
    font-size: 16px;
  }
  .selling-strategy__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .selling-strategy__item {
    min-height: 300px;
  }
  .selling-strategy__item:last-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}
@media all and (max-width: 767px) {
  .about-page__hero {
    padding-bottom: 28px;
  }
  .about-page .why-me {
    padding: 24px 0 30px;
  }
  .why-me__surface {
    padding: 40px 22px;
    border-radius: 24px;
  }
  .why-me__heading {
    font-size: 31px;
  }
  .why-me__lead {
    margin: 15px 0 30px;
    font-size: 14px;
  }
  .why-me__lead br {
    display: none;
  }
  .why-me__grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .why-me__card {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 0;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(78, 78, 78, 0.55);
  }
  .why-me__card:nth-child(odd) {
    border-right: 0;
  }
  .why-me__card:last-child {
    border-bottom: 0;
  }
  .why-me__icon {
    width: 50px;
    height: 50px;
  }
  .why-me__card-heading {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .why-me__text {
    font-size: 13px;
  }
  .why-me__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
    margin-top: 45px;
    padding: 0;
  }
  .why-me__stat strong {
    font-size: 46px;
  }
  .why-me__stat small {
    margin-top: 9px;
    font-size: 11px;
  }
  .why-me__stat-cta {
    min-height: 90px;
    border-radius: 26px;
    font-size: 10px;
  }
  .guide {
    min-height: 0;
    padding: 40px 0 70px;
  }
  .guide__media {
    width: 100%;
    height: 470px;
    min-height: 0;
  }
  .guide__content {
    position: static;
    width: 100%;
    min-height: 0;
    border-radius: 0;
  }
  .guide__content-inner {
    padding: 45px 25px 50px;
  }
  .guide__eyebrow {
    margin-bottom: 50px;
  }
  .guide__heading {
    font-size: 36px;
  }
  .guide__quote {
    margin-bottom: 35px;
    padding-left: 20px;
    font-size: 16px;
  }
  .guide__text {
    margin-bottom: 35px;
    font-size: 14px;
  }
  .selling-strategy {
    padding-bottom: 75px;
  }
  .selling-strategy__heading {
    font-size: 31px;
  }
  .selling-strategy__lead {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .selling-strategy__lead br {
    display: none;
  }
  .selling-strategy__list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
  }
  .selling-strategy__item,
  .selling-strategy__item:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 25px;
  }
  .selling-strategy__number {
    margin-bottom: 25px;
  }
  .selling-strategy__item-heading {
    min-height: 0;
  }
  .about-page__contact {
    padding-bottom: 70px;
  }
}
.references-page .hero {
  padding-bottom: 82px;
}
.references-page .references {
  padding: 40px 0 134px;
}
.references__intro {
  max-width: 1240px;
  margin: 0 auto 36px;
}
.references__heading {
  margin: 0;
  color: #D66056;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.references__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4E4E4E;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}
.references__carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}
.references__track {
  display: flex;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.references__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.references__column {
  display: grid;
  width: 25vw;
  flex: 0 0 25vw;
  grid-template-rows: repeat(2, 346px);
}
.references__tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
}
.references__tile--quote {
  padding: 63px 46px 42px;
  color: #FFFFFF;
}
.references__tile--primary {
  background: #D66056;
}
.references__tile--dark {
  background: #0B1728;
}
.references__tile--lenka {
  padding: 60px 28px 36px;
}
.references__tile--google-review {
  padding: 60px 36px 36px;
}
.references__tile--jana {
  padding: 80px 50px 36px;
}
.references__tile--david {
  padding: 67px 45px 36px;
}
.references__tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.references__tile-image--street {
  object-position: center;
}
.references__tile-image--villa {
  object-position: center 55%;
}
.references__tile-image--cottage {
  object-position: center;
}
.references__quote-name {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.references__quote-location {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.references__quote-text {
  margin: 65px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}
.references__tile--lenka .references__quote-text {
  margin-top: 70px;
}
.references__tile--dark .references__quote-text {
  max-width: 345px;
  margin-top: 86px;
}
.references__tile--jana .references__quote-text,
.references__tile--david .references__quote-text {
  margin-top: 65px;
}
.references__google {
  position: absolute;
  right: 26px;
  bottom: 21px;
  display: inline-flex;
  max-width: calc(100% - 52px);
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 10px;
  color: #4E4E4E;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}
.references__google:hover {
  color: #000000;
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.22);
}
.references__google:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(214, 96, 86, 0.72), 0 11px 22px rgba(0, 0, 0, 0.22);
}
.references__google-mark {
  flex: 0 0 auto;
  color: transparent;
  background: conic-gradient(from 220deg, #34A853 0 25%, #4285F4 0 50%, #EA4335 0 75%, #FBBC05 0);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.references__google-copy {
  min-width: 0;
}
.references__google-arrow {
  flex: 0 0 auto;
  color: #D66056;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}
.references__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 12px;
  width: 52px;
  height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.references__arrow:before {
  position: absolute;
  top: 13px;
  left: 6px;
  width: 25px;
  height: 25px;
  border-top: 7px solid #FFFFFF;
  border-right: 7px solid #FFFFFF;
  content: '';
  transform: rotate(45deg);
}
.references__arrow:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .references__google {
    transition: none;
  }
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .references-page .hero {
    padding-bottom: 65px;
  }
  .references__intro {
    margin-right: 20px;
    margin-bottom: 30px;
    margin-left: 20px;
  }
  .references__heading {
    font-size: 38px;
  }
  .references__column {
    width: 50vw;
    flex-basis: 50vw;
    grid-template-rows: repeat(2, 240px);
  }
  .references__tile--quote {
    padding: 34px 26px;
  }
  .references__quote-text {
    margin-top: 34px;
    font-size: 13px;
  }
  .references__tile--dark .references__quote-text {
    margin-top: 46px;
  }
}
@media all and (max-width: 767px) {
  .references-page .hero {
    padding-bottom: 48px;
  }
  .references-page .references {
    padding: 24px 0 65px;
  }
  .references__intro {
    margin: 0 20px 28px;
  }
  .references__heading {
    font-size: 31px;
  }
  .references__lead {
    margin-top: 15px;
    font-size: 15px;
  }
  .references__column {
    width: 50vw;
    flex-basis: 50vw;
    grid-template-rows: repeat(2, 220px);
  }
  .references__tile--quote {
    padding: 26px 18px;
  }
  .references__quote-name {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .references__quote-location {
    font-size: 9px;
  }
  .references__quote-text,
  .references__tile--dark .references__quote-text {
    margin-top: 38px;
    font-size: 11px;
    line-height: 1.42;
  }
  .references__tile--quote .references__quote-text {
    margin-top: 20px;
  }
  .references__google {
    right: 16px;
    bottom: 14px;
    max-width: calc(100% - 32px);
    min-height: 40px;
    gap: 7px;
    padding: 6px 9px 6px 8px;
    font-size: 10px;
    line-height: 1.25;
  }
  .references__google-mark {
    font-size: 20px;
  }
  .references__google-arrow {
    font-size: 16px;
  }
  .references__arrow {
    right: 4px;
    width: 38px;
    height: 44px;
  }
  .references__arrow:before {
    top: 10px;
    left: 5px;
    width: 18px;
    height: 18px;
    border-width: 5px;
  }
}
.offers-page .hero {
  padding-bottom: 20px;
}
.offers {
  padding: 86px 0 108px;
}
.offers__wrap {
  max-width: 1250px;
}
.offers__intro {
  margin-bottom: 72px;
}
.offers__heading {
  margin: 0;
  color: #D66056;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.offers__lead {
  margin: 18px 0 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.45;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.offer-card {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 394px;
  padding: 0;
  flex-direction: column;
  overflow: hidden;
  color: #FFFFFF;
  background: #483A30;
  border: 0;
  border-radius: 12px;
  font: inherit;
  text-align: left;
}
.offer-card:hover {
  color: #FFFFFF;
}
.offer-card--interactive {
  cursor: pointer;
  text-decoration: none;
}
.offer-card--interactive:focus-visible {
  outline: 4px solid #D66056;
  outline-offset: 4px;
}
.offer-card__media {
  display: block;
  height: 264px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.offer-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}
.offer-card:hover .offer-card__image {
  transform: scale(1.06);
}
.offer-card__price {
  position: absolute;
  z-index: 1;
  top: 218px;
  right: 16px;
  min-width: 166px;
  padding: 11px 14px;
  color: #FFFFFF;
  background: #D66056;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}
.offer-card__body {
  padding: 17px 15px 16px;
}
.offer-card__title {
  display: block;
  margin: 0 0 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}
.offer-card__title span {
  color: #D66056;
}
.offer-card__text {
  display: block;
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}
.offer-card--contact .offer-card__image {
  object-position: center 45%;
}
.offer-card--contact .offer-card__price {
  min-width: 152px;
  text-transform: uppercase;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .offers {
    padding: 64px 0 84px;
  }
  .offers__intro {
    margin-bottom: 44px;
  }
  .offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .offer-card {
    min-height: 407px;
  }
  .offer-card__media {
    height: 270px;
  }
  .offer-card__price {
    top: 222px;
  }
}
@media all and (max-width: 767px) {
  .offers {
    padding: 52px 0 65px;
  }
  .offers__intro {
    margin-bottom: 32px;
  }
  .offers__heading {
    font-size: 31px;
  }
  .offers__lead {
    margin-top: 13px;
    font-size: 15px;
  }
  .offers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offer-card {
    min-height: 386px;
  }
  .offer-card__media {
    height: 250px;
  }
  .offer-card__price {
    top: 205px;
    right: 14px;
    min-width: 158px;
    font-size: 12px;
  }
  .offer-card__body {
    padding: 16px 14px;
  }
  .offer-card__title {
    margin-bottom: 9px;
    font-size: 17px;
  }
  .offer-card__text {
    font-size: 12px;
  }
}
.property-detail__hero {
  padding: 34px 0 92px;
  background: radial-gradient(circle at 88% 18%, rgba(214, 96, 86, 0.11) 0, rgba(214, 96, 86, 0) 28%), linear-gradient(180deg, #FCEFEA 0%, #FFFAF8 100%);
}
.property-detail__hero-wrap {
  max-width: 1250px;
}
.property-detail__breadcrumb {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  gap: 9px;
  color: rgba(72, 58, 48, 0.66);
  font-size: 12px;
  line-height: 1.5;
}
.property-detail__breadcrumb a {
  color: #D66056;
  font-weight: 600;
  text-decoration: none;
}
.property-detail__breadcrumb a:hover {
  color: #C84F46;
}
.property-detail__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}
.property-detail__media {
  position: relative;
  min-width: 0;
  margin: 0;
}
.property-detail__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(72, 58, 48, 0.18);
}
.property-detail__header {
  min-width: 0;
}
.property-detail__eyebrow {
  margin: 0 0 13px;
  color: #D66056;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.property-detail__title {
  margin: 0;
  color: #483A30;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}
.property-detail__price {
  margin: 24px 0 0;
  color: #D66056;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
.property-detail__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(72, 58, 48, 0.82);
  font-size: 18px;
  line-height: 1.7;
}
.property-detail__actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.property-detail__text-link {
  color: #483A30;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}
.property-detail__text-link:hover {
  color: #D66056;
}
.property-pdf {
  padding: 92px 0 104px;
  color: #FFFFFF;
  background: #483A30;
}
.property-pdf__wrap {
  max-width: 1180px;
}
.property-pdf__header {
  display: flex;
  margin-bottom: 32px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.property-pdf__eyebrow {
  margin: 0 0 9px;
  color: #D66056;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.property-pdf__title {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.property-pdf__external {
  min-width: 220px;
  flex: 0 0 auto;
}
.property-pdf__external span {
  display: inline-block;
  margin-left: 7px;
  line-height: 1;
  transform: translateY(-1px);
}
.property-pdf__viewer {
  height: clamp(560px, 72vw, 820px);
  overflow: hidden;
  background: #FFFFFF;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
}
.property-pdf__frame {
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 0;
}
.property-pdf__mobile-preview {
  display: none;
}
.property-pdf__fallback {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}
.property-pdf__fallback a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.property-pdf__fallback a:hover {
  color: #D66056;
}
.property-page .property-detail--has-pdf ~ .contact {
  padding-top: 96px;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .property-detail__hero {
    padding-bottom: 72px;
  }
  .property-detail__hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
    gap: 42px;
  }
  .property-detail__title {
    font-size: 40px;
  }
  .property-detail__lead {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .property-page .property-detail--has-pdf ~ .contact {
    padding-top: 56px;
  }
  .property-detail__hero {
    padding: 24px 0 58px;
  }
  .property-detail__breadcrumb {
    margin-bottom: 22px;
    overflow: hidden;
    white-space: nowrap;
  }
  .property-detail__breadcrumb span[aria-current='page'] {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .property-detail__hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .property-detail__image {
    border-radius: 16px;
  }
  .property-detail__eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .property-detail__title {
    font-size: clamp(34px, 10vw, 42px);
  }
  .property-detail__price {
    margin-top: 19px;
    font-size: 13px;
  }
  .property-detail__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }
  .property-detail__actions {
    margin-top: 27px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .property-detail__primary-action {
    width: 100%;
    min-width: 0;
  }
  .property-detail__text-link {
    align-self: flex-start;
  }
  .property-pdf {
    padding: 62px 0 70px;
  }
  .property-pdf__header {
    margin-bottom: 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }
  .property-pdf__title {
    font-size: 30px;
  }
  .property-pdf__external {
    width: 100%;
    min-width: 0;
  }
  .property-pdf__viewer {
    height: auto;
    border-width: 6px;
    border-radius: 13px;
  }
  .property-pdf__frame {
    display: none;
  }
  .property-pdf__mobile-preview {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    color: #FFFFFF;
    background: #483A30;
    text-decoration: none;
  }
  .property-pdf__mobile-preview:focus-visible {
    outline: 4px solid #D66056;
    outline-offset: -4px;
  }
  .property-pdf__preview-image {
    display: block;
    width: 100%;
    height: auto;
  }
  .property-pdf__mobile-cta {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: #FFFFFF;
    background: #D66056;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .property-pdf__mobile-cta span {
    font-size: 16px;
    line-height: 1;
  }
  .property-pdf__mobile-preview--fallback {
    display: grid;
    min-height: clamp(260px, 82vw, 380px);
    place-items: center;
    background: linear-gradient(135deg, rgba(214, 96, 86, 0.88) 0%, rgba(214, 96, 86, 0.64) 100%), #483A30;
  }
  .property-pdf__preview-label {
    display: inline-flex;
    width: 86px;
    height: 110px;
    align-items: center;
    justify-content: center;
    color: #483A30;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .property-detail__image {
    scroll-behavior: auto;
  }
}
.services-page .hero {
  padding-bottom: 20px;
}
.services-infographics {
  padding: 0 0 68px;
}
.services-infographics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.services-infographics__item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #EDEDED;
}
.services-infographics__link {
  position: relative;
  display: block;
}
.services-infographics__link:after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000000;
  background: rgba(255, 255, 255, 0.88);
  content: '+';
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.services-infographics__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.services-infographics__link:hover .services-infographics__image {
  transform: scale(1.025);
}
.services-infographics__link:hover:after,
.services-infographics__link:focus-visible:after {
  opacity: 1;
  transform: translateY(0);
}
.services-infographics__link:focus-visible {
  outline: 3px solid #D66056;
  outline-offset: -3px;
}
.services-page .additional-services {
  padding: 40px 0 100px;
}
.additional-services__inner {
  padding: 76px 45px 42px;
  background: #F8F7F0;
  border-radius: 34px;
}
.additional-services__intro {
  max-width: 900px;
}
.additional-services__heading {
  margin: 0;
  color: #D66056;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.additional-services__lead {
  margin: 18px 0 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.46;
}
.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 52px;
  margin-top: 68px;
}
.additional-services__card {
  position: relative;
  display: flex;
  min-height: 442px;
  flex-direction: column;
  padding: 132px 40px 34px;
}
.additional-services__card:before,
.additional-services__card:after {
  position: absolute;
  z-index: 0;
  background: #EDEDED;
  content: '';
}
.additional-services__card:before {
  top: 0;
  left: 0;
  width: 141px;
  height: 108px;
  border-radius: 34px 34px 0 0;
}
.additional-services__card:after {
  top: 86px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0 34px 34px 34px;
}
.additional-services__icon {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 36px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0);
}
.additional-services__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 276px;
  flex-direction: column;
}
.additional-services__title {
  margin: 0 0 30px;
  color: #747474;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
}
.additional-services__text {
  margin: 0;
  color: #898989;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}
.additional-services__card:nth-child(2) .additional-services__text {
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.45;
}
.additional-services__stat {
  margin: auto 0 0;
  color: #D66056;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.additional-services__stat span {
  color: #000000;
}
.additional-services__stat-caption {
  margin: 12px 0 0;
  color: #898989;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}
.additional-services__action {
  position: absolute;
  right: -40px;
  bottom: -34px;
  min-width: 148px;
  margin: 0;
  padding: 14px 20px;
  border-radius: 8px 0 34px;
  font-size: 10px;
}
@media all and (min-width: 990px) {
  .additional-services__card:nth-child(n+4) {
    min-height: 356px;
  }
  .additional-services__card:nth-child(n+4) .additional-services__content {
    min-height: 190px;
  }
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .services-infographics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .additional-services {
    padding-bottom: 82px;
  }
  .additional-services__inner {
    padding: 60px 35px 38px;
  }
  .additional-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 32px;
    margin-top: 58px;
  }
}
@media all and (max-width: 767px) {
  .services-page .hero {
    padding-bottom: 12px;
  }
  .services-infographics {
    padding-bottom: 48px;
  }
  .services-infographics__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-infographics__item {
    border-radius: 14px;
  }
  .services-infographics__link:after {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none;
  }
  .services-page .additional-services {
    padding: 24px 0 55px;
  }
  .additional-services__inner {
    padding: 42px 22px 28px;
    border-radius: 22px;
  }
  .additional-services__heading {
    font-size: 31px;
  }
  .additional-services__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }
  .additional-services__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 48px;
  }
  .additional-services__card {
    min-height: 292px;
    padding: 84px 28px 24px;
  }
  .additional-services__card:before {
    width: 116px;
    height: 76px;
    border-radius: 26px 26px 0 0;
  }
  .additional-services__card:after {
    top: 60px;
    border-radius: 0 26px 26px 26px;
  }
  .additional-services__icon {
    top: 13px;
    left: 29px;
    width: 44px;
    height: 44px;
  }
  .additional-services__content {
    min-height: 184px;
  }
  .additional-services__title {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .additional-services__text {
    font-size: 15px;
  }
  .additional-services__stat {
    font-size: 30px;
  }
  .additional-services__stat-caption {
    margin-top: 8px;
    font-size: 15px;
  }
  .additional-services__action {
    right: -28px;
    bottom: -24px;
    border-radius: 8px 0 26px;
  }
}
.button--inverse {
  color: #FFFFFF;
  background: #483A30;
  border-color: #483A30;
}
.button--inverse:hover {
  color: #483A30;
  background: transparent;
}
.page-hero {
  padding: 0 0 28px;
  background: #FCEFEA;
}
.page-hero__image {
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 10%;
}
.page-content {
  padding: 72px 0 110px;
  background: #FFFFFF;
}
.page-content__wrap {
  max-width: 1040px;
}
.page-content__title {
  margin: 0 0 38px;
  color: #D66056;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.globalcontent {
  color: #483A30;
  font-size: 18px;
  line-height: 1.75;
}
.globalcontent:after {
  display: table;
  clear: both;
  content: '';
}
.globalcontent h2,
.globalcontent h3,
.globalcontent h4,
.globalcontent h5,
.globalcontent h6 {
  margin: 1.7em 0 0.6em;
  color: #483A30;
  font-weight: 600;
  line-height: 1.2;
}
.globalcontent h2 {
  font-size: 36px;
}
.globalcontent h3 {
  font-size: 29px;
}
.globalcontent h4 {
  font-size: 23px;
}
.globalcontent h5 {
  font-size: 19px;
}
.globalcontent h6 {
  color: #D66056;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.globalcontent p,
.globalcontent ul,
.globalcontent ol,
.globalcontent dl,
.globalcontent table,
.globalcontent blockquote,
.globalcontent pre,
.globalcontent address,
.globalcontent figure,
.globalcontent details,
.globalcontent .wp-block-columns,
.globalcontent .wp-block-cover,
.globalcontent .wp-block-media-text,
.globalcontent .wp-block-file,
.globalcontent .wp-block-buttons,
.globalcontent .wp-block-embed,
.globalcontent .wp-block-video,
.globalcontent .wp-block-audio {
  margin-top: 0;
  margin-bottom: 1.65em;
}
.globalcontent p.has-large-font-size {
  color: #483A30;
  font-size: clamp(25px, 3vw, 34px) !important;
  font-weight: 500;
  line-height: 1.35;
}
.globalcontent ul,
.globalcontent ol {
  padding-left: 1.55em;
}
.globalcontent li {
  padding-left: 0.18em;
}
.globalcontent li + li {
  margin-top: 0.42em;
}
.globalcontent li::marker {
  color: #D66056;
  font-weight: 600;
}
.globalcontent a:not(.button):not(.wp-block-button__link) {
  color: #D66056;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.globalcontent a:not(.button):not(.wp-block-button__link):hover {
  color: #C84F46;
  text-decoration-color: transparent;
}
.globalcontent strong {
  font-weight: 600;
}
.globalcontent mark {
  padding: 0.08em 0.25em;
  background: rgba(214, 96, 86, 0.2);
  color: inherit;
}
.globalcontent hr,
.globalcontent .wp-block-separator {
  width: 100%;
  height: 1px;
  margin: 58px 0;
  background: rgba(72, 58, 48, 0.22);
  border: 0;
}
.globalcontent .wp-block-separator.is-style-dots {
  height: auto;
  color: #D66056;
  background: transparent;
}
.globalcontent img,
.globalcontent video {
  max-width: 100%;
  height: auto;
}
.globalcontent figure {
  max-width: 100%;
}
.globalcontent figcaption,
.globalcontent .wp-caption-text {
  margin: 10px 0 0;
  color: rgba(72, 58, 48, 0.72);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}
.globalcontent .wp-block-image,
.globalcontent .wp-caption {
  margin-top: 2.2em;
  margin-bottom: 2.2em;
}
.globalcontent .wp-block-image img,
.globalcontent .wp-caption img {
  display: block;
  border-radius: 18px;
}
.globalcontent .wp-block-image > a,
.globalcontent .wp-caption > a {
  display: block;
  border-radius: 18px;
}
.globalcontent .wp-block-image > a:focus-visible,
.globalcontent .wp-caption > a:focus-visible {
  outline: 4px solid #D66056;
  outline-offset: 4px;
}
.globalcontent .wp-block-image .js-content-gallery-trigger,
.globalcontent .wp-caption .js-content-gallery-trigger {
  cursor: zoom-in;
}
.globalcontent .wp-block-image img.js-content-gallery-trigger:focus-visible,
.globalcontent .wp-caption img.js-content-gallery-trigger:focus-visible {
  outline: 4px solid #D66056;
  outline-offset: 4px;
}
.globalcontent .wp-block-image.is-style-rounded img {
  border-radius: 999px;
}
.globalcontent .alignleft {
  float: left;
  max-width: 48%;
  margin: 0.45em 34px 24px 0;
}
.globalcontent .alignright {
  float: right;
  max-width: 48%;
  margin: 0.45em 0 24px 34px;
}
.globalcontent .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.globalcontent .wp-block-gallery,
.globalcontent .gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px !important;
  margin: 2.4em 0;
  padding: 0;
}
.globalcontent .wp-block-gallery.columns-2,
.globalcontent .gallery.columns-2,
.globalcontent .wp-block-gallery.gallery-columns-2,
.globalcontent .gallery.gallery-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.globalcontent .wp-block-gallery.columns-3,
.globalcontent .gallery.columns-3,
.globalcontent .wp-block-gallery.gallery-columns-3,
.globalcontent .gallery.gallery-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.globalcontent .wp-block-gallery.columns-4,
.globalcontent .gallery.columns-4,
.globalcontent .wp-block-gallery.gallery-columns-4,
.globalcontent .gallery.gallery-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.globalcontent .wp-block-gallery.columns-5,
.globalcontent .gallery.columns-5,
.globalcontent .wp-block-gallery.gallery-columns-5,
.globalcontent .gallery.gallery-columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.globalcontent .wp-block-gallery.columns-6,
.globalcontent .gallery.columns-6,
.globalcontent .wp-block-gallery.gallery-columns-6,
.globalcontent .gallery.gallery-columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.globalcontent .wp-block-gallery figure,
.globalcontent .gallery figure,
.globalcontent .wp-block-gallery .gallery-item,
.globalcontent .gallery .gallery-item {
  position: relative;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  overflow: hidden;
  background: #483A30;
  border-radius: 14px;
}
.globalcontent .wp-block-gallery a,
.globalcontent .gallery a,
.globalcontent .wp-block-gallery .js-content-gallery-trigger,
.globalcontent .gallery .js-content-gallery-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.globalcontent .wp-block-gallery a:focus-visible,
.globalcontent .gallery a:focus-visible,
.globalcontent .wp-block-gallery .js-content-gallery-trigger:focus-visible,
.globalcontent .gallery .js-content-gallery-trigger:focus-visible {
  outline: 4px solid #D66056;
  outline-offset: 3px;
}
.globalcontent .wp-block-gallery img,
.globalcontent .gallery img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.globalcontent .wp-block-gallery figure:hover img,
.globalcontent .gallery figure:hover img,
.globalcontent .wp-block-gallery .gallery-item:hover img,
.globalcontent .gallery .gallery-item:hover img {
  filter: saturate(1.04);
  transform: scale(1.055);
}
.globalcontent .wp-block-gallery figcaption,
.globalcontent .gallery figcaption,
.globalcontent .wp-block-gallery .gallery-caption,
.globalcontent .gallery .gallery-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 42px 16px 13px;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(28, 22, 18, 0.9), rgba(28, 22, 18, 0));
  font-size: 12px;
  line-height: 1.4;
  pointer-events: none;
  text-align: left;
}
.globalcontent .wp-block-gallery .gallery-icon,
.globalcontent .gallery .gallery-icon {
  height: 100%;
}
.globalcontent table,
.globalcontent .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(72, 58, 48, 0.2);
  border-radius: 12px;
}
.globalcontent .wp-block-table {
  overflow-x: auto;
}
.globalcontent th,
.globalcontent td {
  padding: 14px 16px;
  border-right: 1px solid rgba(72, 58, 48, 0.18);
  border-bottom: 1px solid rgba(72, 58, 48, 0.18);
  text-align: left;
  vertical-align: top;
}
.globalcontent th:last-child,
.globalcontent td:last-child {
  border-right: 0;
}
.globalcontent tr:last-child td {
  border-bottom: 0;
}
.globalcontent th {
  color: #FFFFFF;
  background: #483A30;
  font-weight: 600;
}
.globalcontent tbody tr:nth-child(even) {
  background: #F8F4F0;
}
.globalcontent blockquote,
.globalcontent .wp-block-quote {
  margin-right: 0;
  margin-left: 0;
  position: relative;
  padding: 30px 34px 30px 38px;
  overflow: hidden;
  background: #F8F4F0;
  border: 0;
  border-radius: 0 18px 18px 0;
}
.globalcontent blockquote:before,
.globalcontent .wp-block-quote:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: #D66056;
  content: '';
}
.globalcontent blockquote p,
.globalcontent .wp-block-quote p {
  margin-bottom: 0.8em;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}
.globalcontent blockquote cite,
.globalcontent .wp-block-quote cite {
  color: #D66056;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.globalcontent .wp-block-pullquote {
  padding: 45px 24px;
  border-top: 1px solid rgba(72, 58, 48, 0.24);
  border-bottom: 1px solid rgba(72, 58, 48, 0.24);
  text-align: center;
}
.globalcontent .wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.globalcontent .wp-block-pullquote blockquote:before {
  display: none;
}
.globalcontent code,
.globalcontent kbd {
  padding: 0.12em 0.38em;
  color: #FFFFFF;
  background: #483A30;
  border-radius: 5px;
  font-size: 0.88em;
}
.globalcontent pre {
  max-width: 100%;
  padding: 24px;
  overflow-x: auto;
  color: #F7E9E3;
  background: #312E2C;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.65;
}
.globalcontent pre code {
  padding: 0;
  background: transparent;
}
.globalcontent dl {
  padding: 24px 28px;
  background: #F8F4F0;
  border-radius: 14px;
}
.globalcontent dt {
  color: #D66056;
  font-weight: 600;
}
.globalcontent dd {
  margin: 0 0 14px;
}
.globalcontent dd:last-child {
  margin-bottom: 0;
}
.globalcontent details {
  padding: 18px 22px;
  background: #F8F4F0;
  border: 1px solid rgba(72, 58, 48, 0.14);
  border-radius: 12px;
}
.globalcontent details[open] summary {
  margin-bottom: 14px;
  color: #D66056;
}
.globalcontent summary {
  cursor: pointer;
  font-weight: 600;
}
.globalcontent .wp-block-columns {
  display: flex;
  gap: 24px;
}
.globalcontent .wp-block-column {
  min-width: 0;
  flex: 1 1 0;
}
.globalcontent .wp-block-media-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background: #F8F4F0;
  border-radius: 20px;
}
.globalcontent .wp-block-media-text .wp-block-media-text__media {
  height: 100%;
  margin: 0;
}
.globalcontent .wp-block-media-text .wp-block-media-text__media img,
.globalcontent .wp-block-media-text .wp-block-media-text__media video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.globalcontent .wp-block-media-text .wp-block-media-text__content {
  align-self: center;
  padding: 42px;
}
.globalcontent .wp-block-cover {
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
}
.globalcontent .wp-block-cover .wp-block-cover__inner-container {
  width: min(760px, 90%);
}
.globalcontent .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.globalcontent .button,
.globalcontent .wp-block-button__link,
.globalcontent .wp-element-button {
  display: inline-flex;
  min-width: 246px;
  min-height: 0;
  padding: 14px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  background: #D66056 !important;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.globalcontent .button:hover,
.globalcontent .wp-block-button__link:hover,
.globalcontent .wp-element-button:hover {
  color: #FFFFFF !important;
  background: #BE4B42 !important;
}
.globalcontent .button--inverse {
  color: #FFFFFF !important;
  background: #483A30 !important;
  border-color: #483A30;
}
.globalcontent .button--inverse:hover {
  color: #FFFFFF !important;
  background: #D66056 !important;
  border-color: #D66056;
}
.globalcontent .wp-block-button.is-style-outline .wp-block-button__link {
  color: #483A30 !important;
  background: transparent !important;
  border-color: #483A30;
}
.globalcontent .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #FFFFFF !important;
  background: #483A30 !important;
}
.globalcontent .wp-block-file {
  display: flex;
  padding: 18px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #F8F4F0;
  border-radius: 12px;
}
.globalcontent .wp-block-file .wp-block-file__button {
  flex: 0 0 auto;
  padding: 9px 15px;
  color: #FFFFFF;
  background: #483A30;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.globalcontent iframe {
  max-width: 100%;
  border-radius: 16px;
}
.globalcontent .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.globalcontent .wp-has-aspect-ratio .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}
.globalcontent .wp-has-aspect-ratio .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.globalcontent audio {
  width: 100%;
}
.globalcontent > :first-child {
  margin-top: 0;
}
.globalcontent > :last-child {
  margin-bottom: 0;
}
.is-content-lightbox-open {
  overflow: hidden;
}
.content-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.28s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.content-lightbox::backdrop {
  background: rgba(20, 16, 14, 0);
  backdrop-filter: blur(0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.content-lightbox.is-open {
  opacity: 1;
  transform: scale(1);
}
.content-lightbox.is-open::backdrop {
  background: rgba(20, 16, 14, 0.94);
  backdrop-filter: blur(9px);
}
.content-lightbox.is-closing {
  opacity: 0;
  transform: scale(0.985);
}
.content-lightbox.is-closing::backdrop {
  background: rgba(20, 16, 14, 0);
  backdrop-filter: blur(0);
}
.content-lightbox__panel {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px 28px 28px;
  flex-direction: column;
}
.content-lightbox__toolbar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.content-lightbox__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.content-lightbox__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.content-lightbox__external {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.content-lightbox__external:hover {
  color: #D66056;
}
.content-lightbox__close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #D66056;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.content-lightbox__close span:before,
.content-lightbox__close span:after {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  content: '';
}
.content-lightbox__close span:before {
  transform: rotate(45deg);
}
.content-lightbox__close span:after {
  transform: rotate(-45deg);
}
.content-lightbox__stage {
  display: grid;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 16px;
}
.content-lightbox__figure {
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 142px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.content-lightbox.is-switching .content-lightbox__image {
  opacity: 0;
  transform: scale(0.975);
}
.content-lightbox__caption {
  min-height: 28px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
.content-lightbox__nav {
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.content-lightbox__nav:hover {
  background: #D66056;
  border-color: #D66056;
  transform: scale(1.06);
}
.content-lightbox__nav span:before {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 15px;
  height: 15px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  content: '';
}
.content-lightbox__nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.content-lightbox__nav--previous span:before {
  left: 21px;
  transform: rotate(-135deg);
}
.content-lightbox__nav--next span:before {
  left: 17px;
  transform: rotate(45deg);
}
.content-lightbox__close:focus-visible,
.content-lightbox__nav:focus-visible,
.content-lightbox__external:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}
/* Match the optional WordPress core "Enlarge on click" lightbox too. */
.wp-lightbox-overlay .scrim {
  background: #312E2C !important;
  opacity: 0.94 !important;
  backdrop-filter: blur(9px);
}
.wp-lightbox-overlay .lightbox-image-container img {
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}
.wp-lightbox-overlay .wp-lightbox-close-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px !important;
  background: #D66056 !important;
  border-radius: 50%;
  fill: #FFFFFF !important;
}
.wp-lightbox-overlay .wp-lightbox-navigation-button {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 50%;
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .globalcontent .wp-block-gallery.columns-4,
  .globalcontent .wp-block-gallery.columns-5,
  .globalcontent .wp-block-gallery.columns-6,
  .globalcontent .gallery.gallery-columns-4,
  .globalcontent .gallery.gallery-columns-5,
  .globalcontent .gallery.gallery-columns-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  .page-hero {
    padding-bottom: 16px;
  }
  .page-hero__image {
    height: 180px;
    border-radius: 16px;
  }
  .page-content {
    padding: 48px 0 72px;
  }
  .page-content__title {
    margin-bottom: 28px;
    font-size: clamp(30px, 8.5vw, 34px);
  }
  .globalcontent {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .globalcontent h2 {
    font-size: 29px;
  }
  .globalcontent h3 {
    font-size: 24px;
  }
  .globalcontent h4 {
    font-size: 20px;
  }
  .globalcontent h5 {
    font-size: 17px;
  }
  .globalcontent h6 {
    font-size: 14px;
  }
  .globalcontent .alignleft,
  .globalcontent .alignright {
    float: none;
    max-width: 100%;
    margin: 1.8em 0;
  }
  .globalcontent .wp-block-gallery,
  .globalcontent .gallery,
  .globalcontent .wp-block-gallery.columns-3,
  .globalcontent .wp-block-gallery.columns-4,
  .globalcontent .wp-block-gallery.columns-5,
  .globalcontent .wp-block-gallery.columns-6,
  .globalcontent .gallery.gallery-columns-3,
  .globalcontent .gallery.gallery-columns-4,
  .globalcontent .gallery.gallery-columns-5,
  .globalcontent .gallery.gallery-columns-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px !important;
  }
  .globalcontent .wp-block-gallery img,
  .globalcontent .gallery img,
  .globalcontent .wp-block-gallery.columns-3 img,
  .globalcontent .wp-block-gallery.columns-4 img,
  .globalcontent .wp-block-gallery.columns-5 img,
  .globalcontent .wp-block-gallery.columns-6 img,
  .globalcontent .gallery.gallery-columns-3 img,
  .globalcontent .gallery.gallery-columns-4 img,
  .globalcontent .gallery.gallery-columns-5 img,
  .globalcontent .gallery.gallery-columns-6 img {
    min-height: 130px;
  }
  .globalcontent table {
    min-width: 620px;
  }
  .globalcontent blockquote,
  .globalcontent .wp-block-quote {
    padding: 24px 23px 24px 27px;
  }
  .globalcontent blockquote p,
  .globalcontent .wp-block-quote p {
    font-size: 18px;
  }
  .globalcontent .wp-block-columns {
    flex-direction: column;
    gap: 8px;
  }
  .globalcontent .wp-block-media-text {
    grid-template-columns: 1fr;
  }
  .globalcontent .wp-block-media-text .wp-block-media-text__media img,
  .globalcontent .wp-block-media-text .wp-block-media-text__media video {
    min-height: 230px;
  }
  .globalcontent .wp-block-media-text .wp-block-media-text__content {
    padding: 27px 22px;
  }
  .globalcontent .wp-block-cover {
    min-height: 340px;
    border-radius: 14px;
  }
  .globalcontent .wp-block-file {
    align-items: flex-start;
    flex-direction: column;
  }
  .content-lightbox__panel {
    padding: 10px 10px 18px;
  }
  .content-lightbox__toolbar {
    min-height: 48px;
    padding-left: 4px;
  }
  .content-lightbox__external {
    display: none;
  }
  .content-lightbox__close {
    width: 40px;
    height: 40px;
  }
  .content-lightbox__close span:before,
  .content-lightbox__close span:after {
    top: 19px;
    left: 10px;
  }
  .content-lightbox__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-lightbox__figure {
    width: 100%;
  }
  .content-lightbox__image {
    max-height: calc(100vh - 126px);
    border-radius: 7px;
  }
  .content-lightbox__caption {
    padding: 0 52px;
    font-size: 12px;
  }
  .content-lightbox__nav {
    position: absolute;
    z-index: 2;
    bottom: 8px;
    width: 42px;
    height: 42px;
    background: rgba(28, 22, 18, 0.76);
  }
  .content-lightbox__nav span:before {
    top: 14px;
    left: 14px;
    width: 12px;
    height: 12px;
  }
  .content-lightbox__nav--previous {
    left: 4px;
  }
  .content-lightbox__nav--previous span:before {
    left: 16px;
  }
  .content-lightbox__nav--next {
    right: 4px;
  }
  .content-lightbox__nav--next span:before {
    left: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .globalcontent .wp-block-gallery img,
  .globalcontent .gallery img,
  .content-lightbox,
  .content-lightbox__image,
  .content-lightbox__nav {
    transition-duration: 0.01ms !important;
  }
}
