:root {
  --accent: #9e341f;
  --accent-light: #9e341f;
  --accent-hover: #9e341f;
  --accent-glow: rgba(181, 39, 45, 0.08);
  --accent-border: rgba(181, 39, 45, 0.18);
}

.hemli-mark-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.hemli-mark-icon.mark-xs {
  width: 10px;
  height: 10px;
}
.hemli-mark-icon.mark-sm {
  width: 12px;
  height: 12px;
}
.hemli-mark-icon.mark-md {
  width: 16px;
  height: 16px;
}
.hemli-mark-icon.mark-lg {
  width: 20px;
  height: 20px;
}
.hemli-mark-icon.mark-xl {
  width: 28px;
  height: 28px;
}
.hemli-mark-icon.mark-white {
  filter: brightness(0) invert(1);
}

.sub-title {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.sub-title img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2500%) hue-rotate(340deg) brightness(85%) contrast(95%);
}

.sub-title.light {
  color: var(--accent-light);
}

.section-title .title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 10px;
  opacity: 0.6;
}

.section-title .title.white::after {
  background-color: var(--accent-light);
  opacity: 0.4;
}

.about-us-title span.accent-word,
h2 span.accent-word {
  color: var(--accent);
}

.title.white span.accent-word {
  color: var(--accent-light);
}

.primary-button {
  transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.primary-button:hover {
  border-color: var(--accent) !important;
  background-color: transparent !important;
  color: var(--accent);
}

.primary-button:hover .arrow {
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2500%) hue-rotate(340deg) brightness(85%) contrast(95%);
}

.primary-button.white:hover {
  border-color: var(--accent-light) !important;
  background-color: transparent !important;
  color: var(--accent-light);
}

.primary-button.outline:hover {
  border-color: var(--accent) !important;
  color: var(--accent);
}

.hero-text-wrap {
  position: relative;
}

.hero-text {
  max-width: 440px;
  text-wrap: balance;
}

.hero-brand-mark {
  display: block;
  width: 380px;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 20px;
}


.secondary-button.accent-btn {
  color: var(--accent-light);
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.secondary-button.accent-btn:hover {
  color: var(--accent);
}

.secondary-button.accent-btn .arrow {
  filter: none;
}

.hero-block .project-inner-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.fact-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 1.5px;
  background-color: var(--accent);
  opacity: 0.4;
}

.fact-block {
  position: relative;
}

.review-name {
  color: var(--accent);
}

.ma-right > div:first-child {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.25;
}

.cta {
  position: relative;
}

