@font-face {
    font-family: "IRANSans";
    src: url("../fonts/IRANSansWeb_Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #053029;
    --primary-strong: #03241f;
    --primary-hover: #0b443b;
    --primary-soft: #e8f0ee;
    --secondary: #ae9155;
    --secondary-strong: #8a713e;
    --secondary-hover: #9a7e45;
    --secondary-soft: #f3ede1;
    --background: #f7f7f4;
    --surface: #ffffff;
    --surface-soft: #f0f3f1;
    --text: #18211f;
    --text-muted: #66716e;
    --border: #dfe5e2;
    --container: 1280px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 24px rgba(5, 48, 41, 0.07);
    --shadow-md: 0 18px 54px rgba(5, 48, 41, 0.12);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family: "IRANSans", Tahoma, sans-serif;
    font-weight: 300;
    line-height: 1.85;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 2000;
    padding: 10px 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    isolation: isolate;
    transition: filter 320ms var(--ease-out);
}

.site-header::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(247, 247, 244, 0.83);
    border-bottom: 1px solid transparent;
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    opacity: 0;
    transition: opacity 320ms ease, border-color 320ms ease;
}

.site-header.is-scrolled::before {
    border-color: rgba(5, 48, 41, 0.08);
    opacity: 1;
}

.site-header__utility {
    max-height: 42px;
    overflow: hidden;
    color: #e7eeec;
    background: var(--primary);
    transition: max-height 380ms var(--ease-out), opacity 220ms ease, transform 380ms var(--ease-out);
}

.site-header.is-scrolled .site-header__utility {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
}

.site-header__utility-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 12px;
}

.site-header__utility-group,
.site-header__utility-item,
.site-header__utility-phone {
    display: inline-flex;
    align-items: center;
}

.site-header__utility-group {
    gap: 14px;
}

.site-header__utility-item {
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
}

.site-header__utility-item i,
.site-header__utility-phone i {
    color: var(--secondary);
}

.site-header__utility-separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
}

.site-header__utility-phone {
    gap: 9px;
    color: #fff;
    transition: color 180ms ease;
}

.site-header__utility-phone span {
    color: rgba(255, 255, 255, 0.62);
}

.site-header__utility-phone bdi {
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.site-header__utility-phone:hover,
.site-header__utility-phone:focus-visible {
    color: var(--secondary);
}

.site-header__container {
    padding-block: 14px;
    transition: padding 340ms var(--ease-out);
}

.site-header.is-scrolled .site-header__container {
    padding-block: 8px;
}

.site-header__shell {
    min-height: 82px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 11px 14px 11px 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(5, 48, 41, 0.09);
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: min-height 340ms var(--ease-out), border-radius 340ms var(--ease-out), box-shadow 340ms ease, transform 340ms var(--ease-out);
}

.site-header.is-scrolled .site-header__shell {
    min-height: 68px;
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(5, 48, 41, 0.13);
}

.site-brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
}

.site-brand__image {
    width: auto;
    max-width: 148px;
    height: 52px;
    object-fit: contain;
}

.site-brand__mark {
    width: 52px;
    height: 52px;
    position: relative;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--primary);
    background: var(--secondary);
    border: 1px solid rgba(5, 48, 41, 0.14);
    border-radius: 18px 8px 18px 8px;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.14);
    transition: border-radius 450ms var(--ease-out), transform 450ms var(--ease-out), box-shadow 450ms ease;
}

.site-brand:hover .site-brand__mark,
.site-brand:focus-visible .site-brand__mark {
    border-radius: 8px 18px 8px 18px;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.22), 0 10px 24px rgba(174, 145, 85, 0.24);
    transform: rotate(-4deg) translateY(-1px);
}

