:root {
    --wi-bg: #f5f7fb;
    --wi-surface: #ffffff;
    --wi-surface-soft: #eef3f9;
    --wi-text: #142033;
    --wi-muted: #607087;
    --wi-line: #dbe3ed;
    --wi-brand: #2457d6;
    --wi-brand-dark: #173e9f;
    --wi-accent: #0e9f8a;
    --wi-shadow: 0 18px 50px rgba(20, 32, 51, 0.08);
    --wi-radius: 24px;
    --wi-page-gutter: clamp(20px, 4vw, 72px);
}

html {
    scroll-behavior: smooth;
}

body.wi-site {
    margin: 0;
    background: var(--wi-bg);
    color: var(--wi-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.wi-site *,
.wi-site *::before,
.wi-site *::after {
    box-sizing: border-box;
}

.wi-site a {
    color: inherit;
}

.wi-site__shell {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.wi-site__main {
    flex: 1 0 auto;
}

.wi-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--wi-page-gutter);
    padding-left: var(--wi-page-gutter);
}

.wi-header {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid rgba(219, 227, 237, 0.92);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.cms-editor-page .wi-header {
    top: 4.75rem;
}

.wi-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.wi-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.wi-brand__logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: 44px;
    object-fit: contain;
}

.wi-brand__mark {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--wi-brand), var(--wi-brand-dark));
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(36, 87, 214, 0.22);
}

.wi-brand__text {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.wi-brand__name {
    overflow: hidden;
    max-width: 290px;
    color: #0f1b2d;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wi-brand__caption {
    color: var(--wi-muted);
    font-size: 12px;
    line-height: 1.2;
}

.wi-nav--desktop {
    display: block;
}

.wi-nav__list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.wi-nav__item {
    position: relative;
}

.wi-nav__item--has-children::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 10px;
    content: "";
}

.wi-nav__link {
    display: inline-flex;
    min-height: 42px;
    padding: 0 14px;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    color: #41516a;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: 0.2s ease;
}

.wi-nav__link:hover,
.wi-nav__link.is-active {
    background: #edf3ff;
    color: var(--wi-brand-dark);
}

.wi-nav__arrow {
    color: #8492a6;
    font-size: 12px;
}

.wi-nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: 250px;
    padding: 8px;
    border: 1px solid var(--wi-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--wi-shadow);
}

.wi-nav__item--has-children:hover .wi-nav__dropdown,
.wi-nav__item--has-children:focus-within .wi-nav__dropdown {
    display: grid;
}

.wi-nav__dropdown-link {
    padding: 10px 12px;
    border-radius: 10px;
    color: #41516a;
    font-size: 14px;
    text-decoration: none;
}

.wi-nav__dropdown-link:hover {
    background: var(--wi-surface-soft);
    color: var(--wi-brand-dark);
}

.wi-mobile-menu {
    display: none;
}

.wi-footer {
    border-top: 1px solid var(--wi-line);
    background: #101a2b;
    color: #cbd5e1;
}

.wi-footer__inner {
    display: grid;
    min-height: 132px;
    padding-top: 32px;
    padding-bottom: 32px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 32px;
}

.wi-footer__name {
    color: #ffffff;
    font-weight: 750;
}

.wi-footer__caption,
.wi-footer__copyright {
    margin-top: 5px;
    color: #8492a6;
    font-size: 13px;
}

.wi-footer__menu {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
}

.wi-footer__link {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wi-footer__link:hover {
    color: #ffffff;
}

.wi-page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--wi-line);
    background: #ffffff;
}

.wi-page-hero::after {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(36, 87, 214, 0.12), rgba(36, 87, 214, 0));
    content: "";
    pointer-events: none;
}

.wi-page-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    padding-bottom: 64px;
}

.wi-page-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid #cbd9fb;
    border-radius: 999px;
    background: #f3f7ff;
    color: var(--wi-brand-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wi-page-title {
    max-width: 900px;
    margin: 18px 0 0;
    color: #0e192a;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.wi-page-lead {
    max-width: 800px;
    margin-top: 22px;
    color: #52627a;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.wi-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 12%, rgba(71, 128, 255, 0.35), transparent 32%),
        radial-gradient(circle at 8% 90%, rgba(14, 159, 138, 0.22), transparent 34%),
        linear-gradient(135deg, #0c1930 0%, #173b7b 55%, #153568 100%);
    color: #ffffff;
}

.wi-home-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent);
}

