@charset "UTF-8";
/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
@font-face {
  font-family: "Stag Sans";
  src: url("../fonts/Regular.eot");
  src: url("../fonts/Regular.woff2") format("woff2"), url("../fonts/Regular.woff") format("woff"), url("../fonts/Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stag Sans";
  src: url("../fonts/Medium.eot");
  src: url("../fonts/Medium.woff2") format("woff2"), url("../fonts/Medium.woff") format("woff"), url("../fonts/Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stag Sans";
  src: url("../fonts/SemiBold.eot");
  src: url("../fonts/SemiBold.woff2") format("woff2"), url("../fonts/SemiBold.woff") format("woff"), url("../fonts/SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #fff !important;
}

.c-white {
  color: #fff;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

.lc > :last-child {
  margin-bottom: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 15;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1115px;
  }
}
.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
  font-family: "Stag Sans", sans-serif, Arial;
  text-transform: uppercase;
  text-align: center;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}

.btn {
  border-radius: 5px;
  text-transform: capitalize;
}
.btn--login {
  background-color: #bfae7f;
  font-size: 14px;
  color: #000;
  padding: 4.5px 21px;
  font-weight: 400;
}
.btn--contact {
  background-color: #000;
  font-size: 14px;
  color: #fff;
  padding: 4.5px 21px;
  font-weight: 400;
}

.hito-btn {
  padding: 7px 17px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.hito-btn--primary {
  background: #a39469;
  color: #fff;
  border-color: #a39469;
}
.hito-btn--primary:hover, .hito-btn--primary:focus {
  background: rgb(143.9876033058, 129.5888429752, 88.3123966942);
  border-color: rgb(143.9876033058, 129.5888429752, 88.3123966942);
  text-decoration: none;
}
.hito-btn--secondary {
  background: #fff;
  color: #333;
  border-color: #ddd;
}
.hito-btn--secondary:hover, .hito-btn--secondary:focus {
  background: #f5f5f5;
  text-decoration: none;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-footer {
  flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}

/* ================================================
   MOBILE HEADER BAR (Shown below 1200px)
================================================ */
.mobile-header {
  width: 100%;
  background: #000;
  padding: 18px 0;
  display: none;
  position: relative;
  z-index: 99999;
  /* Show only below 1200px */
}
@media (max-width: calc(1200px - 1px)) {
  .mobile-header {
    display: block;
  }
}
.mobile-header {
  /* Inner wrapper that behaves like container */
}
.mobile-header .mobile-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-header .mobile-logo img {
  max-height: 42px;
  filter: brightness(0) invert(1);
}
.mobile-header .mobile-burger {
  background: none;
  border: none;
  width: 32px;
  height: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.mobile-header .mobile-burger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ================================================
   MOBILE OFF-CANVAS MENU PANEL
================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu {
  /* Black header inside the menu */
}
.mobile-menu .mobile-menu__top {
  padding: 18px 20px;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-menu__top .mobile-logo img {
  max-height: 42px;
  filter: brightness(0) invert(1);
}
.mobile-menu .mobile-menu__top .mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.mobile-menu {
  /* Mobile navigation list */
}
.mobile-menu .mobile-nav {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.mobile-menu .mobile-nav > li {
  border-bottom: 1px solid #e7e7e7;
  padding: 0;
  position: relative;
  /* Base link item */
}
.mobile-menu .mobile-nav > li a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 16px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-menu .mobile-nav > li {
  /* Chevron for dropdowns */
}
.mobile-menu .mobile-nav > li.menu-item-has-children > a::after {
  content: url("../images/chevron-down.svg");
  transition: transform 0.2s ease;
  transform: scale(0.8);
}
.mobile-menu .mobile-nav > li {
  /* Open state */
}
.mobile-menu .mobile-nav > li.open > a {
  background: #a39469;
  color: #fff;
}
.mobile-menu .mobile-nav > li.open > a::after {
  transform: rotate(180deg) scale(0.8);
  filter: brightness(0) invert(1);
}
.mobile-menu .mobile-nav > li {
  /* Submenu (beige background) */
}
.mobile-menu .mobile-nav > li .sub-menu {
  display: none;
  background: #f2efe5;
  padding: 10px 0;
}
.mobile-menu .mobile-nav > li .sub-menu li a {
  font-size: 15px;
  padding: 10px 25px;
  font-weight: 400;
  color: #636365;
}
.mobile-menu .mobile-nav > li .sub-menu li a:hover {
  color: #000;
}
.mobile-menu .mobile-nav > li.open .sub-menu {
  display: block;
}
.mobile-menu {
  /* Login button at bottom */
}
.mobile-menu .mobile-login-btn {
  padding: 20px 25px 40px;
  margin-top: auto;
}
.mobile-menu .mobile-login-btn .btn {
  background: #a39469;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  border-radius: 4px;
}

/* Hide ANY element of desktop header below 1200px */
@media (max-width: calc(1200px - 1px)) {
  .header-top,
  .header-main,
  .header-logo-col,
  .container__mobile,
  .header-search {
    display: none !important;
  }
}
/* =============================================
   BURGER → CLOSE (Animated transformation)
================================================ */
.mobile-burger {
  position: relative;
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: 0.3s ease;
}
.mobile-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}
.mobile-burger {
  /* When menu is open, transform into X */
}
.mobile-burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-burger.open span:nth-child(2) {
  opacity: 0;
}
.mobile-burger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height); /**
* @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
*/
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Stag Sans", sans-serif, Arial;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #636365;
  display: flex;
  flex-direction: column;
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h4 {
  font-size: 20px;
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter {
  margin: 1em auto;
}

.site-header .header-logo-col {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header .header-logo-col .header-logo img {
  max-height: 80px;
  height: auto;
}
.site-header {
  /* -------------------------
     TOP BAR (RIGHT SIDE)
  --------------------------*/
}
.site-header .header-top {
  padding: 7px 0 1px 0;
}
.site-header .header-top .header-search {
  border: 1px solid #ccc;
  height: 28px;
  margin-right: 10px;
}
.site-header .header-top .header-search__input {
  border: none;
  padding: 3px 8px;
  font-size: 13px;
  box-shadow: none;
}
.site-header .header-top .header-search__input:focus {
  box-shadow: none;
}
.site-header .header-top .header-search__btn {
  padding: 5px 16px;
  background-color: transparent;
}
.site-header .header-top .btn--contact {
  margin-right: 9px;
}
.site-header .header-divider {
  border-bottom: 1px solid #dcdcdc;
  margin: 10px 0;
}
.site-header {
  /* -------------------------
     NAVIGATION (LEVEL 2)
  --------------------------*/
}
.site-header .header-main {
  padding: 5px 0 30px 0;
  margin-top: 28px;
}
.site-header .header-main .main-nav {
  display: none;
}
@media (min-width: 992px) {
  .site-header .header-main .main-nav {
    display: block;
  }
}
.site-header .header-main .main-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.site-header .header-main .main-nav .menu-item-has-children > a {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .header-main .main-nav .menu-item-has-children > a::after {
  content: url("../images/chevron-down.svg");
  margin-left: 5px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.site-header .header-main .main-nav .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.site-header .header-main .main-nav li {
  position: relative;
  margin: 0 0 0 28px;
}
.site-header .header-main .main-nav li .sub-menu {
  position: absolute;
  top: 150%;
  left: 0;
  min-width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: 0.5s ease;
  z-index: 10;
}
.site-header .header-main .main-nav li .sub-menu li {
  margin: 0;
}
.site-header .header-main .main-nav li .sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  margin: 0 5px;
}
.site-header .header-main .main-nav li .sub-menu li a:hover {
  background: #f3f3f3;
  color: #000;
  border-radius: 8px;
}
.site-header .header-main .main-nav li .sub-menu .menu-item-has-children > a {
  position: relative;
  display: block;
  align-items: center;
}
.site-header .header-main .main-nav li .sub-menu .menu-item-has-children > a::after {
  content: url("../images/small-chevron.svg");
  margin-left: 5px;
  transition: transform 0.2s ease;
  display: inline-block;
  position: absolute;
  right: 10px;
}
.site-header .header-main .main-nav li .sub-menu .menu-item-has-children:hover > a::after {
  transform: rotate(90deg);
}
.site-header .header-main .main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  border: 1px solid #bfae7f;
}
.site-header .header-main .main-nav > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #4f4f4f;
  display: inline-flex;
  align-items: center;
}
.site-header .header-main .main-nav > ul > li > a:hover {
  color: #000;
}
.site-header .header-main .main-nav {
  /* Second-level dropdown (submenu inside submenu) */
}
.site-header .header-main .main-nav .sub-menu .sub-menu {
  top: 0;
  left: 90%;
  margin-left: 10px;
  transform: translateX(5px);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease;
  border: 1px solid #bfae7f;
}
.site-header .header-main .main-nav {
  /* Show second-level menu on hover */
}
.site-header .header-main .main-nav .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 70px 0 30px;
  font-size: 14px;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #bfae7f;
}
.site-footer {
  /* TOP AREA */
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}
.site-footer__col--brand {
  flex: 0 0 28%;
}
.site-footer__col--brand .site-footer__logo img {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.site-footer__col--brand .site-footer__desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer__newsletter-title {
  font-weight: 600;
  margin-bottom: 30px;
}
.site-footer__newsletter-form {
  display: flex;
  margin-top: 10px;
}
.site-footer__newsletter-form input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.site-footer__newsletter-form button {
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  padding-inline: 20px;
}
.site-footer {
  /* MENUS */
}
.site-footer__col--menus {
  display: flex;
  gap: 60px;
  flex: 0 0 65%;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .site-footer__col--menus {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .site-footer__col--menus {
    flex-wrap: wrap;
  }
}
.site-footer__menu-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__menu li {
  margin-bottom: 18px;
}
.site-footer__menu li + li {
  margin-top: 6px;
}
.site-footer__menu a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer__menu a:hover {
  color: #bfae7f;
}
.site-footer {
  /* CONTACT */
}
.site-footer__col--contact .site-footer__contact-line {
  margin-bottom: 6px;
}
.site-footer__col--contact .site-footer__contact-line a {
  color: rgba(255, 255, 255, 0.9);
}
.site-footer {
  /* CTA CARDS */
}
.site-footer__ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0 63px 0;
}
@media (max-width: 768px) {
  .site-footer__ctas {
    grid-template-columns: 1fr;
  }
}
.site-footer__cta {
  display: flex;
  align-items: center;
  padding: 30px 24px;
  border-radius: 10px;
  border: 1px solid rgba(191, 174, 127, 0.6);
  background: #fff;
  color: #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.site-footer__cta--gold {
  background: #bfae7f;
  border-color: #bfae7f;
}
.site-footer__cta--light {
  background: #fff;
}
.site-footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.site-footer__cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.site-footer__cta-icon .site-footer__cta-icon-inner {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}
.site-footer__cta-text {
  flex: 1;
}
.site-footer__cta-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 4px;
}
.site-footer__cta-sub {
  font-size: 16px;
  font-weight: 400;
}
.site-footer__cta-arrow {
  margin-left: 18px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer {
  /* BOTTOM */
}
.site-footer__bottom {
  border-top: 1px solid rgba(191, 174, 127, 0.5);
  padding-top: 25px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__bottom-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 3px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
}
.site-footer__copy {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__links {
  display: flex;
  gap: 5px;
  position: relative;
  top: -1px;
}
.site-footer__links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  /* SOCIALS */
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social-link {
  width: 24px;
  background-color: #a39469;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.site-footer__social-link:hover {
  background: #bfae7f;
  color: #000;
  border-color: #bfae7f;
}

.site-footer__cta--gold .site-footer__cta-title {
  color: #fff;
}
.site-footer__cta--gold .site-footer__cta-sub {
  color: #fff;
}
.site-footer__cta--gold .site-footer__cta-arrow {
  background-color: #fff;
}
.site-footer__cta--gold .site-footer__cta-icon {
  background-image: url("../images/cta-gold.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer__cta--light .site-footer__cta-title {
  color: #000;
}
.site-footer__cta--light .site-footer__cta-sub {
  color: #000;
}
.site-footer__cta--light .site-footer__cta-arrow {
  background-color: #a39469;
}
.site-footer__cta--light .site-footer__cta-icon {
  background-image: url("../images/cta-light.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ========================= */
/*        MOBILE FOOTER       */
/* ========================= */
@media (max-width: 767px) {
  .site-footer {
    padding: 50px 0 40px;
    font-size: 15px;
  }
  /* --- TOP AREA --- */
  .site-footer__top {
    display: block;
    margin-bottom: 40px;
  }
  /* BRAND COLUMN */
  .site-footer__col--brand {
    flex: none;
    text-align: center;
    margin-bottom: 40px;
  }
  .site-footer__col--brand .site-footer__logo img {
    margin: 0 auto 20px;
  }
  .site-footer__col--brand .site-footer__desc {
    max-width: 270px;
    margin: 0 auto 16px;
    font-size: 15px;
    line-height: 1.6;
  }
  .site-footer__col--brand .site-footer__newsletter-title {
    margin-bottom: 14px;
    font-size: 15px;
    text-align: center;
  }
  .site-footer__col--brand .site-footer__newsletter-form {
    flex-direction: row;
    justify-content: center;
  }
  .site-footer__col--brand .site-footer__newsletter-form input {
    font-size: 15px;
    padding: 10px 12px;
  }
  .site-footer__col--brand .site-footer__newsletter-form button {
    padding: 0 18px;
    font-size: 15px;
  }
  /* MENU COLUMNS — STACKED */
  .site-footer__col--menus {
    flex: none;
    display: block;
    margin-bottom: 40px;
  }
  .site-footer__menu-col {
    margin-bottom: 35px;
  }
  .site-footer__menu-col .site-footer__menu-title {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
  }
  .site-footer__menu-col .site-footer__menu li {
    margin-bottom: 14px;
  }
  .site-footer__menu-col .site-footer__menu a {
    font-size: 15px;
  }
  /* CONTACT COLUMN — looks like a menu */
  .site-footer__col--contact {
    margin-bottom: 40px;
  }
  .site-footer__col--contact .site-footer__menu-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .site-footer__col--contact .site-footer__contact-line {
    margin-bottom: 14px;
  }
  .site-footer__col--contact .site-footer__contact-line a {
    font-size: 15px;
  }
  /* --- CTA CARDS --- */
  .site-footer__ctas {
    margin: 20px 0 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer__cta {
    padding: 22px 20px;
    border-radius: 12px;
  }
  .site-footer__cta-icon {
    width: 44px;
    height: 44px;
    margin-right: 14px;
  }
  .site-footer__cta-title {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .site-footer__cta-sub {
    font-size: 15px;
  }
  .site-footer__cta-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .site-footer__cta-arrow svg {
    width: 16px;
    height: 16px;
  }
  /* --- SOCIAL ICONS --- */
  .site-footer__social {
    justify-content: center;
    margin: 15px 0 25px;
  }
  .site-footer__social .site-footer__social-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .site-footer__social .site-footer__social-link svg {
    width: 14px;
    height: 14px;
  }
  /* --- BOTTOM BAR --- */
  .site-footer__bottom {
    border-top: 1px solid rgba(191, 174, 127, 0.4);
    padding-top: 22px;
    margin-top: 10px;
    align-items: center;
    text-align: center;
  }
  .site-footer__bottom-left {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 18px;
  }
  .site-footer__copy {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .site-footer__links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .site-footer__links a {
    font-size: 14px;
  }
}
.hidden_label label {
  display: none;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.gfield_validation_message {
  position: relative;
  top: 2px;
  font-size: 12px;
}

.gform_footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: 300;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email] {
  border: 0;
  display: block;
  width: 100%;
  font-size: 14px;
  border-radius: 0;
  height: 40px;
  padding: 0 0 0 26px;
  font-family: "Stag Sans", sans-serif, Arial;
  font-weight: 400;
  color: #636365;
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Stag Sans", sans-serif, Arial;
  padding-right: 15px;
  border: 0;
}

.hito-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .hito-section {
    padding: 40px 0;
  }
}
.hito-section__image-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.hito-section__image {
  display: block;
  width: 100%;
  height: auto;
}
.hito-section__content-col {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .hito-section__content-col {
    margin-top: 0;
    padding-left: 40px;
  }
  .hito-section--image-right .hito-section__content-col {
    padding-left: 0;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .hito-section__content-col {
    text-align: center;
  }
}
.hito-section__inner {
  max-width: 100%;
}
@media (min-width: 992px) {
  .hito-section__inner {
    margin: 0 auto;
    max-width: 500px;
  }
}
.hito-section__title {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000;
  display: none;
}
@media (min-width: 992px) {
  .hito-section__title {
    display: block;
  }
}
.hito-section__title--mobile {
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .hito-section__title--mobile {
    display: none;
  }
}
.hito-section__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #636365;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .hito-section__text {
    text-align: left;
  }
}
.hito-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 992px) {
  .hito-section__buttons {
    justify-content: flex-start;
  }
}

.hito-icons {
  padding: 80px 0;
}
.hito-icons--white {
  background: #fff;
}
.hito-icons--light {
  background: #f2efe5;
}
.hito-icons .col-6.col-md-4.col-lg-3 {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .hito-icons .col-6.col-md-4.col-lg-3 {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .hito-icons {
    padding: 40px 0;
  }
}

.hito-icon-card {
  background: #fff;
  border: 1px solid #bfae7f;
  border-radius: 14px;
  padding: 35px 20px 10px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  height: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hito-icon-card:hover {
  border-color: #a39469;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.hito-icon-card__icon {
  margin-bottom: 8px;
  min-height: 63px;
}
.hito-icon-card__icon img {
  max-width: 70px;
  height: auto;
  object-fit: contain;
}
.hito-icon-card__title {
  font-size: 26px;
  font-weight: 500;
  color: #a39469;
  margin-bottom: 8px;
  text-align: left;
}
.hito-icon-card__subtitle {
  font-size: 16px;
  color: #636365;
  margin: 0;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 768px) {
  .hito-icon-card {
    padding: 25px 15px;
  }
  .hito-icon-card__title {
    font-size: 20px;
  }
  .hito-icon-card__subtitle {
    font-size: 14px;
  }
}

.hito-offer-cards {
  padding: 70px 0;
}
.hito-offer-cards__title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000;
}
@media (max-width: 768px) {
  .hito-offer-cards {
    padding: 50px 0;
  }
  .hito-offer-cards__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.hito-offer-cards .col-12.col-md-6.col-lg-4 {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .hito-offer-cards .col-12.col-md-6.col-lg-4 {
    margin-bottom: 0;
  }
}

.hito-offer-card {
  background: #fff;
  border: 1px solid rgba(191, 174, 127, 0.4);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hito-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #a39469;
}
.hito-offer-card__image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.hito-offer-card__body {
  padding: 24px 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hito-offer-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
  line-height: 1;
}
.hito-offer-card__text {
  font-size: 15px;
  color: #636365;
  flex: 1;
  margin-bottom: 0;
  line-height: 1.6;
}
.hito-offer-card__footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px solid rgba(191, 174, 127, 0.4);
}
.hito-offer-card__footer a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 11px;
}
@media (max-width: 992px) {
  .hito-offer-card__image img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .hito-offer-card__image img {
    height: 180px;
  }
}

/* ============================================================
   CTA SECTION (default + centered)
   ============================================================ */
.hito-cta {
  padding: 80px 0;
  color: #fff;
  /* -----------------------------------------
     BACKGROUND VARIANTS (APPLY TO OUTER WRAPPER)
     ----------------------------------------- */
}
.hito-cta.hito-cta-bg--none {
  background: transparent;
}
.hito-cta.hito-cta-bg--light {
  background: #F4F1E9;
}
.hito-cta.hito-cta-bg--dark {
  background: #000;
}
.hito-cta.hito-cta-bg--gold {
  background: #bfae7f;
}
.hito-cta {
  /* Light → white */
}
.hito-cta.hito-cta-bg--gradient {
  background: linear-gradient(180deg, #F4F1E9 0%, #ffffff 100%);
}
.hito-cta {
  /* White → light */
}
.hito-cta.hito-cta-bg--gradient-reverse {
  background: linear-gradient(180deg, #ffffff 0%, #F4F1E9 100%);
}
.hito-cta {
  /* White top / Light bottom (hard split 50/50) */
}
.hito-cta.hito-cta-bg--split {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #f2efe5 50%, #f2efe5 100%);
}
.hito-cta.hito-cta-bg--split-reverse {
  background: linear-gradient(to bottom, #f2efe5 0%, #f2efe5 50%, #ffffff 50%, #ffffff 100%);
}
.hito-cta {
  /* -----------------------------------------
     DEFAULT LAYOUT (box in container)
     ----------------------------------------- */
}
.hito-cta.hito-cta--default .hito-cta__box {
  background: #000;
  color: #fff;
  padding: 60px 70px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .hito-cta.hito-cta--default .hito-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}
.hito-cta {
  /* -----------------------------------------
     CENTERED LAYOUT — FULL WIDTH
     ----------------------------------------- */
}
.hito-cta.hito-cta--centered {
  background: #000;
  padding: 120px 0;
}
.hito-cta.hito-cta--centered .hito-cta__box--centered {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hito-cta {
  /* -----------------------------------------
     TEXT + BUTTONS
     ----------------------------------------- */
}
.hito-cta__title {
  font-weight: 500;
  margin: 0;
  max-width: 600px;
}
@media (max-width: 992px) {
  .hito-cta__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .hito-cta__title {
    font-size: 28px;
  }
}
.hito-cta.hito-cta--centered .hito-cta__title {
  max-width: 720px;
  font-size: 42px;
}
@media (max-width: 992px) {
  .hito-cta.hito-cta--centered .hito-cta__title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .hito-cta.hito-cta--centered .hito-cta__title {
    font-size: 28px;
  }
}
.hito-cta__buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .hito-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .hito-cta__buttons .btn {
    width: 100%;
  }
}
.hito-cta .hito-btn--primary {
  background: #bfae7f;
  border: 1px solid #bfae7f;
  color: #000;
}
.hito-cta .hito-btn--primary:hover {
  background: #a39469;
  border-color: #a39469;
}
.hito-cta .hito-btn--secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.hito-cta .hito-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hito-side-section {
  position: relative;
  padding: 215px 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hito-side-section {
    padding: 60px 0;
  }
}
.hito-side-section__title {
  color: #000;
  margin-bottom: 0;
  display: none;
}
@media (min-width: 992px) {
  .hito-side-section__title {
    display: block;
  }
}
.hito-side-section__title--mobile {
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .hito-side-section__title--mobile {
    display: none;
  }
}
.hito-side-section__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #636365;
  margin-bottom: 24px;
}
.hito-side-section .hito-btn--secondary {
  border-color: #000;
}
.hito-side-section .hito-btn--primary {
  margin-right: 12px;
}

/* CONTENT LEFT */
.hito-side-section__content {
  max-width: 430px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hito-side-section__content {
    text-align: center;
    margin: 0 auto;
  }
}

/* IMAGE RIGHT FIXED */
.hito-side-section__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  .hito-side-section__image {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
}

.hito-side-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hito-side-section__img {
    height: auto;
  }
}

/* IMAGE LEFT */
.hito-side-section--left .hito-side-section__image {
  left: 0;
  right: auto;
}

/* CONTENT RIGHT SHIFT */
.hito-side-section--left .container {
  display: flex;
  justify-content: flex-end;
}

.hito-side-section--left .hito-side-section__content {
  text-align: left;
}

.hito-partners {
  padding: 80px 0;
}
.hito-partners__title {
  text-align: center;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.hito-partners__desc {
  text-align: center;
  max-width: 415px;
  font-weight: 500;
  color: #000;
  margin: 0 auto 40px;
  color: #000;
  font-size: 16px;
}
.hito-partners .col-12.col-md-6.col-lg-3 {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .hito-partners .col-12.col-md-6.col-lg-3 {
    margin-bottom: 0;
  }
}

.hito-partner-card {
  background: #fff;
  border: 1px solid rgba(191, 174, 127, 0.4);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hito-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hito-partner-card__top {
  background: linear-gradient(145deg, #d6c29b, #b89b68);
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hito-partner-card__top img {
  width: auto;
}
.hito-partner-card__placeholder {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  opacity: 0.85;
}
.hito-partner-card__body {
  padding: 29px 14px 25px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hito-partner-card__title {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-bottom: 0;
}
.hito-partner-card__text {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
  margin-bottom: 0;
}
.hito-partner-card__link {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
}
.hito-partner-card__link .arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.hito-partner-card__link:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hito-partner-card__top {
    height: 150px;
  }
}
.hito-news-grid {
  padding: 80px 0;
  background: #f2efe5;
}
.hito-news-grid__title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 32px;
  color: #000;
}

.hito-news-card {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hito-news-card:hover {
  transform: translateY(-5px);
}
.hito-news-card__image img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  border: 1px solid #bfae7f;
  border-radius: 8px;
}
.hito-news-card__body {
  padding: 20px 0 20px 0;
  flex: 1;
}
.hito-news-card__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
  line-height: 1;
}
.hito-news-card__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}
.hito-news-card__link {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}
.hito-news-card__link .arrow {
  transition: transform 0.2s;
}
.hito-news-card__link:hover .arrow {
  transform: translateX(4px);
}

.hito-news-grid__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.hito-news-grid__pagination__page,
.hito-news-grid__pagination .hito-news-grid__page {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.2s;
}
.hito-news-grid__pagination__page.is-active,
.hito-news-grid__pagination .hito-news-grid__page.is-active {
  background: #bfae7f;
  color: #000;
  border-color: #bfae7f;
}
.hito-news-grid__pagination__page:hover,
.hito-news-grid__pagination .hito-news-grid__page:hover {
  background: #a39469;
  color: #fff;
}

.hito-testimonials {
  padding: 100px 0;
  background: #f2efe5;
}
.hito-testimonials__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .hito-testimonials__wrap {
    justify-content: center;
  }
}
.hito-testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.hito-testimonials__title {
  font-weight: 500;
  color: #000;
  margin-bottom: 13px;
}
.hito-testimonials__desc {
  max-width: 650px;
  color: #636365;
  margin-top: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hito-testimonials__title-box {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hito-testimonials__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .hito-testimonials__buttons .btn {
    margin-left: 10px !important;
    margin-right: 10px;
  }
}
.hito-testimonials {
  /* Top arrow buttons */
}
.hito-testimonials__top-arrows {
  display: flex;
  gap: 12px;
}
.hito-testimonials__top-arrows .hito-testimonials__arrow.top {
  width: 44px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #a39469;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hito-testimonials__top-arrows .hito-testimonials__arrow.top svg path {
  stroke: #a39469;
}
.hito-testimonials__top-arrows .hito-testimonials__arrow.top:hover {
  background: #a39469;
}
.hito-testimonials__top-arrows .hito-testimonials__arrow.top:hover svg path {
  stroke: #fff;
}
.hito-testimonials {
  /* Slider wrapper – allows overflow on the right */
}
.hito-testimonials__slider-wrapper {
  position: relative;
  padding-left: calc((100vw - 1110px) / 2);
  padding-right: 350px;
  overflow: hidden;
}
.hito-testimonials__buttons .btn {
  margin-left: 18px;
}
.hito-testimonials__buttons .hito-btn--secondary {
  background-color: transparent;
  border: 1px solid #000;
}

/* ---------------------------
   SLIDER TRACK
---------------------------- */
.hito-slider {
  display: flex;
  transition: transform 0.4s ease;
}

/* ---------------------------
   SLIDE CARD
---------------------------- */
.hito-slide {
  flex: 0 0 692px;
  margin-right: 40px;
}
.hito-slide .hito-testimonial__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.hito-slide .hito-testimonial__text p {
  margin-top: 20px;
  line-height: 1.5;
}
.hito-slide .hito-testimonial__name {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}
.hito-slide .hito-testimonial__position {
  color: #bfae7f;
  font-size: 16px;
  font-weight: 600;
  margin-top: 11px;
}
.hito-slide .hito-testimonial__inner {
  width: 692px;
  background: #fff;
  border: 1px solid #a39469;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.hito-slide .hito-testimonial__image {
  width: 299px;
  height: 260px;
  margin: 25px 18px 25px 25px;
  border-radius: 10px;
}
.hito-slide .hito-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #bfae7f;
}
.hito-slide .hito-testimonial__content {
  padding: 27px 0 20px 0;
  width: 333px;
}
@media (max-width: 768px) {
  .hito-slide .hito-testimonial__content {
    width: 100%;
  }
}

/* ---------------------------
   BOTTOM ARROWS
---------------------------- */
.hito-testimonials__arrows {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.hito-testimonials__arrows .hito-testimonials__arrow {
  width: 44px;
  height: 44px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hito-testimonials__arrows .hito-testimonials__arrow svg path {
  stroke: #fff;
}
.hito-testimonials__arrows .hito-testimonials__arrow:hover {
  background: #a39469;
}
.hito-testimonials__arrows .next svg {
  transform: rotate(180deg);
}

/* ---------------------------
   RESPONSIVE
---------------------------- */
/* 1199px */
@media (max-width: 1199px) {
  .hito-testimonials__slider-wrapper {
    padding-right: 200px;
  }
  .hito-slide {
    flex: 0 0 560px;
  }
  .hito-slide .hito-testimonial__inner {
    width: 560px;
  }
  .hito-slide .hito-testimonial__image {
    width: 240px;
    height: 220px;
  }
  .hito-slide .hito-testimonial__content {
    padding: 20px;
  }
}
/* 990px */
@media (max-width: 990px) {
  .hito-testimonials__slider-wrapper {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 120px;
  }
  .hito-slide {
    flex: 0 0 480px;
  }
  .hito-slide .hito-testimonial__inner {
    width: 480px;
  }
  .hito-slide .hito-testimonial__image {
    width: 200px;
    height: 200px;
  }
}
/* 767px — Mobile stacked layout */
@media (max-width: 767px) {
  .hito-testimonials__slider-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hito-slide {
    flex: 0 0 85vw;
    margin-right: 20px;
  }
  .hito-slide .hito-testimonial__inner {
    flex-direction: column;
    width: 100%;
  }
  .hito-slide .hito-testimonial__image {
    width: 100%;
    height: 220px;
    margin: 0;
  }
  .hito-slide .hito-testimonial__image img {
    border-radius: 8px 8px 0 0;
  }
  .hito-slide .hito-testimonial__content {
    padding: 16px;
  }
  .hito-testimonials__top-arrows {
    display: none;
  }
}
.hito-faq {
  padding: 80px 0;
}
.hito-faq__title {
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  color: #000;
}
.hito-faq__desc {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  max-width: 80%;
  margin: 0 auto 22px;
  color: #000;
  line-height: 1.6;
}
.hito-faq--bg-light {
  background: #ffffff;
}
.hito-faq--bg-gold {
  background: #f2efe5;
}

/* Accordion base */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(191, 174, 127, 0.6);
  padding: 15px 0;
}

.accordion-button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  color: #000;
  text-transform: none;
}
.accordion-button.collapsed .accordion-icon {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(45deg);
}
.accordion-button .accordion-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #000;
}

.accordion-collapse {
  overflow: hidden;
}

.accordion-body {
  padding: 15px 0 10px;
  color: #636365;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

.hito-regions {
  padding: 75px 0;
  background: #f2efe5;
}
.hito-regions__title {
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  line-height: 0.9;
}
.hito-regions__desc {
  max-width: 520px;
  margin-bottom: 64px;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}
.hito-regions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 991px) {
  .hito-regions__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hito-regions__col-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}
.hito-regions .accordion {
  max-width: 100%;
}
.hito-regions .accordion-item {
  padding: 20px 0;
}
.hito-regions .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding-left: 10px;
}
.hito-regions .accordion-body {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.hito-faq--layout-numbered .accordion {
  max-width: 900px;
}
.hito-faq--layout-numbered .accordion-item {
  padding: 18px 0;
}
.hito-faq--layout-numbered .accordion-item__head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
}
@media (max-width: 768px) {
  .hito-faq--layout-numbered .accordion-item__head {
    column-gap: 16px;
  }
}
.hito-faq--layout-numbered .accordion-item__number {
  font-size: 18px;
  font-weight: 600;
  color: #bfae7f;
}
.hito-faq--layout-numbered .accordion-button {
  justify-content: space-between;
  align-items: center;
  text-transform: none;
}
.hito-faq--layout-numbered .accordion-button__text {
  text-align: left;
}
.hito-faq--layout-numbered .accordion-body {
  padding: 0 0 0 40px;
}

.hito-hero {
  position: relative;
  width: 100%;
  height: 675px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 768px) {
  .hito-hero {
    height: 480px;
  }
}
.hito-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hito-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hito-hero__slide.active {
  opacity: 1;
}
.hito-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
}
.hito-hero .container {
  position: relative;
  z-index: 3;
}
.hito-hero__content {
  max-width: 800px;
}
.hito-hero__title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-top: 60px;
  line-height: 1;
}
@media (max-width: 768px) {
  .hito-hero__title {
    font-size: 32px;
    text-align: center;
  }
}
.hito-hero__desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #eee;
}
@media (max-width: 768px) {
  .hito-hero__desc {
    text-align: center;
  }
}
.hito-hero__buttons {
  display: flex;
  gap: 25px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .hito-hero__buttons {
    justify-content: center;
  }
}
.hito-hero__buttons a {
  padding: 7.5px 17px;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.25s;
}
.hito-hero__buttons .hito-btn--primary {
  background-color: #000;
  border-color: #000;
}
.hito-hero__buttons .hito-btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hito-featured-posts {
  padding: 80px 0;
  background: #f6f9f9;
}
.hito-featured-posts--white {
  background-color: #fff;
}
.hito-featured-posts--grey, .hito-featured-posts--gray {
  background-color: #f2efe5;
}
.hito-featured-posts--light-grey, .hito-featured-posts--light-gray {
  background-color: #4f4f4f;
}
.hito-featured-posts--light-gold {
  background-color: #f6f9f9;
}
.hito-featured-posts--gold {
  background-color: #bfae7f;
}
.hito-featured-posts--dark-gold {
  background-color: #a39469;
}
.hito-featured-posts--black {
  background-color: #000;
}
.hito-featured-posts {
  /* hide everything outside current slide */
}
.hito-featured-posts__slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hito-featured-posts {
  /* track = horizontal row of slides */
}
.hito-featured-posts__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.hito-featured-posts {
  /* each slide = fixed width */
}
.hito-featured-posts__slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 0;
  margin-right: 0;
}
.hito-featured-posts {
  /* Card layout */
}
.hito-featured-posts__card {
  display: flex;
  width: 100%;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(191, 174, 127, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0 8px 8px 0;
}
.hito-featured-posts__card-image {
  width: 515px;
  height: 413px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .hito-featured-posts__card-image {
    width: 100%;
    height: auto;
  }
}
.hito-featured-posts__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hito-featured-posts__card-content {
  padding: 40px;
  flex: 1;
  min-height: 413px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .hito-featured-posts__card-content {
    min-height: auto;
    padding: 25px;
  }
}
.hito-featured-posts {
  /* meta */
}
.hito-featured-posts .meta-category {
  background: #bfae7f;
  padding: 6px 17px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  color: #fff;
}
.hito-featured-posts .meta-date {
  color: #636365;
  font-size: 16px;
  font-weight: 400;
}
.hito-featured-posts__title {
  margin: 25px 0 0;
  font-size: 30px;
  font-weight: 500;
  color: #000;
}
.hito-featured-posts__excerpt {
  color: #636365;
  margin-bottom: 27px;
  font-size: 16px;
  font-weight: 400;
}
.hito-featured-posts .learn-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #000;
}
.hito-featured-posts .learn-more:hover {
  color: #bfae7f;
}
.hito-featured-posts {
  /* arrows */
}
.hito-featured-posts__arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
  gap: 20px;
}
.hito-featured-posts .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 11px;
}
.hito-featured-posts .arrow:hover {
  background: #a39469;
}
.hito-featured-posts .arrow.next svg {
  transform: rotate(180deg);
}
.hito-featured-posts {
  /* MOBILE ADAPTATION */
}
@media (max-width: 992px) {
  .hito-featured-posts__card {
    flex-direction: column;
  }
}

/* ============================================================
   PAGE HERO (3 variants)
   - no image
   - small circle (inner)
   - large circle (outer, clipped)
   ============================================================ */
.hito-page-hero {
  position: relative;
  padding: 107px 0 107px;
  color: #000;
  /* Background gold pattern */
  background-color: #bfae7f;
  background: var(--light-gradient, linear-gradient(86deg, var(--HITO-Gold, #BFAE7F) -5.49%, #DCD3B8 75.72%));
  background-blend-mode: multiply;
}
.hito-page-hero--light {
  background: var(--light-gradient, linear-gradient(86deg, var(--HITO-Light, #f2EFE5) -5.49%, #DCD3B8 75.72%));
}
.hito-page-hero--white {
  background: var(--white-gradient, linear-gradient(86deg, var(--HITO-White, #FFFFFF) -5.49%, #DCD3B8 75.72%));
}
.hito-page-hero--gold {
  background: var(--gold-gradient, linear-gradient(86deg, var(--HITO-Gold, #BFAE7F) -5.49%, #DCD3B8 75.72%));
}
.hito-page-hero .container {
  position: relative;
  z-index: 2;
}
.hito-page-hero .hito-btn--secondary {
  background-color: transparent;
  color: #000;
}
.hito-page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hito-page-hero {
  /* TEXT BLOCK */
}
.hito-page-hero__content {
  max-width: 565px;
}
.hito-page-hero__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hito-page-hero__desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hito-page-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hito-page-hero {
  /* UNIVERSAL CIRCLE WRAPPER */
}
.hito-page-hero__image {
  border-radius: 50%;
  overflow: hidden;
}
.hito-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hito-page-hero {
  /* ============================================================
      VARIANT 1: NO IMAGE
    ============================================================ */
}
.hito-page-hero--no-image .hito-page-hero__inner {
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.hito-page-hero--no-image .hito-page-hero__content {
  max-width: 760px;
}
.hito-page-hero--no-image .hito-page-hero__buttons {
  justify-content: center;
}
.hito-page-hero {
  /* ============================================================
      VARIANT 2: SMALL CIRCLE (inside container)
    ============================================================ */
}
.hito-page-hero--circle-small .hito-page-hero__image--inner {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.hito-page-hero {
  /* ============================================================
      VARIANT 3: BIG CIRCLE (outside container, clipped)
    ============================================================ */
}
.hito-page-hero--circle-large {
  overflow: hidden;
  /* clip big circle */
}
.hito-page-hero--circle-large .hito-page-hero__image--outer {
  position: absolute;
  top: 50%;
  right: 160px;
  transform: translate(35%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  z-index: 1;
}
@media (max-width: 1400px) {
  .hito-page-hero--circle-large .hito-page-hero__image--outer {
    right: 0;
  }
}
.hito-page-hero--circle-large .hito-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
@media (max-width: 1200px) {
  .hito-page-hero--circle-large .hito-page-hero__content {
    max-width: 445px;
  }
}
@media (max-width: 992px) {
  .hito-page-hero--circle-large .hito-page-hero__content {
    max-width: 100%;
  }
}
.hito-page-hero {
  /* ============================================================
      RESPONSIVE
    ============================================================ */
}
@media (max-width: 1400px) {
  .hito-page-hero--circle-large .hito-page-hero__image--outer {
    width: 780px;
    height: 780px;
    transform: translate(30%, -50%);
  }
}
@media (max-width: 1200px) {
  .hito-page-hero--circle-large .hito-page-hero__image--outer {
    width: 650px;
    height: 650px;
    transform: translate(25%, -50%);
  }
}
@media (max-width: 992px) {
  .hito-page-hero {
    padding: 70px 0 80px;
  }
  .hito-page-hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .hito-page-hero__content {
    max-width: 100%;
  }
  .hito-page-hero__buttons {
    justify-content: center;
  }
  .hito-page-hero {
    /* hide all images on mobile */
  }
  .hito-page-hero__image--inner, .hito-page-hero--circle-large .hito-page-hero__image--outer {
    display: none;
  }
}
.hito-page-hero {
  /* BTN STYLE FIX */
}
.hito-page-hero .hito-btn--primary {
  background-color: #000;
}

.hito-page-hero--circle-small {
  padding: 67px 0 67px;
}

.hito-cards {
  padding: 80px 0;
  text-align: center;
  background: #f2efe5;
}
.hito-cards__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.hito-cards__desc {
  max-width: 80%;
  margin: 0 auto 40px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.hito-cards {
  /* GRID */
}
.hito-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
@media (max-width: 992px) {
  .hito-cards__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.hito-cards__grid--1 {
  grid-template-columns: 1fr;
}
@media (max-width: 992px) {
  .hito-cards__grid--1 {
    grid-template-columns: 1fr;
  }
}
.hito-cards__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .hito-cards__grid--2 {
    grid-template-columns: 1fr;
  }
}
.hito-cards__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .hito-cards__grid--3 {
    grid-template-columns: 1fr;
  }
}
.hito-cards__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .hito-cards__grid--4 {
    grid-template-columns: 1fr;
  }
}
.hito-cards {
  /* CARD */
}
.hito-cards__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 443px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  background: #000;
}
@media (max-width: 600px) {
  .hito-cards__item {
    height: 320px;
  }
}
.hito-cards__image {
  position: absolute;
  inset: 0;
}
.hito-cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hito-cards__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
}
.hito-cards__content {
  position: relative;
  color: white;
  padding: 30px;
  z-index: 2;
  text-align: left;
}
.hito-cards__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hito-cards__content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
}
.hito-cards__content .learn-more {
  font-weight: 600;
  font-size: 16px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.hito-cards__content .learn-more:hover {
  color: #bfae7f;
  border-color: #bfae7f;
}

.hito-pricing {
  padding: 80px 0;
  text-align: center;
  background: #f2efe5;
  /* SECTION TITLE */
}
.hito-pricing__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  color: #000;
}
.hito-pricing__desc {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 38px;
}
.hito-pricing {
  /* GRID — FLEX + FIXED CARD WIDTH */
}
.hito-pricing__grid {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.hito-pricing {
  /* CARD */
}
.hito-pricing__card {
  width: 260px;
  background: #fff;
  padding: 28px 25px 30px 25px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.hito-pricing__card .item strong {
  color: #a39469;
  font-weight: 500;
  margin-right: 15px;
}
.hito-pricing__card--gold {
  background: #bfae7f;
  border-color: #bfae7f;
  color: #fff;
}
.hito-pricing__card--gold .hito-pricing__name {
  color: #fff;
}
.hito-pricing__card--gold .amount {
  color: #fff;
}
.hito-pricing__card--gold .suffix {
  color: #fff !important;
}
.hito-pricing__card--gold .amount-sign svg path {
  fill: #fff;
}
.hito-pricing__card--gold .item strong {
  color: #000;
}
.hito-pricing__card--gold .hito-pricing__btn {
  background: #000;
  border-color: #000;
}
.hito-pricing__card--gold .hito-pricing__btn:hover {
  background: rgb(25.5, 25.5, 25.5);
  border-color: rgb(25.5, 25.5, 25.5);
}
.hito-pricing__card--gold .hito-pricing__features li .dot {
  background: #000;
  color: #fff;
}
.hito-pricing {
  /* NAME */
}
.hito-pricing__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  color: #4f4f4f;
}
.hito-pricing {
  /* PRICE */
}
.hito-pricing__price {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #4f4f4f;
}
.hito-pricing__price .amount-sign {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 6px;
}
.hito-pricing__price .suffix {
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  top: -5px;
  left: 7px;
}
.hito-pricing {
  /* META: LEVEL / CREDITS */
}
.hito-pricing__meta {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 11px;
}
.hito-pricing__meta .item {
  font-size: 16px;
  font-weight: 400;
}
.hito-pricing {
  /* FEATURES LIST */
}
.hito-pricing__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.hito-pricing__features li {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hito-pricing__features li .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bfae7f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
}
.hito-pricing {
  /* BUTTON */
}
.hito-pricing__btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.hito-pricing {
  /* MOBILE */
}
@media (max-width: 768px) {
  .hito-pricing {
    padding: 60px 0;
  }
  .hito-pricing__title {
    font-size: 32px;
  }
  .hito-pricing__card {
    width: 100%;
    max-width: 320px;
  }
}

.hito-cert {
  padding: 70px 0;
  background: #f2efe5;
  text-align: center;
}
.hito-cert__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.hito-cert__desc {
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto 37px;
  color: #000;
  line-height: 1.6;
}
.hito-cert__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 992px) {
  .hito-cert__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-cert__grid {
    grid-template-columns: 1fr;
  }
}
.hito-cert__grid--1 {
  grid-template-columns: 1fr;
}
@media (max-width: 992px) {
  .hito-cert__grid--1 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hito-cert__grid--1 {
    grid-template-columns: 1fr;
  }
}
.hito-cert__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .hito-cert__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-cert__grid--2 {
    grid-template-columns: 1fr;
  }
}
.hito-cert__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .hito-cert__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-cert__grid--3 {
    grid-template-columns: 1fr;
  }
}
.hito-cert__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .hito-cert__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-cert__grid--4 {
    grid-template-columns: 1fr;
  }
}
.hito-cert__card {
  background: #fff;
  border: 1px solid #a39469;
  border-radius: 10px;
  padding: 42px 24px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.hito-cert__card:hover {
  transform: translateY(-4px);
}
.hito-cert__icon img {
  width: 52px;
  height: auto;
  margin-bottom: 20px;
}
.hito-cert__label {
  font-size: 16px;
  color: #a39469;
  margin-bottom: 6px;
  font-weight: 400;
}
.hito-cert__value {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #000;
}
.hito-cert__more {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hito-cert__more .arrow {
  transition: transform 0.2s;
}
.hito-cert__more:hover .arrow {
  transform: translateX(4px);
}

.hito-content-tiles {
  padding: 70px 0;
  background: #f8f6ef;
}
.hito-content-tiles__title {
  text-align: left;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000;
  line-height: 1;
}
.hito-content-tiles__desc {
  text-align: left;
  max-width: 400px;
  margin: 0 0 32px;
  font-size: 16px;
  color: #636365;
  line-height: 1.6;
}
.hito-content-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .hito-content-tiles__grid {
    grid-template-columns: 1fr;
  }
}
.hito-content-tiles {
  /* CARD */
}
.hito-content-tiles__card {
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
}
.hito-content-tiles__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.hito-content-tiles__body {
  padding: 20px 0px;
}
.hito-content-tiles__heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}
.hito-content-tiles__text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.55;
  margin-bottom: 20px;
}
.hito-content-tiles__text p {
  margin-bottom: 22px;
}
.hito-content-tiles {
  /* Link */
}
.hito-content-tiles__link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #000;
}
.hito-content-tiles__link .arrow {
  margin-left: 6px;
  font-size: 16px;
  transition: transform 0.2s ease;
}
.hito-content-tiles__link:hover .arrow {
  transform: translateX(4px);
}
.hito-content-tiles__image img {
  border-radius: 8px;
  border: 1px solid #a39469;
}

.hito-stats {
  padding: 80px 0;
  background: #f2efe5;
}
.hito-stats__title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 23px;
  color: #000;
}
.hito-stats__grid {
  background: #fff;
  border: 1px solid rgba(191, 174, 127, 0.5);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 44px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .hito-stats__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.hito-stats__grid--1 {
  grid-template-columns: 1fr;
  justify-items: center;
}
@media (max-width: 992px) {
  .hito-stats__grid--1 {
    justify-items: center;
  }
}
.hito-stats__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .hito-stats__grid--2 {
    grid-template-columns: 1fr;
  }
}
.hito-stats__item {
  padding: 10px 20px;
}
.hito-stats__item:not(:last-child) {
  border-right: 1px solid #a39469;
}
@media (max-width: 992px) {
  .hito-stats__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #a39469;
    padding-bottom: 30px;
  }
}
.hito-stats__grid--1 .hito-stats__item {
  border-right: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.hito-stats__grid--2 .hito-stats__item:nth-child(2) {
  border-right: none;
}
@media (max-width: 992px) {
  .hito-stats__grid--2 .hito-stats__item {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
}
.hito-stats__value {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  margin-bottom: 3px;
}
.hito-stats__label {
  font-size: 16px;
  font-weight: 500;
  color: #a39469;
  margin-bottom: 10px;
}
.hito-stats__desc {
  font-size: 16px;
  font-weight: 400;
  color: #636365;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.hito-video {
  padding: 80px 0;
  text-align: center;
}
.hito-video--light {
  background: #f2efe5;
}
.hito-video--white {
  background: #fff;
}
.hito-video--gold {
  background: #bfae7f;
}
.hito-video__title {
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1;
  color: #000;
}
.hito-video__desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #636365;
}
.hito-video {
  /* ------------------------------------
     IMAGE / THUMBNAIL WRAPPER (FIXED)
     ------------------------------------ */
}
.hito-video__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.hito-video__thumb {
  position: relative;
  width: 100%;
  height: 470px;
}
.hito-video__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hito-video {
  /* ------------------------------------
     PLAY BUTTON (CENTERED)
     ------------------------------------ */
}
.hito-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: rgba(191, 174, 127, 0.95);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.hito-video__play:hover {
  background: #a39469;
}
.hito-video__play .triangle {
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 32px solid #000;
  margin-left: 6px;
}
.hito-video {
  /* iframe replaces thumbnail */
}
.hito-video .hito-video__iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .hito-video .hito-video__iframe {
    height: 320px;
  }
}

.hito-text {
  padding: 80px 0;
}
.hito-text--white {
  background: #fff;
}
.hito-text--light {
  background: #f2efe5;
}
.hito-text__title {
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}
@media (max-width: 768px) {
  .hito-text__title {
    font-size: 26px;
  }
}
.hito-text__content {
  font-size: 16px;
  line-height: 1.7;
  color: #636365;
}
.hito-text__content p {
  margin-bottom: 18px;
}

.hito-cards-en {
  padding: 80px 0;
  /* Background variations */
}
.hito-cards-en--light {
  background: #ffffff;
}
.hito-cards-en--cream {
  background: #f2efe5;
}
.hito-cards-en--gold {
  background: #bfae7f;
}
.hito-cards-en--dark {
  background: #000;
  color: #fff;
}
.hito-cards-en {
  /* Title alignment variations */
}
.hito-cards-en--align-center .hito-cards-en__title,
.hito-cards-en--align-center .hito-cards-en__desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hito-cards-en--align-left .hito-cards-en__title,
.hito-cards-en--align-left .hito-cards-en__desc {
  text-align: left;
  margin-left: 0;
}
.hito-cards-en {
  /* Section heading */
}
.hito-cards-en__title {
  font-weight: 500;
  margin-bottom: 12px;
  max-width: 700px;
  color: #000;
  line-height: 1;
}
.hito-cards-en--dark .hito-cards-en__title {
  color: #fff;
}
.hito-cards-en__desc {
  max-width: 425px;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}
.hito-cards-en--dark .hito-cards-en__desc {
  color: #e6e6e6;
}
.hito-cards-en {
  /* Grid */
}
.hito-cards-en__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
}
@media (max-width: 768px) {
  .hito-cards-en__grid {
    grid-template-columns: 1fr;
  }
}
.hito-cards-en {
  /* Card item */
}
.hito-cards-en__item {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px 12px 29px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
.hito-cards-en--gold .hito-cards-en__item {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.hito-cards-en--dark .hito-cards-en__item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}
.hito-cards-en {
  /* Icon wrapper */
}
.hito-cards-en__icon {
  flex-shrink: 0;
}
.hito-cards-en__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.hito-cards-en__icon {
  /* Если иконки нет — скрываем контейнер полностью */
}
.hito-cards-en__icon:empty {
  display: none !important;
}
.hito-cards-en {
  /* Content inside card */
}
.hito-cards-en__content {
  flex: 1;
}
.hito-cards-en__item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  line-height: 1.5;
}
.hito-cards-en--dark .hito-cards-en__item-title {
  color: #fff;
}
.hito-cards-en__item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 0;
}
.hito-cards-en--dark .hito-cards-en__item-desc {
  color: #ddd;
}

.hito-pricing-switcher {
  padding: 90px 0;
  text-align: center;
  background-color: #f2efe5;
}
.hito-pricing-switcher__title {
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.hito-pricing-switcher__desc {
  max-width: 600px;
  font-weight: 400;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #000;
}

/* SWITCHER */
.hito-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hito-switcher__btn {
  background: transparent;
  border: none;
  font-weight: 600;
  text-transform: none;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  color: #000;
}
.hito-switcher__btn.active {
  color: #000;
}
.hito-switcher__toggle {
  position: relative;
  width: 42px;
  height: 23px;
}
.hito-switcher__toggle input {
  display: none;
}
.hito-switcher__toggle span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
  cursor: pointer;
}
.hito-switcher__toggle span::after {
  content: "";
  width: 19px;
  height: 19px;
  background: #bfae7f;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.25s ease;
}
.hito-switcher__toggle input:checked + span {
  background: #000;
}
.hito-switcher__toggle input:checked + span::after {
  transform: translateX(14px);
  left: 7px;
}

/* GRID */
.hito-pricing-grid {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 23px;
  max-width: 1100px;
  margin: 0 auto;
}
.hito-pricing-grid.active {
  display: flex;
}
@media (max-width: 992px) {
  .hito-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
@media (max-width: 600px) {
  .hito-pricing-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* CARD */
.hito-pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 23px 23px;
  border: 1px solid #a39469;
  text-align: left;
  width: 260px;
}
.hito-pricing-card .amount-sign {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 6px;
}
.hito-pricing-card.featured {
  background: #bfae7f;
  color: #fff;
}
.hito-pricing-card.featured .hito-p-btn {
  background: #000;
  color: #fff;
}

.hito-pricing-card.featured .hito-p-title {
  color: #fff;
}
.hito-pricing-card.featured .hito-p-price {
  color: #fff;
}
.hito-pricing-card.featured .hito-p-price span {
  color: #fff;
}
.hito-pricing-card.featured .hito-p-price .amount-sign {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 6px;
}
.hito-pricing-card.featured .hito-p-price .amount-sign svg path {
  fill: #fff;
}
.hito-pricing-card.featured .hito-p-meta div {
  color: #fff;
}
.hito-pricing-card.featured .hito-p-meta div strong {
  color: #000;
}

.hito-p-title {
  margin-bottom: 5px;
  font-size: 16px;
  color: #4f4f4f;
  font-weight: 500;
}

.hito-p-price {
  font-size: 36px;
  font-weight: 500;
  color: #4f4f4f;
}
.hito-p-price span {
  font-size: 14px;
  font-weight: 400;
  color: #a39469;
  margin-left: 0px;
  position: relative;
  top: -8px;
}

.hito-p-meta {
  display: flex;
  justify-content: space-between;
  margin: 3px 0 29px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.hito-p-meta div {
  color: #636365;
  font-weight: 400;
  font-size: 16px;
}
.hito-p-meta div strong {
  font-weight: 500;
  font-size: 16px;
  color: #bfae7f;
  margin-right: 10px;
}

.hito-p-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  border-radius: 6px;
  background: #bfae7f;
  color: #fff;
  font-weight: 500;
}
.hito-p-btn:hover {
  background: #a39469;
}

.hito-cpt-grid {
  padding: 80px 0;
}
.hito-cpt-grid__title {
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}
.hito-cpt-grid__desc {
  max-width: 650px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #636365;
}
.hito-cpt-grid {
  /* Grid */
}
.hito-cpt-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
@media (max-width: 992px) {
  .hito-cpt-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-cpt-grid__items {
    grid-template-columns: 1fr;
  }
}
.hito-cpt-grid {
  /* Item */
}
.hito-cpt-grid__item {
  background: #fff;
}
.hito-cpt-grid__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #bfae7f;
}
.hito-cpt-grid__item-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.hito-cpt-grid__item-title a {
  color: #000;
}
.hito-cpt-grid__item-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #000;
}
.hito-cpt-grid__more {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.hito-cpt-grid__more:hover {
  color: #bfae7f;
}
.hito-cpt-grid {
  /* Pagination */
}
.hito-cpt-grid .hito-pagination {
  margin-top: 40px;
  text-align: center;
}
.hito-cpt-grid .hito-pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 4px;
  border-radius: 4px;
}
.hito-cpt-grid .hito-pagination .page-numbers.current {
  background: #bfae7f;
  color: #fff;
  border-color: #bfae7f;
}

.hito-jobsearch {
  padding: 70px 0;
  background: #f2efe5;
}
.hito-jobsearch__title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #000;
}
.hito-jobsearch__desc {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.6;
  color: #636365;
  margin-bottom: 32px;
}
.hito-jobsearch__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid #a39469;
}
.hito-jobsearch .filter-field {
  position: relative;
}
.hito-jobsearch .filter-field input,
.hito-jobsearch .filter-field select {
  min-width: 210px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 11px 18px;
  height: 49px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #4f4f4f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hito-jobsearch .filter-field input:focus,
.hito-jobsearch .filter-field select:focus {
  border-color: #bfae7f;
  box-shadow: 0 0 0 1px rgba(191, 174, 127, 0.3);
  outline: none;
}
.hito-jobsearch .filter-field select {
  background: url("../images/chevron-down.svg") no-repeat right 14px center;
  color: #4f4f4f;
}
.hito-jobsearch .filter-field input::placeholder,
.hito-jobsearch .filter-field select::placeholder {
  color: #4f4f4f;
}
.hito-jobsearch .btn {
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.hito-jobsearch .hito-btn--primary {
  background: #bfae7f;
  color: #fff;
  border: 1px solid #bfae7f;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hito-jobsearch .hito-btn--primary:hover {
  background: #a39469;
  border-color: #a39469;
}
.hito-jobsearch__results {
  margin-top: 40px;
}
.hito-jobsearch__results .job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .hito-jobsearch__results .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .hito-jobsearch__results .job-grid {
    grid-template-columns: 1fr;
  }
}
.hito-jobsearch__results .job-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 354px;
  width: 100%;
}
@media (max-width: 600px) {
  .hito-jobsearch__results .job-card {
    min-width: 100%;
  }
}
.hito-jobsearch__results .job-card h3 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.hito-jobsearch__results .job-card p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1px;
}
.hito-jobsearch__results .job-card .job-meta {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  border-top: 1px solid #a39469;
  padding-top: 20px;
}
.hito-jobsearch__results .job-card .job-meta span svg {
  display: inline-block;
  position: relative;
  top: 2px;
}
.hito-jobsearch__results .job-card .job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.hito-jobsearch__results .job-card .job-footer .btn.small {
  margin-top: auto;
  align-self: flex-start;
  color: #000;
  background-color: #a39469;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 11px;
}
.hito-jobsearch__results .job-card .job-footer .job-date {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.hito-jobsearch__pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hito-jobsearch__pagination button {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hito-jobsearch__pagination button.is-active {
  background: #bfae7f;
  border-color: #bfae7f;
  color: #000;
}
.hito-jobsearch__pagination button:hover:not(.is-active) {
  background: rgba(191, 174, 127, 0.15);
}
.hito-jobsearch__empty {
  text-align: center;
  padding: 40px 0 10px;
  font-size: 16px;
  color: #636365;
}

#jobResults {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.job-card {
  flex: 1 1 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-card h3 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.job-card p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 1px;
}
.job-card .job-meta {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  border-top: 1px solid #a39469;
  padding-top: 20px;
}
.job-card .job-meta span svg {
  display: inline-block;
  position: relative;
  top: 2px;
}
.job-card .job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.job-card .job-footer .btn.small {
  margin-top: auto;
  align-self: flex-start;
  color: #000;
  background-color: #a39469;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 11px;
}
.job-card .job-footer .job-date {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 992px) {
  .job-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media (max-width: 600px) {
  .job-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.hito-job-single {
  padding: 80px 0;
}
.hito-job-single .container {
  max-width: 900px;
}
.hito-job-single__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a39469;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
}
.hito-job-single__back svg path {
  stroke: #a39469;
}
.hito-job-single__back:hover {
  opacity: 0.7;
}
.hito-job-single__title {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
}
.hito-job-single__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 18px;
}
.hito-job-single__date {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  margin-bottom: 20px;
}
.hito-job-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}
.hito-job-single__tags .tag {
  padding: 8px 18px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
}
.hito-job-single__tags .tag:first-child {
  background: #a39469;
}
.hito-job-single__excerpt {
  color: #4f4f4f;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.hito-job-single__content {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 40px;
}
.hito-job-single__content ul, .hito-job-single__content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.hito-job-single__content li {
  margin-bottom: 10px;
}
.hito-job-single__apply {
  margin-top: 40px;
}
.hito-job-single__apply .hito-btn--primary {
  background: #000;
  color: white;
  padding: 10px 19px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hito-job-single__apply .hito-btn--primary:hover {
  background: #a39469;
}

.hito-team {
  padding: 80px 0 40px 0;
}
.hito-team__title {
  font-weight: 500;
  margin-bottom: 33px;
  color: #000;
}
.hito-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .hito-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .hito-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .hito-team__grid {
    grid-template-columns: 1fr;
  }
}
.hito-team__card {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.hito-team__photo img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  border-radius: 8px;
}
.hito-team__info {
  margin-top: 10px;
}
.hito-team__name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}
.hito-team__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #636365;
  margin-bottom: 6px;
}
.hito-team__location svg {
  min-width: 14px;
}
.hito-team__location a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.hito-team__phone a, .hito-team__email a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}
.hito-team__phone a:hover, .hito-team__email a:hover {
  color: #bfae7f;
}
.hito-team__phone {
  margin-bottom: 4px;
}