.site-brand__letter {
    position: relative;
    z-index: 2;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.site-brand__leaf {
    position: absolute;
    width: 25px;
    height: 11px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100% 0 100% 0;
}

.site-brand__leaf--one {
    top: 6px;
    left: 5px;
    transform: rotate(22deg);
}

.site-brand__leaf--two {
    right: 2px;
    bottom: 7px;
    transform: rotate(-158deg);
}

.site-brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.site-brand__copy strong {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.site-brand__copy small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 9px;
    white-space: nowrap;
}

/* Desktop navigation */
.desktop-nav {
    align-self: stretch;
    display: flex;
    align-items: center;
    margin-inline: auto;
}

.desktop-nav__list {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
}

.desktop-nav__item {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-nav__link {
    min-height: 44px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    overflow: hidden;
    color: #2f3c39;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
    transition: color 220ms ease, transform 280ms var(--ease-out);
}

.desktop-nav__link::before {
    position: absolute;
    inset: 5px;
    z-index: -1;
    content: "";
    background: var(--primary-soft);
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 220ms ease, transform 320ms var(--ease-out);
}

.desktop-nav__link::after {
    position: absolute;
    right: 50%;
    bottom: 5px;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(50%) translateY(6px) scale(0);
    transition: opacity 220ms ease, transform 320ms var(--ease-out), width 320ms var(--ease-out), border-radius 320ms ease;
}

.desktop-nav__link i {
    color: var(--secondary-strong);
    font-size: 9px;
    transition: transform 260ms var(--ease-out);
}

.desktop-nav__link:hover,
.desktop-nav__link:focus-visible,
.desktop-nav__link.is-active {
    color: var(--primary);
    transform: translateY(-1px);
}

.desktop-nav__link:hover::before,
.desktop-nav__link:focus-visible::before,
.desktop-nav__link.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.desktop-nav__link:hover::after,
.desktop-nav__link:focus-visible::after,
.desktop-nav__link.is-active::after {
    width: 18px;
    border-radius: 10px;
    opacity: 1;
    transform: translateX(50%) translateY(0) scale(1);
}

.desktop-nav__item--has-children:hover .desktop-nav__link i,
.desktop-nav__item--has-children:focus-within .desktop-nav__link i {
    transform: rotate(180deg);
}

.desktop-nav__dropdown {
    width: min(720px, calc(100vw - 48px));
    position: absolute;
    top: calc(100% + 12px);
    right: 50%;
    z-index: 30;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    padding: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(5, 48, 41, 0.11);
    border-radius: 25px;
    box-shadow: 0 26px 70px rgba(5, 48, 41, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(12px) scale(0.97);
    transform-origin: top center;
    transition: opacity 220ms ease, visibility 220ms ease, transform 360ms var(--ease-out);
}

.desktop-nav__dropdown::before {
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
}

.desktop-nav__item--has-children:hover .desktop-nav__dropdown,
.desktop-nav__item--has-children:focus-within .desktop-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0) scale(1);
}

.desktop-nav__dropdown-head {
    position: relative;
    overflow: hidden;
    padding: 22px 18px;
    color: #fff;
    background: var(--primary);
    border-radius: 18px;
}

.desktop-nav__dropdown-head::after {
    width: 130px;
    height: 130px;
    position: absolute;
    bottom: -72px;
    left: -48px;
    content: "";
    background: rgba(174, 145, 85, 0.22);
    border: 1px solid rgba(174, 145, 85, 0.36);
    border-radius: 50%;
}

.desktop-nav__dropdown-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.desktop-nav__dropdown-head strong {
    display: block;
    font-size: 17px;
    line-height: 1.75;
}

.desktop-nav__dropdown-head p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 2;
}