.wi-home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 600px;
    padding-top: 92px;
    padding-bottom: 92px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 72px;
}

.wi-home-hero__eyebrow {
    color: #9dbcfb;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wi-home-hero__title {
    max-width: 880px;
    margin: 18px 0 0;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 770;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.wi-home-hero__lead {
    max-width: 760px;
    margin-top: 26px;
    color: #d5e2f7;
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.62;
}

.wi-home-hero__visual {
    position: relative;
    min-height: 330px;
}

.wi-home-hero__panel {
    position: absolute;
    inset: 30px 0 0 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.wi-home-hero__panel-head {
    display: flex;
    align-items: center;
    gap: 7px;
}

.wi-home-hero__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.wi-home-hero__lines {
    display: grid;
    margin-top: 34px;
    gap: 14px;
}

.wi-home-hero__line {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.wi-home-hero__line:nth-child(1) {
    width: 72%;
    height: 28px;
    background: rgba(255, 255, 255, 0.28);
}

.wi-home-hero__line:nth-child(2) {
    width: 94%;
}

.wi-home-hero__line:nth-child(3) {
    width: 83%;
}

.wi-home-hero__cards {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wi-home-hero__card {
    height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.wi-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.wi-section--white {
    background: #ffffff;
}

.wi-section--soft {
    background: var(--wi-bg);
}

.wi-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.wi-content-layout.has-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
}

.wi-content-layout.has-left {
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
}

.wi-content-layout.has-left.has-right {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) minmax(250px, 310px);
}

.wi-content-stack {
    display: grid;
    min-width: 0;
    gap: 24px;
}

.wi-content-layout > *,
.wi-content-stack > *,
.cms-drop-zone,
[data-cms-drop-zone],
.wi-extra-section {
    min-width: 0;
    max-width: 100%;
}

.cms-zone-editor-header {
    min-width: 0;
}

.cms-zone-editor-header .cms-editable-region__button {
    max-width: 100%;
    white-space: normal;
}

.cms-editor-page .wi-content-layout > aside .cms-zone-editor-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    padding-right: 0;
    padding-left: 0;
}

.wi-card {
    border: 1px solid var(--wi-line);
    border-radius: var(--wi-radius);
    background: var(--wi-surface);
    box-shadow: 0 12px 36px rgba(20, 32, 51, 0.055);
}

.wi-card--content {
    padding: clamp(26px, 4vw, 48px);
}

.wi-card--aside {
    padding: 26px;
}

.wi-aside-title {
    margin: 0;
    color: #142033;
    font-size: 19px;
    font-weight: 750;
}

.wi-aside-text {
    margin-top: 14px;
    color: var(--wi-muted);
    font-size: 14px;
    line-height: 1.75;
    white-space: pre-line;
}

.wi-content {
    color: #34445b;
    font-size: 17px;
    line-height: 1.78;
}

.wi-content > :first-child {
    margin-top: 0;
}

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

.wi-content h2,
.wi-content h3,
.wi-content h4 {
    color: #111d30;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.wi-content h2 {
    margin: 1.8em 0 0.7em;
    font-size: clamp(26px, 3vw, 36px);
}

.wi-content h3 {
    margin: 1.6em 0 0.6em;
    font-size: 24px;
}

.wi-content p,
.wi-content ul,
.wi-content ol,
.wi-content blockquote,
.wi-content table {
    margin-top: 1em;
    margin-bottom: 1em;
}

.wi-content ul,
.wi-content ol {
    padding-left: 1.5em;
}

.wi-content ul {
    list-style: disc;
}

.wi-content ol {
    list-style: decimal;
}

.wi-content ul ul {
    list-style: circle;
}

.wi-content ul ul ul {
    list-style: square;
}

.wi-content ol ol {
    list-style: lower-alpha;
}

.wi-content ol ol ol {
    list-style: lower-roman;
}

.wi-content li + li {
    margin-top: 0.35em;
}

.wi-content li > ul,
.wi-content li > ol {
    margin-top: 0.35em;
    margin-bottom: 0.35em;
}

.wi-content a {
    color: var(--wi-brand);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.wi-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.wi-content blockquote {
    margin-left: 0;
    padding: 18px 22px;
    border-left: 4px solid var(--wi-brand);
    border-radius: 0 14px 14px 0;
    background: #f0f5ff;
}

.wi-content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}

.wi-content th,
.wi-content td {
    padding: 12px 14px;
    border: 1px solid var(--wi-line);
    text-align: left;
}

.wi-content th {
    background: var(--wi-surface-soft);
    color: #20314b;
}

.wi-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.wi-zone-grid > .cms-extra-section--form_block,
.wi-zone-grid > .cms-extra-section--gallery_block,
.wi-zone-grid > .cms-extra-section--news_block,
.wi-zone-grid > .cms-extra-section--banner_link,
.wi-zone-grid > .cms-extra-section--cta_block {
    grid-column: 1 / -1;
}

.wi-extra-section {
    height: 100%;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--wi-line);
    border-radius: var(--wi-radius);
    background: var(--wi-surface);
    box-shadow: 0 12px 34px rgba(20, 32, 51, 0.055);
}

.wi-section-contents__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    gap: 24px;
}

