:root {
    --gold: #f7b800;
    --gold-soft: #ffd85d;
    --navy: #0a3a66;
    --ink: #111111;
    --muted: #777777;
    --white: #ffffff;
    --line: #ebebeb;
    --bg-soft: #f2f2f2;
    --footer: #090909;
    --content: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Aptos, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img,
iframe {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 2rem), var(--content));
    margin: 0 auto;
}

.loading,
.empty {
    padding: 3rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
}

.site-header .container {
    width: 100%;
    max-width: none;
    padding: 0 1rem;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 0.6rem;
    min-height: 92px;
}

.brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.6rem 0.35rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #222222;
    white-space: nowrap;
}

.nav-item__arrow {
    margin-left: 0.2rem;
    font-size: 1rem;
    line-height: 1;
    color: currentColor;
    font-variation-settings:
        "FILL" 1,
        "wght" 300,
        "GRAD" 0,
        "opsz" 20;
}

.nav-item:first-child > a,
.nav-item > a:hover {
    color: var(--gold);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 0;
    min-width: 216px;
    padding: 0.8rem 0;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: #212121;
}

.nav-dropdown a:hover {
    background: #fafafa;
    color: var(--gold);
}

.header-tools {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-search {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-search:hover {
    color: var(--gold);
    background: #fafafa;
}

.header-search .material-symbols-outlined {
    font-size: 1.35rem;
    font-variation-settings:
        "FILL" 1,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
}

.search-popover {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    width: 220px;
    padding: 0.85rem;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: 45;
    animation: search-popover-in 0.22s ease;
}

.search-popover__field {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    background: #f6f6f6;
}

.search-popover__field input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0.8rem 0.9rem;
    color: var(--ink);
    outline: none;
}

.search-popover__field button {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.search-popover__field button:hover {
    color: var(--gold);
}

.search-popover__field .material-symbols-outlined {
    font-size: 1.2rem;
    font-variation-settings:
        "FILL" 1,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
}

@keyframes search-popover-in {
    from {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-banner {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-banner__media {
    position: relative;
    overflow: hidden;
}

.hero-banner__media img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transition: transform 0.1s linear;
}

.ticker-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    overflow: hidden;
}

.ticker-label {
    padding: 0.55rem 1rem 0.15rem max(1rem, calc((100vw - var(--content)) / 2 + 1rem));
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1;
}

.ticker {
    overflow: hidden;
    padding-bottom: 0.2rem;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    min-width: max-content;
    padding: 0.15rem 0 0.7rem;
    animation: ticker-move 24s linear infinite;
}

.ticker-track span {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes ticker-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    padding: 3rem 0 1.5rem;
}

.feature-cluster {
    background: #ffffff;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.service-box {
    min-height: 210px;
    padding: 1.3rem 1.5rem 1rem;
    text-align: center;
    background: #ffffff;
    border-bottom: 2px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.service-box:hover .service-box__icon {
    transform: translateY(-2px) scale(1.04);
}

.service-box__icon {
    transition: transform 0.35s ease, color 0.35s ease;
}

.service-box__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.9rem;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.service-box__icon .material-symbols-outlined {
    font-size: 46px;
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}

.service-box__icon-image {
    width: 52px;
    height: auto;
    display: block;
}

.service-box__chat-icon {
    position: relative;
    width: 58px;
    height: 38px;
    display: block;
}

.service-box__chat-bubble {
    position: absolute;
    background: var(--gold);
    border-radius: 999px;
}

.service-box__chat-bubble::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.service-box__chat-bubble--back {
    top: 2px;
    left: 1px;
    width: 29px;
    height: 22px;
}

.service-box__chat-bubble--back::after {
    left: 5px;
    bottom: -6px;
    border-top: 9px solid var(--gold);
    border-right: 9px solid transparent;
}

.service-box__chat-bubble--front {
    top: 10px;
    right: 2px;
    width: 25px;
    height: 20px;
}

.service-box__chat-bubble--front::after {
    right: 4px;
    bottom: -6px;
    border-top: 9px solid var(--gold);
    border-left: 9px solid transparent;
}

.service-box__chat-eye {
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
}

.service-box__chat-bubble--back .service-box__chat-eye--left {
    left: 9px;
}

.service-box__chat-bubble--back .service-box__chat-eye--right {
    left: 17px;
}

.service-box__chat-bubble--front .service-box__chat-eye--left {
    left: 7px;
}

.service-box__chat-bubble--front .service-box__chat-eye--right {
    left: 14px;
}

.service-box__youtube-icon {
    position: relative;
    width: 52px;
    height: 40px;
    display: block;
}

.service-box__youtube-frame {
    position: absolute;
    inset: 0;
    border: 4px solid var(--gold);
    border-radius: 7px;
    background: #ffffff;
}

.service-box__youtube-screen {
    position: absolute;
    inset: 6px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: #ffffff;
}

.service-box__youtube-play {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--gold);
    margin-left: 2px;
}

.service-box h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.service-box p {
    display: none;
}

.service-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 38px;
    padding: 0.7rem 1rem;
    background: var(--gold);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 0 var(--navy);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.service-box__button:hover {
    transform: translateY(-2px);
    background: var(--navy);
    box-shadow: inset 180px 0 0 0 var(--navy);
    color: #ffffff;
}

.levels-section {
    padding: 2.2rem 0 0;
}

.levels-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    --level-base-size: 64px;
    --level-outer-size: 48px;
    --level-inner-size: 36px;
    --level-shadow: 0 18px 38px rgba(247, 184, 0, 0.12);
    --level-filter: saturate(1);
}

.level-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.level-step__number {
    position: relative;
    z-index: 2;
    width: var(--level-base-size);
    height: var(--level-base-size);
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff4cf;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--level-shadow);
    filter: var(--level-filter);
    transition: width 0.25s ease, height 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.level-step__number::before,
.level-step__number::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.level-step__number::before {
    width: var(--level-outer-size);
    height: var(--level-outer-size);
    background: #ffe08a;
}

.level-step__number::after {
    width: var(--level-inner-size);
    height: var(--level-inner-size);
    background: var(--gold);
    box-shadow: 0 0 0 1px rgba(247, 184, 0, 0.08);
}

.level-step__number > span {
    position: relative;
    z-index: 3;
    display: inline-block;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
}

.level-step__line {
    position: absolute;
    top: calc(var(--level-base-size) / 2);
    right: -8%;
    width: 24%;
    height: 1px;
    background: #d8d8d8;
    pointer-events: none;
}

.level-step:hover {
    --level-base-size: 72px;
    --level-outer-size: 58px;
    --level-inner-size: 40px;
    --level-shadow: 0 24px 48px rgba(247, 184, 0, 0.16);
    --level-filter: saturate(1.04);
}

.level-step:focus-within {
    --level-base-size: 72px;
    --level-outer-size: 58px;
    --level-inner-size: 40px;
    --level-shadow: 0 24px 48px rgba(247, 184, 0, 0.16);
    --level-filter: saturate(1.04);
}

.level-step__number::before,
.level-step__number::after {
    transition: width 0.24s ease, height 0.24s ease;
}

.level-step:active .level-step__number::before,
.level-step__number:active::before {
    width: 56px;
    height: 56px;
}

.level-step:active .level-step__number::after,
.level-step__number:active::after {
    width: 34px;
    height: 34px;
}

.level-step:active .level-step__number,
.level-step__number:active {
    width: 68px;
    height: 68px;
}

.level-step h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.level-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 0.96rem;
}

.social-panel h2 {
    margin: 0 0 1.1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
}

.social-panel iframe {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--line);
}