.desktop-nav__dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.desktop-nav__service {
    min-height: 78px;
    display: grid;
    grid-template-columns: 42px 1fr 18px;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: background 220ms ease, border-color 220ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.desktop-nav__service:hover,
.desktop-nav__service:focus-visible {
    background: var(--secondary-soft);
    border-color: rgba(174, 145, 85, 0.26);
    box-shadow: 0 10px 24px rgba(5, 48, 41, 0.06);
    transform: translateY(-2px);
}

.desktop-nav__service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 13px 7px 13px 7px;
    transition: color 220ms ease, background 220ms ease, border-radius 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.desktop-nav__service:hover .desktop-nav__service-icon,
.desktop-nav__service:focus-visible .desktop-nav__service-icon {
    color: var(--primary);
    background: var(--secondary);
    border-radius: 7px 13px 7px 13px;
    transform: rotate(-3deg);
}

.desktop-nav__service strong,
.desktop-nav__service small {
    display: block;
}

.desktop-nav__service strong {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav__service small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 9px;
}

.desktop-nav__service-arrow {
    color: var(--secondary-strong);
    font-size: 10px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

.desktop-nav__service:hover .desktop-nav__service-arrow,
.desktop-nav__service:focus-visible .desktop-nav__service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Header actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 0 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 13px;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.button--primary {
    color: #fff;
    background: var(--primary);
}

.button--secondary {
    color: var(--primary);
    background: var(--secondary);
}

.button--ghost {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}

.button--header {
    min-height: 50px;
    padding-inline: 18px 12px;
    border-color: rgba(5, 48, 41, 0.11);
    border-radius: 17px 10px 17px 10px;
    box-shadow: 0 8px 20px rgba(174, 145, 85, 0.2);
}

.button--header::before {
    width: 36px;
    height: 130%;
    position: absolute;
    top: -15%;
    right: -60px;
    content: "";
    background: rgba(255, 255, 255, 0.28);
    filter: blur(5px);
    transform: skewX(-18deg);
    transition: right 620ms var(--ease-out);
}

.button--header i {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 9px 5px 9px 5px;
    font-size: 10px;
    transition: border-radius 320ms var(--ease-out), transform 320ms var(--ease-out);
}

.button--header:hover,
.button--header:focus-visible {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 10px 17px 10px 17px;
    box-shadow: 0 14px 30px rgba(5, 48, 41, 0.2);
    transform: translateY(-2px);
}

.button--header:hover::before,
.button--header:focus-visible::before {
    right: calc(100% + 18px);
}

.button--header:hover i,
.button--header:focus-visible i {
    color: var(--primary);
    background: var(--secondary);
    border-radius: 5px 9px 5px 9px;
    transform: translateX(-2px);
}

.site-header__phone-button,
.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(5, 48, 41, 0.09);
    border-radius: 15px;
    transition: color 220ms ease, background 220ms ease, border-radius 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.site-header__phone-button:hover,
.site-header__phone-button:focus-visible {
    color: var(--primary);
    background: var(--secondary);
    border-radius: 8px 16px 8px 16px;
    transform: translateY(-2px) rotate(-3deg);
}

.mobile-menu-toggle {
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 10px;
    transition: width 240ms var(--ease-out), transform 300ms var(--ease-out);
}

.mobile-menu-toggle span + span {
    margin-top: 4px;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 13px;
}

.mobile-menu-toggle:hover span:nth-child(2),
.mobile-menu-toggle:focus-visible span:nth-child(2) {
    width: 18px;
}

/* Mobile navigation */
.mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 420ms ease;
}

.mobile-navigation.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-navigation__overlay {
    position: absolute;
    inset: 0;
    padding: 0;
    background: rgba(3, 24, 20, 0.5);
    border: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 320ms ease;
}

.mobile-navigation.is-open .mobile-navigation__overlay {
    opacity: 1;
}

.mobile-navigation__panel {
    width: min(89vw, 410px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--text);
    background: #fff;
    border-left: 1px solid rgba(174, 145, 85, 0.42);
    border-radius: 34px 0 0 34px;
    box-shadow: -24px 0 70px rgba(5, 48, 41, 0.18);
    transform: translateX(105%);
    transition: transform 480ms var(--ease-out);
}

.mobile-navigation.is-open .mobile-navigation__panel {
    transform: translateX(0);
}

.mobile-navigation__decor {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.mobile-navigation__decor--one {
    width: 210px;
    height: 210px;
    top: -118px;
    left: -96px;
    background: rgba(174, 145, 85, 0.065);
    border: 1px solid rgba(174, 145, 85, 0.17);
}

.mobile-navigation__decor--two {
    width: 145px;
    height: 145px;
    right: -90px;
    bottom: 13%;
    background: rgba(5, 48, 41, 0.035);
    border: 1px solid rgba(5, 48, 41, 0.09);
}

.mobile-navigation__head {
    min-height: 91px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(5, 48, 41, 0.09);
}

.mobile-navigation__head::after {
    width: 54px;
    height: 2px;
    position: absolute;
    right: 20px;
    bottom: -1px;
    content: "";
    background: var(--secondary);
    border-radius: 20px;
}

.site-brand--mobile,
.site-brand--mobile .site-brand__copy strong {
    color: var(--primary);
}

.site-brand--mobile .site-brand__copy small {
    color: var(--text-muted);
}

.site-brand--mobile .site-brand__mark {
    width: 48px;
    height: 48px;
}

.mobile-navigation__close {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(5, 48, 41, 0.17);
    border-radius: 14px 7px 14px 7px;
    cursor: pointer;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, border-radius 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.mobile-navigation__close:hover,
.mobile-navigation__close:focus-visible {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 7px 14px 7px 14px;
    transform: rotate(90deg);
}

.mobile-navigation__intro {
    position: relative;
    z-index: 2;
    margin: 16px 16px 8px;
    padding: 14px 15px 13px;
    background: rgba(5, 48, 41, 0.035);
    border: 1px solid rgba(5, 48, 41, 0.085);
    border-right: 3px solid var(--secondary);
    border-radius: 15px 7px 15px 7px;
}

.mobile-navigation__intro span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.mobile-navigation__intro p {
    max-width: 300px;
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.95;
}

.mobile-navigation__nav {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 5px 15px 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(174, 145, 85, 0.55) transparent;
}

.mobile-navigation__item {
    border-bottom: 1px solid rgba(5, 48, 41, 0.07);
}

.mobile-navigation__row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-navigation__link {
    min-height: 57px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 0 10px;
    overflow: hidden;
    color: #304540;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
    transition: color 220ms ease, padding 320ms var(--ease-out), background 220ms ease, border-color 220ms ease;
}

.mobile-navigation__link::after {
    width: 5px;
    height: 5px;
    position: absolute;
    left: 12px;
    content: "";
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: opacity 220ms ease, transform 320ms var(--ease-out);
}

.mobile-navigation__link-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(5, 48, 41, 0.045);
    border: 1px solid rgba(5, 48, 41, 0.08);
    border-radius: 11px 6px 11px 6px;
    font-size: 12px;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 300ms var(--ease-out);
}

.mobile-navigation__link:hover,
.mobile-navigation__link:focus-visible,
.mobile-navigation__link.is-active {
    padding-right: 14px;
    color: var(--primary);
    background: rgba(5, 48, 41, 0.04);
    border-color: rgba(5, 48, 41, 0.08);
}

.mobile-navigation__link:hover .mobile-navigation__link-icon,
.mobile-navigation__link:focus-visible .mobile-navigation__link-icon,
.mobile-navigation__link.is-active .mobile-navigation__link-icon {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(-3deg);
}

.mobile-navigation__link:hover::after,
.mobile-navigation__link:focus-visible::after,
.mobile-navigation__link.is-active::after {
    opacity: 1;
    transform: scale(1);
}

.mobile-navigation__link-index {
    min-width: 23px;
    color: var(--secondary-strong);
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    opacity: 0.8;
}

.mobile-navigation__submenu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--primary);
    background: rgba(174, 145, 85, 0.09);
    border: 1px solid rgba(174, 145, 85, 0.24);
    border-radius: 12px 6px 12px 6px;
    cursor: pointer;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 320ms var(--ease-out);
}