.hito-instagram {
  padding: 73px 0;
  background: #fff;
  text-align: center;
}
.hito-instagram__title {
  font-weight: 500;
  margin-bottom: 10px;
  color: #4f4f4f;
}
.hito-instagram__desc {
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #4f4f4f;
  line-height: 1.6;
}
.hito-instagram__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 30px;
}
.hito-instagram__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}
.hito-instagram__profile img.verified {
  width: 18px;
  height: 18px;
}
.hito-instagram__follow-btn {
  background: #4a4a4a;
  color: #fff;
  padding: 16px 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}
.hito-instagram__follow-btn:hover {
  background: #bfae7f;
  color: #000;
}
.hito-instagram__feed {
  margin-top: 30px;
}
.hito-instagram__feed .sbi_item {
  border-radius: 10px !important;
  overflow: hidden;
}

.hito-login {
  padding: 80px 0;
  background: #f4f1e9;
}
.hito-login__title {
  text-align: center;
  font-weight: 500;
  color: #000;
}
.hito-login__desc {
  text-align: center;
  max-width: 400px;
  font-size: 16px;
  margin: 10px auto 40px;
  color: #000;
}
.hito-login__box {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d8caa6;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.hito-login__error {
  padding: 12px 15px;
  background: #ffe5e5;
  border: 1px solid #cc4444;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #b00000;
}
.hito-login label {
  display: block;
  font-weight: 600;
  font-size: 14;
  color: #636365;
  margin-bottom: 6px;
}
.hito-login input {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8caa6;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}
.hito-login input:focus {
  outline: none;
  border-color: #bfae7f;
}
.hito-login .hito-btn--primary {
  margin-top: 10px;
  width: 120px;
  text-transform: none;
}
.hito-login__forgot {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #777;
  text-decoration: underline;
  cursor: pointer;
}
.hito-login__forgot:hover {
  color: #000;
}

.hito-contact {
  padding: 100px 0;
  background: #f6f9f9;
}
.hito-contact__title {
  text-align: center;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  line-height: 1;
}
.hito-contact__desc {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 27px;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.hito-contact__desc a {
  color: #000;
}
.hito-contact__form {
  max-width: 80%;
  margin: 0 auto;
  border: 1px solid #a39469;
  border-radius: 8px;
  background-color: #fff;
  padding: 32px 35px;
}
.hito-contact .gform_wrapper input {
  height: 46px;
}
.hito-contact .gform_wrapper textarea {
  height: 92px;
}
.hito-contact .gform_wrapper input,
.hito-contact .gform_wrapper textarea {
  padding: 14px 16px;
  border: 1px solid #bfae7f;
  border-radius: 8px !important;
  background: #fff;
  font-size: 16px;
  text-transform: none;
}
.hito-contact .gform_wrapper input:focus,
.hito-contact .gform_wrapper textarea:focus {
  outline: none;
  border-color: #bfae7f;
  box-shadow: 0 0 0 2px rgba(191, 174, 127, 0.25);
}
.hito-contact .gform_wrapper input::placeholder,
.hito-contact .gform_wrapper textarea::placeholder {
  font-size: 14px;
  color: #636365;
  font-weight: 400;
}
.hito-contact .gform_wrapper textarea {
  min-height: 140px;
  resize: vertical;
}
.hito-contact .gform_wrapper .gfield_label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px !important;
  color: #636365;
}
.hito-contact .gform_wrapper .gfield {
  margin-bottom: 20px;
}
.hito-contact .gform_wrapper .gform_button {
  background: #bfae7f;
  color: #fff;
  padding: 9px 30px;
  font-weight: 500;
  height: 41px;
  border-radius: 6px !important;
  cursor: pointer;
  border: none;
  font-size: 16px;
}
.hito-contact .gform_wrapper .gform_button:hover {
  background: #a8966d;
}
.hito-contact .gform_wrapper .gfield_select {
  border: 1px solid #bfae7f;
  border-radius: 8px !important;
  background: #fff;
  font-size: 16px;
  text-transform: none;
}
.hito-contact .gform_wrapper .gfield-choice-input {
  height: auto;
  display: inline-block;
}
.hito-contact .gform_wrapper .gchoice .gform-field-label {
  padding-left: 0;
}

/* BOTTOM CONTACT DIRECT AREA */
.hito-contact__direct {
  margin-top: 26px;
  text-align: center;
}
.hito-contact__direct-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.hito-contact__direct-desc {
  max-width: 370px;
  margin: 0 auto 23px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}
.hito-contact__direct-items {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hito-contact__direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #a39469;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 20px;
}
.hito-contact__direct-item .icon {
  width: 44px;
}
.hito-contact__direct-item .label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 2px;
}
.hito-contact__direct-item .text {
  text-align: left;
}
.hito-contact__direct-item .value {
  font-size: 16px;
  color: #a39469;
  font-weight: 600;
  text-decoration: none;
}
.hito-contact__direct-item .value:hover {
  color: #bfae7f;
}