.footer-buttn {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-buttn:hover {
  background-color: var(--accent) !important;
  color: #fff !important;
}

.header-label {
  color: var(--accent-light);
  letter-spacing: 0.06em;
}

.brand-logo {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 120px !important;
  display: block;
  filter: saturate(1.8) contrast(1.1);
  object-fit: contain;
}

.brand-logo-white {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 120px !important;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-logo {
  height: auto !important;
  max-height: none !important;
  width: 180px !important;
  max-width: 180px !important;
  display: block;
  object-fit: contain;
  filter: none;
  transform: translateX(-100px)  scale(2.6);
  transform-origin: left center;
}

@media (max-width: 767px) {
  .brand-logo,
  .brand-logo-white {
    height: 30px !important;
    max-height: 30px !important;
    max-width: 100px !important;
  }
  .footer-brand-logo {
    width: 110px !important;
    max-width: 110px !important;
  }
}

.nav-link.w--current {
  color: var(--accent) !important;
}

.menu-link.w--current {
  color: var(--accent-light) !important;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.menu-link:hover {
  color: var(--accent-light) !important;
}

.faq-number {
  color: var(--accent) !important;
  opacity: 0.85;
}

.contact-label {
  color: var(--accent) !important;
}

.contact-link:hover {
  color: var(--accent-light) !important;
}

.submit-button {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.submit-button:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.input:focus,
.textarea:focus {
  border-color: var(--accent-border) !important;
}

.plain-link:hover {
  color: var(--accent-light) !important;
}

.location-inner {
  grid-template-columns: 1fr 1fr;
}

.location-block h3::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--accent);
  margin-top: 8px;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .location-inner {
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
  }
  .location-block {
    padding: 24px;
    grid-row-gap: 20px;
  }
  .location-block h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .location-top {
    grid-row-gap: 8px;
    font-size: 14px;
  }
  .location-image {
    min-height: 200px;
    max-height: 240px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 479px) {
  .location-inner {
    grid-row-gap: 20px;
  }
  .location-block {
    padding: 18px;
    grid-row-gap: 16px;
  }
  .location-block h3 {
    font-size: 18px;
  }
  .location-top {
    font-size: 13px;
  }
  .location-image {
    min-height: 180px;
    max-height: 220px;
  }
}

.project-sidebar {
  border-left-color: var(--accent) !important;
}

.project-sidebar strong {
  color: var(--accent-light) !important;
}

.project-about h2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 10px;
  opacity: 0.5;
}

.project-location h2::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 10px;
  opacity: 0.5;
}

.gallery-top .swiper-button-next:hover,
.gallery-top .swiper-button-prev:hover {
  color: var(--accent-light) !important;
}

.gallery-thumbs .swiper-slide-thumb-active {
  border: 2px solid var(--accent);
  border-radius: 8px;
}

.filter-btn.active,
.pf-btn.active {
  border-color: var(--accent) !important;
}

.filter-btn:hover,
.pf-btn:hover {
  border-color: var(--accent-border) !important;
  color: var(--accent) !important;
}

.project-link:hover .project-title-02 {
  color: var(--accent) !important;
}

.project-arrow {
  transition: background-color 0.3s ease;
}

.project-link:hover .project-arrow {
  background-color: var(--accent) !important;
}

.post-link:hover .post-title {
  color: var(--accent) !important;
}

.post-category div:last-child {
  color: var(--accent);
  opacity: 0.8;
}

.service-link:hover .service-name {
  color: var(--accent-light) !important;
}

.service-tag.w--current {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.service-tag:hover {
  border-color: var(--accent-border) !important;
  color: var(--accent) !important;
}

.about-box .about-number {
  color: var(--accent) !important;
  opacity: 0.9;
}

.mission-number {
  color: var(--accent) !important;
  opacity: 0.7;
}

.tab-link.w--current {
  color: var(--accent) !important;
  border-bottom-color: var(--accent) !important;
}

.tab-link:hover {
  color: var(--accent) !important;
}

.ep-heading::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--accent);
  margin-top: 8px;
  opacity: 0.4;
}

.info-data h3 {
  color: var(--accent) !important;
  opacity: 0.85;
}

.data-list li::marker {
  color: var(--accent);
}

.w-pagination-next:hover {
  border-color: var(--accent) !important;
}

.social-link:hover {
  border-color: var(--accent) !important;
}

.social-link:hover img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2500%) hue-rotate(340deg) brightness(85%) contrast(95%);
}

.footer-link:hover {
  color: var(--accent-light) !important;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: inherit;
}

.lang-toggle a {
  padding: 4px 6px;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1;
  position: relative;
}

.lang-toggle a.active {
  color: var(--accent);
}

.lang-toggle a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}

.lang-toggle .lang-sep {
  user-select: none;
}

.lang-toggle-bar {
  margin-left: 16px;
  z-index: 10;
  flex-shrink: 0;
}

.lang-toggle-bar a {
  color: rgba(255, 255, 255, 0.55);
}

.lang-toggle-bar a:hover {
  color: #fff;
}

.lang-toggle-bar .lang-sep {
  color: rgba(255, 255, 255, 0.25);
}

.header-main .lang-toggle-bar a {
  color: rgba(0, 0, 0, 0.4);
}

.header-main .lang-toggle-bar a:hover {
  color: #231f20;
}

.header-main .lang-toggle-bar a.active {
  color: var(--accent);
}

.header-main .lang-toggle-bar .lang-sep {
  color: rgba(0, 0, 0, 0.2);
}

.lang-toggle-menu {
  margin-right: auto;
}

.lang-toggle-menu a {
  color: rgba(255, 255, 255, 0.5);
}

.lang-toggle-menu a:hover {
  color: #fff;
}