.mobile-navigation__submenu-toggle[aria-expanded="true"] {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg);
}

.mobile-navigation__submenu {
    margin: 2px 8px 10px;
    padding: 7px;
    background: #fff;
    border: 1px solid rgba(174, 145, 85, 0.24);
    border-right: 2px solid var(--secondary);
    border-radius: 14px 7px 14px 7px;
    box-shadow: 0 10px 26px rgba(5, 48, 41, 0.055);
    animation: submenuReveal 320ms var(--ease-out) both;
}

.mobile-navigation__submenu a {
    min-height: 47px;
    display: grid;
    grid-template-columns: 32px 1fr 18px;
    align-items: center;
    gap: 9px;
    padding: 6px 8px;
    color: #40534e;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 600;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 280ms var(--ease-out);
}

.mobile-navigation__submenu a + a {
    margin-top: 2px;
}

.mobile-navigation__submenu a > i:first-child {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(5, 48, 41, 0.045);
    border: 1px solid rgba(5, 48, 41, 0.075);
    border-radius: 9px 5px 9px 5px;
}

.mobile-navigation__submenu a > i:last-child {
    color: var(--secondary-strong);
    font-size: 9px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 220ms ease, transform 280ms var(--ease-out);
}

.mobile-navigation__submenu a:hover,
.mobile-navigation__submenu a:focus-visible {
    color: var(--primary);
    background: rgba(174, 145, 85, 0.075);
    border-color: rgba(174, 145, 85, 0.16);
    transform: translateX(-3px);
}