.quote-band {
    padding: 2rem 0 3.5rem;
    background: #ffffff;
}

.quote-band__inner {
    display: flex;
    justify-content: center;
}

.quote-band h2 {
    width: min(100%, 760px);
    margin: 0;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    font-weight: 300;
    line-height: 1.26;
}

.tabs-shell {
    padding: 4rem 0;
    background: #efefef;
}

.tabs-shell__inner {
    background: #ffffff;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #e5e5e5;
}

.tabs-nav__button {
    min-height: 88px;
    border: 0;
    background: #ffffff;
    color: #171717;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.tabs-nav__button.is-active {
    color: var(--gold);
}

.tabs-nav__button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--gold);
}

.tabs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding: 3rem 2rem 2.5rem;
    animation: tabs-content-rise 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.policy-card {
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    animation: policy-card-rise 0.54s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.policy-card:nth-child(1) {
    animation-delay: 0.04s;
}

.policy-card:nth-child(2) {
    animation-delay: 0.1s;
}

.policy-card:nth-child(3) {
    animation-delay: 0.16s;
}

.policy-card:nth-child(4) {
    animation-delay: 0.22s;
}

.policy-card__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.2rem;
    display: grid;
    place-items: center;
}

.policy-card__icon-image {
    width: 58px;
    height: auto;
    display: block;
}

.policy-card__icon-symbol {
    font-size: 56px;
    line-height: 1;
    color: var(--gold);
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}

.policy-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.policy-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

@keyframes tabs-content-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes policy-card-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.documents-highlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 3rem 0;
    align-items: start;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

.documents-copy h2,
.news-main__body h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.documents-copy p,
.news-main__body p,
.news-mini p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.documents-list {
    display: grid;
    gap: 0.9rem;
}

.documents-list a {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    font-weight: 700;
    transition: 0.2s ease;
}

.documents-list a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.news-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    padding: 1rem 0 3rem;
}

.news-main {
    border: 1px solid var(--line);
    background: #ffffff;
}

.news-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.news-main__body {
    padding: 1.5rem;
}

.news-list {
    display: grid;
    gap: 1rem;
}

.news-mini {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    border: 1px solid var(--line);
    padding: 0.85rem;
}

.news-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.news-mini h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.outline-link,
.detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    margin-top: 1rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
}

.visit-section {
    padding-top: 1rem;
}

.visit-section h2 {
    margin: 0 0 1rem;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 300;
}

.map-shell iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.detail-shell {
    padding: 3rem 0 4rem;
}

.post-view img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    margin: 1.4rem 0;
}

.detail-excerpt,
.post-view__content {
    color: var(--muted);
    line-height: 1.85;
}

.site-footer {
    background: var(--footer);
    color: #ffffff;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 1rem;
}

.footer-menu a {
    font-size: 0.95rem;
}

.footer-copy {
    padding: 1.5rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 46px;
    height: 46px;
    border: 0;
    background: #f3f3f3;
    color: #555555;
    font-size: 1.35rem;
    cursor: pointer;
    z-index: 30;
}

@media (max-width: 1180px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .service-cards,
    .tabs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-panel iframe {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .site-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 1rem 0;
    }

    .nav {
        justify-content: center;
    }

    .header-tools {
        width: 100%;
        justify-content: center;
    }

    .search-popover {
        right: 50%;
        transform: translateX(50%);
    }

    .ticker-label {
        padding: 0.8rem 1rem 0 1rem;
    }

    .service-cards,
    .levels-track,
    .tabs-grid {
        grid-template-columns: 1fr;
    }

    .level-step__line {
        display: none;
    }

    .tabs-nav {
        grid-template-columns: 1fr;
    }

    .news-mini {
        grid-template-columns: 1fr;
    }
}