/* Mobile */
@media (max-width: 767px) {
  .hito-contact__direct-items {
    flex-direction: column;
    gap: 20px;
  }
}
.banner {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .banner {
    padding: 25px 0;
  }
}
.banner--light {
  background-color: #f2EFE5;
}
.banner--white {
  background-color: #fff;
}
.banner--gold {
  background-color: #BFAE7F;
}

.post-content-section {
  padding: 95px 0 60px 0;
  background-color: #f6f3ee;
}
@media (max-width: 768px) {
  .post-content-section {
    padding: 48px 0;
  }
}
.post-content-section__inner {
  max-width: 920px;
}
.post-content-section__content {
  margin-bottom: 35px;
}
.post-content-section__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin-bottom: 18px;
}
.post-content-section__content p a {
  color: inherit;
  text-decoration: underline;
}
.post-content-section__content p a:hover {
  text-decoration: none;
}
.post-content-section__content p:first-of-type {
  font-size: 16px;
  color: #4f4f4f;
}
.post-content-section__highlight {
  font-weight: 500;
  margin-top: 32px;
}
.post-content-section__action {
  margin-top: 40px;
}
.post-content-section__button {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 6px;
  background-color: #000;
  padding: 11px 18px;
}

.hito-newsletter {
  padding: 73px 0;
  text-align: center;
}
.hito-newsletter--bg-light {
  background: #fff;
}
.hito-newsletter--bg-grey {
  background: #f6f4ef;
}
.hito-newsletter__inner {
  max-width: 430px;
  margin: 0 auto;
}
.hito-newsletter__title {
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  line-height: 1;
}
.hito-newsletter__desc {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hito-newsletter {
  /* Gravity Forms overrides */
}
.hito-newsletter .gform_wrapper {
  margin: 0;
}
.hito-newsletter .gform_body {
  margin-bottom: 0;
}
.hito-newsletter .gform_fields {
  display: flex;
  gap: 10px;
}
@media (max-width: 640px) {
  .hito-newsletter .gform_fields {
    flex-direction: column;
    margin: 0 auto;
  }
}
.hito-newsletter .gfield {
  margin: 0;
  flex: 1;
}
.hito-newsletter input[type=email],
.hito-newsletter input[type=text] {
  height: 45px;
  border-radius: 6px;
  border: 1px solid rgba(191, 174, 127, 0.6);
  padding: 0 16px;
  font-size: 15px;
}
.hito-newsletter .gform_footer {
  margin: 0;
  padding: 0;
}
.hito-newsletter button,
.hito-newsletter input[type=submit] {
  height: 45px;
  padding: 0 45px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.hito-newsletter__form--btn-gold input[type=submit] {
  background: #bfae7f;
  color: #fff;
}
.hito-newsletter__form--btn-primary input[type=submit] {
  background: #000;
  color: #fff;
}
.hito-newsletter__form .gform_fields {
  align-items: flex-end;
  justify-content: flex-start;
}
.hito-newsletter__form .gfield--type-email {
  text-align: left;
  flex: -1 0 72%;
  box-sizing: border-box;
  padding: 0;
}
.hito-newsletter__form .gfield--type-email .gfield_label {
  font-size: 14px;
  font-weight: 600;
  color: #636365;
  margin-bottom: 10px;
}
.hito-newsletter__form .gfield--type-submit {
  flex: 0 0 20%;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 0;
  margin-bottom: 0 !important;
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/

/*# sourceMappingURL=style.css.map */