.mobile-navigation__submenu a:hover > i:first-child,
.mobile-navigation__submenu a:focus-visible > i:first-child {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-navigation__submenu a:hover > i:last-child,
.mobile-navigation__submenu a:focus-visible > i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.mobile-navigation__footer {
    position: relative;
    z-index: 2;
    padding: 14px 16px max(20px, env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(5, 48, 41, 0.09);
    box-shadow: 0 -14px 32px rgba(5, 48, 41, 0.035);
}

.mobile-navigation__cta {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px 10px 10px;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 17px 9px 17px 9px;
    box-shadow: 0 12px 26px rgba(5, 48, 41, 0.13);
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, border-radius 320ms var(--ease-out), transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.mobile-navigation__cta small,
.mobile-navigation__cta strong {
    display: block;
}

.mobile-navigation__cta small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.mobile-navigation__cta strong {
    color: #fff;
    font-size: 13px;
}

.mobile-navigation__cta > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px 6px 11px 6px;
    font-size: 10px;
    transition: transform 300ms var(--ease-out), border-radius 300ms var(--ease-out);
}

.mobile-navigation__cta:hover,
.mobile-navigation__cta:focus-visible {
    color: var(--primary);
    background: #fff;
    border-color: var(--primary);
    border-radius: 9px 17px 9px 17px;
    box-shadow: 0 14px 30px rgba(5, 48, 41, 0.11);
    transform: translateY(-2px);
}

.mobile-navigation__cta:hover small,
.mobile-navigation__cta:focus-visible small,
.mobile-navigation__cta:hover strong,
.mobile-navigation__cta:focus-visible strong {
    color: var(--primary);
}

.mobile-navigation__cta:hover > i,
.mobile-navigation__cta:focus-visible > i {
    border-radius: 6px 11px 6px 11px;
    transform: translateX(-3px);
}

.mobile-navigation__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.mobile-navigation__contact > a,
.mobile-navigation__contact > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: inherit;
}

.mobile-navigation__contact i {
    color: var(--secondary-strong);
}

.mobile-navigation__contact small,
.mobile-navigation__contact bdi {
    display: block;
}

.mobile-navigation__contact small {
    color: var(--text-muted);
    font-size: 12px;
}

.mobile-navigation__contact bdi {
    color: var(--primary);
    font-family: Tahoma, sans-serif;
    font-size: 12px;
}

@keyframes submenuReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: clamp(36px, 5vw, 72px);
    background: #fff;
}

.home-hero__stage {
    min-height: clamp(560px, 53vw, 720px);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #eeeae0;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    overflow: hidden;
    background: #eeeae0;
}

.home-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: rgba(5, 48, 41, 0.055);
}

.home-hero__media picture,
.home-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-hero__media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.035);
    animation: homeHeroImageReveal 900ms var(--ease-out) both,
               homeHeroImageDrift 16s ease-in-out 900ms infinite alternate;
}

.home-hero__media-accent {
    position: absolute;
    z-index: 2;
    display: block;
    pointer-events: none;
    border: 1px solid rgba(174, 145, 85, 0.46);
    border-radius: 50%;
}

.home-hero__media-accent--one {
    width: 156px;
    height: 156px;
    top: 9%;
    left: 5%;
    animation: homeHeroAccentFloat 8s ease-in-out infinite alternate;
}

.home-hero__media-accent--two {
    width: 44px;
    height: 44px;
    right: 7%;
    bottom: 11%;
    background: rgba(174, 145, 85, 0.2);
    border-color: rgba(174, 145, 85, 0.18);
    animation: homeHeroAccentFloat 6s ease-in-out 1s infinite alternate-reverse;
}

.home-hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home-hero__card {
    width: min(620px, 52vw);
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 4vw, 52px);
    color: var(--text);
    background: rgba(255, 255, 255, 0.965);
    border: 1px solid rgba(5, 48, 41, 0.11);
    border-radius: 36px 15px 36px 15px;
    box-shadow: 0 30px 80px rgba(5, 48, 41, 0.2),
                0 8px 26px rgba(5, 48, 41, 0.08);
    transform-origin: right center;
    animation: homeHeroCardReveal 820ms 120ms var(--ease-out) both;
    transition: border-radius 480ms var(--ease-out),
                box-shadow 480ms ease,
                transform 480ms var(--ease-out);
}

.home-hero__card::before {
    width: 5px;
    height: 98px;
    position: absolute;
    top: 44px;
    right: 0;
    content: "";
    background: var(--secondary);
    border-radius: 4px 0 0 4px;
    transition: height 480ms var(--ease-out), background 320ms ease;
}

.home-hero__card::after {
    width: 180px;
    height: 180px;
    position: absolute;
    left: -112px;
    bottom: -122px;
    content: "";
    pointer-events: none;
    background: rgba(174, 145, 85, 0.09);
    border: 1px solid rgba(174, 145, 85, 0.18);
    border-radius: 50%;
    transition: transform 620ms var(--ease-out);
}

.home-hero__card:hover {
    border-radius: 15px 36px 15px 36px;
    box-shadow: 0 36px 92px rgba(5, 48, 41, 0.23),
                0 10px 30px rgba(5, 48, 41, 0.1);
    transform: translateY(-4px);
}

.home-hero__card:hover::before {
    height: 132px;
    background: var(--primary);
}

.home-hero__card:hover::after {
    transform: translate(18px, -14px) scale(1.08);
}