.wi-section-contents__grid.has-title {
    margin-top: 24px;
}

.wi-section-contents__grid.has-two-columns {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.wi-section-contents__group {
    min-width: 0;
}

.wi-section-contents__group-title {
    margin: 0;
    color: #111d30;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.wi-section-contents__list {
    display: grid;
    min-width: 0;
    margin-top: 24px;
    gap: 12px;
}

.wi-section-contents__item {
    display: flex;
    min-width: 0;
    padding: 16px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--wi-line);
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.wi-section-contents__item:hover {
    border-color: #9db9f4;
    background: #f3f7ff;
}

.wi-section-contents__item-body {
    display: block;
    min-width: 0;
}

.wi-section-contents__item-title {
    display: block;
    color: #142033;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.wi-section-contents__description {
    display: block;
    margin-top: 4px;
    color: var(--wi-muted);
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.wi-section-contents__arrow {
    flex: 0 0 auto;
    color: var(--wi-brand);
    font-size: 20px;
    transition: transform 0.2s ease;
}

.wi-section-contents__item:hover .wi-section-contents__arrow {
    transform: translateX(3px);
}

.wi-content-layout > aside .wi-extra-section--section_contents {
    padding: 24px;
}

.wi-content-layout > aside .wi-section-contents__grid {
    gap: 20px;
}

.wi-content-layout > aside .wi-section-contents__group {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.wi-content-layout > aside .wi-section-contents__list {
    margin-top: 16px;
    gap: 0;
}

.wi-content-layout > aside .wi-section-contents__item {
    padding: 14px 0;
    border-width: 1px 0 0;
    border-radius: 0;
}

.wi-content-layout > aside .wi-section-contents__item:last-child {
    border-bottom-width: 1px;
}

.wi-content-layout > aside .wi-section-contents__item:hover {
    background: #f3f7ff;
}

.wi-extra-section__eyebrow {
    color: var(--wi-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wi-extra-section__title {
    margin: 0;
    color: #111d30;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.wi-extra-section__text {
    margin-top: 14px;
    color: var(--wi-muted);
    font-size: 16px;
    line-height: 1.72;
    white-space: pre-line;
}

.wi-extra-section__content--with-title {
    margin-top: 18px;
}

.wi-extra-section__content > :first-child {
    margin-top: 0;
}

.wi-extra-section__content > :last-child {
    margin-bottom: 0;
}

.wi-extra-section a.wi-extra-section__button {
    display: inline-flex;
    min-height: 46px;
    margin-top: 24px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--wi-brand);
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: 0.2s ease;
}

.wi-extra-section__button:hover {
    background: var(--wi-brand-dark);
    transform: translateY(-1px);
}

.wi-extra-section--cta_block {
    border-color: transparent;
    background: linear-gradient(135deg, #173d8f, #2457d6);
    color: #ffffff;
}

.wi-extra-section--cta_block .wi-extra-section__title,
.wi-extra-section--cta_block .wi-extra-section__text {
    color: #ffffff;
}

.wi-extra-section--cta_block .wi-extra-section__text {
    opacity: 0.82;
}

.wi-extra-section--cta_block a.wi-extra-section__button {
    background: #ffffff;
    color: var(--wi-brand-dark);
}

.wi-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    align-items: center;
    gap: 36px;
}

.wi-banner__image-wrap {
    overflow: hidden;
    border-radius: 18px;
    background: var(--wi-surface-soft);
}

.wi-banner__image {
    display: block;
    width: 100%;
    min-height: 220px;
    max-height: 360px;
    object-fit: cover;
}

.wi-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.wi-listing-card {
    overflow: hidden;
    border: 1px solid var(--wi-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(20, 32, 51, 0.055);
    transition: 0.2s ease;
}

.wi-listing-card:hover {
    border-color: #b8c8dd;
    box-shadow: var(--wi-shadow);
    transform: translateY(-3px);
}

.wi-listing-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.wi-listing-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--wi-surface-soft);
}

.wi-listing-card__placeholder {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    background: linear-gradient(135deg, #eaf0fa, #f7f9fc);
    color: #8290a4;
    font-size: 13px;
}

.wi-listing-card__body {
    padding: 24px;
}

.wi-listing-card__date {
    color: #7a899d;
    font-size: 13px;
}

.wi-listing-card__title {
    margin: 10px 0 0;
    color: #142033;
    font-size: 21px;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.wi-listing-card__excerpt {
    margin-top: 12px;
    color: var(--wi-muted);
    font-size: 14px;
    line-height: 1.65;
}

.wi-empty-state {
    padding: 54px 32px;
    border: 1px dashed #bdc9d8;
    border-radius: var(--wi-radius);
    background: #ffffff;
    text-align: center;
}

.wi-empty-state__title {
    margin: 0;
    color: #142033;
    font-size: 26px;
    font-weight: 750;
}

.wi-empty-state__text {
    max-width: 580px;
    margin: 12px auto 0;
    color: var(--wi-muted);
    line-height: 1.7;
}

.wi-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wi-brand);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.wi-back-link:hover {
    color: var(--wi-brand-dark);
}

.cms-drop-zone {
    min-height: 24px;
}

.cms-editor-page .cms-drop-zone {
    border: 1px dashed rgba(36, 87, 214, 0.3);
    border-radius: 20px;
}

.cms-editor-page .cms-editable-region {
    position: relative;
}

@media (max-width: 1100px) {
    .wi-nav--desktop {
        display: none;
    }

    .wi-mobile-menu {
        position: relative;
        display: block;
    }

    .wi-mobile-menu__toggle {
        display: inline-flex;
        min-height: 42px;
        padding: 0 15px;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--wi-line);
        border-radius: 12px;
        background: #ffffff;
        color: #24344e;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        list-style: none;
    }

    .wi-mobile-menu__toggle::-webkit-details-marker {
        display: none;
    }

    .wi-mobile-menu__icon,
    .wi-mobile-menu__icon::before,
    .wi-mobile-menu__icon::after {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        content: "";
    }

    .wi-mobile-menu__icon {
        position: relative;
    }

    .wi-mobile-menu__icon::before {
        position: absolute;
        top: -6px;
    }

    .wi-mobile-menu__icon::after {
        position: absolute;
        top: 6px;
    }

    .wi-mobile-menu__panel {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: grid;
        width: min(340px, calc(100vw - 40px));
        padding: 10px;
        border: 1px solid var(--wi-line);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--wi-shadow);
    }

    .wi-mobile-menu__link {
        padding: 11px 12px;
        border-radius: 10px;
        color: #2e405c;
        font-size: 14px;
        font-weight: 650;
        text-decoration: none;
    }

    .wi-mobile-menu__link:hover {
        background: var(--wi-surface-soft);
    }

    .wi-mobile-menu__link--child {
        padding-left: 28px;
        color: var(--wi-muted);
        font-weight: 500;
    }

    .wi-home-hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .wi-home-hero__visual {
        display: none;
    }

    .wi-content-layout.has-left,
    .wi-content-layout.has-right,
    .wi-content-layout.has-left.has-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --wi-page-gutter: clamp(14px, 4vw, 24px);
    }

    .wi-header__inner {
        min-height: 68px;
        gap: 14px;
    }

    .wi-brand__mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
        font-size: 18px;
    }

    .wi-brand__logo {
        max-width: 145px;
        height: 38px;
    }

    .wi-brand__name {
        max-width: 170px;
        font-size: 15px;
    }

    .wi-brand__caption {
        display: none;
    }

    .wi-home-hero__inner {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .wi-home-hero__title {
        font-size: clamp(40px, 13vw, 58px);
    }

    .wi-page-hero__inner {
        padding-top: 52px;
        padding-bottom: 46px;
    }

    .wi-page-title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .wi-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .wi-zone-grid,
    .wi-listing-grid {
        grid-template-columns: 1fr;
    }

    .wi-banner {
        grid-template-columns: 1fr;
    }

    .wi-card--content,
    .wi-extra-section {
        padding: 24px;
        border-radius: 20px;
    }

    .wi-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