.lang-toggle-menu .lang-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer .w-container {
  max-width: 1200px !important;
  padding-left: 48px;
  padding-right: 48px;
}

.footer-outer {
  display: grid !important;
  grid-template-columns: 34% 33% 23%;
  justify-content: space-between;
  gap: 0;
  padding-top: 56px;
  padding-bottom: 44px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--brand {
  gap: 18px;
  padding-right: 32px;
}

.footer-col--brand .footer-brand-logo {
  max-height: none;
  width: auto;
}

.footer-tagline {
  color: #999;
  font-size: 15px;
  line-height: 160%;
  margin: 0;
}

.footer-section-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.footer-col--contact .footer-data {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col--contact .footer-data .address {
  line-height: 1.7;
  margin: 0;
}

.footer-col--contact .footer-data .footer-label {
  margin-bottom: 3px;
  opacity: 0.55;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-col--contact .footer-data .ftr-link {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col--pages .footer-links {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--pages .footer-links .footer-link {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-col--pages .footer-links .footer-link:hover {
  opacity: 1;
}

.footer-newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-section-label--newsletter {
  margin-bottom: 12px;
}

.footer-col--contact {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 40px;
  padding-right: 40px;
}

.project-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .hero-brand-mark {
    width: 220px;
    margin-bottom: 20px;
  }

  .lang-toggle-bar {
    margin-left: 12px;
  }

  .footer .w-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-outer {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .footer-col--brand {
    grid-column: 1;
    padding-right: 24px;
  }

  .footer-col--contact {
    grid-column: 2;
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-col--pages {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
  }

  .footer-col--pages .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
}

@media (max-width: 767px) {
  .project-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .project-sidebar {
    padding: 24px !important;
  }

  .single-hero-image img,
  .project-carousel img {
    border-radius: 8px;
  }

  .project-location iframe {
    height: 280px !important;
  }

  .hero-wrap {
    height: 100svh !important;
    min-height: 560px;
  }

  .hero-outer {
    padding-top: 70px !important;
  }

  .hero-data {
    gap: 40px !important;
    padding-bottom: 0 !important;
  }

  .hero-left {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-text {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 165% !important;
  }

  .hero-logo {
    text-align: left !important;
    margin-bottom: 30px !important;
  }

  .hero-logo img {
    max-width: 200px;
  }
}

@media (max-width: 479px) {
  .hero-brand-mark {
    width: 160px;
    margin-bottom: 16px;
  }

  .footer .w-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-outer {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .footer-col--brand {
    text-align: center;
    align-items: center;
    padding-right: 0;
    padding-bottom: 32px;
  }

  .footer-col--brand .footer-brand-logo {
    max-width: 120px;
  }

  .footer-section-label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .footer-col--contact {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-col--contact .footer-data .address {
    font-size: 14px;
    width: auto;
    line-height: 1.7;
  }

  .footer-col--contact .footer-data .ftr-link {
    font-size: 14px;
  }

  .footer-col--pages {
    grid-column: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
  }

  .footer-col--pages .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .footer-col--pages .footer-links .footer-link {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-data {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px;
  }

  .footer-social {
    justify-content: center !important;
    gap: 16px !important;
  }

  .social-link {
    font-size: 13px;
  }

  .footer-text {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
  }

  .footer-divider {
    display: none !important;
  }

  .project-info-grid {
    gap: 20px;
    margin-bottom: 30px;
  }

  .project-sidebar {
    padding: 20px !important;
  }

  .project-location iframe {
    height: 240px !important;
  }

  .hero-wrap {
    height: 100svh !important;
    min-height: 520px;
  }

  .hero-outer {
    padding-top: 60px !important;
  }

  .hero-data {
    gap: 30px !important;
    padding-bottom: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-left {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-text {
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 160% !important;
  }

  .hero-logo {
    text-align: left !important;
    margin-bottom: 24px !important;
  }

  .hero-logo img {
    max-width: 180px;
  }
}

.environment {
  background-color: #fff;
}

.tab-link {
  background-color: transparent;
}

.tab-link.w--current {
  background-color: transparent;
}