.home-hero__heading,
.home-hero__body {
    position: relative;
    z-index: 2;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--secondary-strong);
    direction: ltr;
    font-family: Tahoma, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.home-hero__eyebrow i {
    width: 8px;
    height: 8px;
    display: block;
    background: var(--secondary);
    border: 3px solid rgba(174, 145, 85, 0.22);
    border-radius: 50%;
    box-sizing: content-box;
    animation: homeHeroDotPulse 2.5s ease-in-out infinite;
}

.home-hero h1 {
    max-width: 560px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: bold;
    line-height: 1.42;
    letter-spacing: -1.4px;
}

.home-hero__body {
    margin-top: 22px;
}

.home-hero__body p {
    max-width: 540px;
    margin: 0;
    color: #505d59;
    font-size: clamp(14px, 1.18vw, 17px);
    line-height: 2.05;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-hero__button {
    min-height: 54px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 16px 8px 16px 8px;
    font-size: 13px;
    font-weight: 700;
    transition: color 240ms ease,
                background 240ms ease,
                border-color 240ms ease,
                border-radius 360ms var(--ease-out),
                transform 360ms var(--ease-out),
                box-shadow 360ms ease;
}

.home-hero__button::before {
    width: 34px;
    height: 145%;
    position: absolute;
    top: -22%;
    right: -64px;
    content: "";
    pointer-events: none;
    background: rgba(255, 255, 255, 0.24);
    filter: blur(5px);
    transform: skewX(-18deg);
    transition: right 680ms var(--ease-out);
}

.home-hero__button i,
.home-hero__button span {
    position: relative;
    z-index: 2;
}

.home-hero__button i {
    font-size: 13px;
    transition: transform 320ms var(--ease-out);
}

.home-hero__button--primary {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(5, 48, 41, 0.18);
}

.home-hero__button--secondary {
    color: var(--primary);
    background: #fff;
    border-color: rgba(5, 48, 41, 0.26);
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
    border-radius: 8px 16px 8px 16px;
    transform: translateY(-3px);
}

.home-hero__button:hover::before,
.home-hero__button:focus-visible::before {
    right: calc(100% + 20px);
}

.home-hero__button--primary:hover,
.home-hero__button--primary:focus-visible {
    color: var(--primary);
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 16px 34px rgba(174, 145, 85, 0.28);
}

.home-hero__button--secondary:hover,
.home-hero__button--secondary:focus-visible {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 14px 30px rgba(5, 48, 41, 0.17);
}

.home-hero__button--primary:hover i,
.home-hero__button--primary:focus-visible i {
    transform: rotate(-10deg) scale(1.08);
}

.home-hero__button--secondary:hover i,
.home-hero__button--secondary:focus-visible i {
    transform: translateX(-4px);
}

@keyframes homeHeroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.09);
    }
    to {
        opacity: 1;
        transform: scale(1.035);
    }
}

@keyframes homeHeroImageDrift {
    from {
        transform: scale(1.035) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.07) translate3d(-0.45%, -0.35%, 0);
    }
}

@keyframes homeHeroCardReveal {
    from {
        opacity: 0;
        transform: translate3d(48px, 18px, 0) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes homeHeroAccentFloat {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    to {
        transform: translate3d(10px, -14px, 0) rotate(8deg);
    }
}

@keyframes homeHeroDotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(174, 145, 85, 0.2);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(174, 145, 85, 0);
    }
}

.page-header {
    padding: 70px 0 36px;
    background: #eef3f1;
}

.page-header h1 {
    margin: 0;
    color: var(--primary);
}

@media (max-width: 1180px) {
    .site-brand__copy small {
        display: none;
    }

    .desktop-nav__link {
        padding-inline: 10px;
        font-size: 12px;
    }

    .button--header {
        padding-inline: 13px 9px;
    }
}

@media (max-width: 1020px) {
    .site-header__utility {
        display: none;
    }

    .site-header__container {
        padding-block: 10px;
    }

    .site-header__shell,
    .site-header.is-scrolled .site-header__shell {
        min-height: 68px;
        padding: 8px 10px 8px 12px;
        border-radius: 21px;
    }

    .desktop-nav,
    .button--header {
        display: none;
    }

    .site-header__actions {
        margin-inline-start: auto;
    }

    .site-header__phone-button,
    .mobile-menu-toggle {
        display: grid;
    }
}

@media (max-width: 900px) {
    .home-hero__card {
        width: min(590px, 66vw);
        padding: 34px;
    }

    .home-hero h1 {
        font-size: clamp(28px, 4.4vw, 40px);
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding-bottom: 0;
    }

    .home-hero__stage {
        min-height: 0;
        display: grid;
        align-items: stretch;
        overflow: visible;
        background: #fff;
    }

    .home-hero__container,
    .home-hero__card {
        display: contents;
    }

    .home-hero__heading {
        order: 1;
        padding: 28px 20px 22px;
        background: #fff;
        animation: homeHeroMobileTextReveal 620ms var(--ease-out) both;
    }

    .home-hero__eyebrow {
        display: none;
    }

    .home-hero h1 {
        max-width: 620px;
        margin: 0 auto;
        font-size: clamp(24px, 6.6vw, 33px);
        line-height: 1.55;
        letter-spacing: -0.7px;
        text-align: center;
    }

    .home-hero__media {
        height: clamp(280px, 76vw, 430px);
        position: relative;
        order: 2;
        border-block: 1px solid rgba(5, 48, 41, 0.08);
    }

    .home-hero__media img {
        object-position: center;
        animation: homeHeroImageReveal 760ms 80ms var(--ease-out) both;
    }

    .home-hero__media-accent--one {
        width: 98px;
        height: 98px;
        top: 8%;
        left: 5%;
    }

    .home-hero__media-accent--two {
        right: 6%;
        bottom: 8%;
    }

    .home-hero__body {
        order: 3;
        margin: 0;
        padding: 23px 20px 38px;
        background: #fff;
        animation: homeHeroMobileTextReveal 650ms 140ms var(--ease-out) both;
    }

    .home-hero__body p {
        max-width: 620px;
        margin-inline: auto;
        color: #53605c;
        font-size: 14px;
        line-height: 2;
        text-align: center;
    }

    .home-hero__actions {
        max-width: 620px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 24px auto 0;
    }

    .home-hero__button {
        min-height: 52px;
        padding-inline: 14px;
        font-size: 12px;
    }

    .home-hero__card::before,
    .home-hero__card::after {
        display: none;
    }

    @keyframes homeHeroMobileTextReveal {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 560px) {
    .home-hero__heading {
        padding: 24px 14px 18px;
    }

    .home-hero__body {
        padding: 20px 14px 32px;
    }

    .home-hero__actions {
        gap: 8px;
    }

    .home-hero__button {
        min-height: 50px;
        gap: 8px;
        padding-inline: 10px;
        border-radius: 14px 7px 14px 7px;
        font-size: 11px;
    }

    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .site-header__container {
        padding-block: 8px;
    }

    .site-header__shell,
    .site-header.is-scrolled .site-header__shell {
        min-height: 62px;
        gap: 10px;
        padding: 7px 8px 7px 10px;
        border-radius: 18px;
    }

    .site-brand {
        gap: 8px;
    }

    .site-brand__mark {
        width: 44px;
        height: 44px;
        border-radius: 15px 7px 15px 7px;
    }

    .site-brand__letter {
        font-size: 22px;
    }

    .site-brand__copy strong {
        font-size: 16px;
    }

    .site-header__phone-button,
    .mobile-menu-toggle {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .mobile-navigation__panel {
        width: min(92vw, 390px);
        border-radius: 28px 0 0 28px;
    }

    .mobile-navigation__head {
        min-height: 82px;
        padding-inline: 16px;
    }

    .mobile-navigation__intro {
        padding-inline: 18px;
    }

}

@media (max-width: 390px) {
    .home-hero__actions {
        grid-template-columns: 1fr;
    }

    .home-hero__button {
        min-height: 52px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================================================
   Home Hero - Typography Refinement
================================================== */
.home-page .home-hero h1 {
    font-size: clamp(22px, 2.35vw, 26px);
    line-height: 1.5;
    letter-spacing: -0.8px;
}

.home-page .home-hero__body p {
    font-size: clamp(14.5px, 1.15vw, 16.5px);
    text-align: justify;
    text-align-last: right;
}

@media (max-width: 991.98px) {
    .home-page .home-hero h1 {
        font-size: clamp(24px, 3.8vw, 32px);
    }
}

@media (max-width: 767.98px) {
    .home-page .home-hero h1 {
        max-width: 560px;
        font-size: clamp(21px, 5.4vw, 27px);
        line-height: 1.65;
        letter-spacing: -0.4px;
    }

    .home-page .home-hero__body p {
        font-size: 14.5px;
        line-height: 2.05;
        text-align: justify;
        text-align-last: right;
    }
}

/* ==================================================
   Shared Page Header
================================================== */
.page-header {
    position: relative;
    padding: 0 0 clamp(22px, 2.6vw, 34px);
    background: #fff;
}

.page-header__frame {
    min-height: clamp(270px, 25vw, 360px);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--primary);
}

.page-header__background {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -3;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    animation: pageHeaderImageBreath 16s ease-in-out infinite alternate;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(4, 24, 21, .25) 0%, rgba(4, 24, 21, .32) 62%, rgba(4, 24, 21, .18) 100%),
        linear-gradient(90deg, rgba(5, 48, 41, .06), rgba(5, 48, 41, .18));
}

.page-header__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: clamp(30px, 3.7vw, 50px);
    padding-bottom: clamp(84px, 8vw, 112px);
    color: #fff;
    text-align: center;
}

.page-header__breadcrumb {
    margin-bottom: 12px;
}

.page-header__breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-header__breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .84);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .2);
}

.page-header__breadcrumb li:not(:last-child)::after {
    content: "\f104";
    color: var(--secondary);
    font-family: "Font Awesome 7 Free";
    font-size: 12px;
    font-weight: 900;
}

.page-header__breadcrumb a {
    color: rgba(255, 255, 255, .9);
    transition: color 220ms ease, transform 220ms ease;
}

.page-header__breadcrumb a:hover,
.page-header__breadcrumb a:focus-visible {
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.page-header__breadcrumb [aria-current="page"] span {
    color: #fff;
    font-weight: 700;
}

.page-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 2.75vw, 39px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -.5px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .24);
}

.page-header__description {
    max-width: 760px;
    margin: 9px auto 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14.5px;
    font-weight: 450;
    line-height: 2;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .26);
}

.page-header__mist {
    height: clamp(105px, 10.5vw, 148px);
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    z-index: 5;
    overflow: hidden;
    pointer-events: none;
}

.page-header__mist::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 44%;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 80%);
}

.page-header__mist-layer {
    width: 150%;
    height: 100%;
    position: absolute;
    right: -25%;
    bottom: -2px;
    background-image: var(--page-header-cloud);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
    will-change: transform;
}

.page-header__mist-layer--back {
    opacity: .55;
    filter: blur(1.1px);
    transform: translate3d(-2%, 12px, 0) scale(1.06);
    animation: pageHeaderMistBack 17s linear infinite alternate;
}

.page-header__mist-layer--front {
    opacity: .92;
    transform: translate3d(1%, 20px, 0) scale(1.08);
    animation: pageHeaderMistFront 12s linear infinite alternate-reverse;
}

@keyframes pageHeaderMistBack {
    from { transform: translate3d(-5%, 12px, 0) scale(1.06); }
    to { transform: translate3d(5%, 4px, 0) scale(1.09); }
}

@keyframes pageHeaderMistFront {
    from { transform: translate3d(-4%, 20px, 0) scale(1.08); }
    to { transform: translate3d(4%, 10px, 0) scale(1.11); }
}

@keyframes pageHeaderImageBreath {
    from { transform: scale(1.015); }
    to { transform: scale(1.045); }
}

@media (max-width: 991.98px) {
    .page-header__frame {
        min-height: 315px;
    }

    .page-header__content {
        padding-top: 40px;
        padding-bottom: 102px;
    }

    .page-header__description {
        max-width: 680px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding-bottom: 20px;
    }

    .page-header__frame {
        min-height: 270px;
    }

    .page-header__background {
        object-position: 58% center;
    }

    .page-header__content {
        padding-top: 30px;
        padding-bottom: 86px;
    }

    .page-header__breadcrumb {
        margin-bottom: 8px;
    }

    .page-header__breadcrumb li {
        font-size: 13.5px;
    }

    .page-header h1 {
        font-size: clamp(24px, 6.7vw, 29px);
    }

    .page-header__description {
        max-width: 92%;
        margin-top: 7px;
        font-size: 13.5px;
        line-height: 1.9;
    }

    .page-header__mist {
        height: 100px;
    }

    /* Keep mist movement visibly alive on mobile as well. */
    .page-header__mist-layer--back {
        animation-duration: 14s;
    }

    .page-header__mist-layer--front {
        animation-duration: 9s;
    }
}

@media (max-width: 420px) {
    .page-header__frame {
        min-height: 250px;
    }

    .page-header__content {
        padding-inline: 18px;
        padding-top: 26px;
        padding-bottom: 80px;
    }

    .page-header__breadcrumb li {
        font-size: 13px;
    }

    .page-header__description {
        max-width: 100%;
        font-size: 13px;
    }

    .page-header__mist {
        height: 92px;
    }

    .page-header__mist-layer--back {
        animation-duration: 13s;
    }

    .page-header__mist-layer--front {
        animation-duration: 8.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-header__background,
    .page-header__mist-layer {
        animation: none;
    }
}
/* /Shared Page Header */
