/* Template Section: section-baru */
:root {
    --ypm-primary: #0f3d2e;
    --ypm-primary-dark: #082a20;
    --ypm-primary-light: #1f5a42;
    --ypm-primary-soft: #eaf3ee;

    --ypm-accent: #c99a32;
    --ypm-accent-dark: #a77918;
    --ypm-accent-soft: #fbf3df;

    --ypm-surface: #ffffff;
    --ypm-background: #f7f8f5;
    --ypm-text: #18221d;
    --ypm-muted: #66716b;
    --ypm-border: rgba(15, 61, 46, 0.12);

    --ypm-shadow-sm: 0 8px 24px rgba(15, 61, 46, 0.08);
    --ypm-shadow-md: 0 18px 45px rgba(15, 61, 46, 0.14);

    --ypm-radius-sm: 10px;
    --ypm-radius-md: 18px;
    --ypm-radius-lg: 28px;

    --ypm-container: 1180px;
    --ypm-header-height: 78px;

    --ypm-font-heading:
        Georgia,
        "Times New Roman",
        serif;

    --ypm-font-body:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
}

body{
    padding: 0 0 0 0;
}

/* =========================================
   DASAR TEMPLATE
========================================== */

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

.ypm-site {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
    color: var(--ypm-text);
    background: var(--ypm-background);
    font-family: var(--ypm-font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.ypm-site a {
    color: inherit;
}

.ypm-site button,
.ypm-site a {
    -webkit-tap-highlight-color: transparent;
}

.ypm-site button {
    font: inherit;
}

.ypm-site svg {
    display: block;
}

.ypm-site-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--ypm-surface);
    background: var(--ypm-primary-dark);
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.ypm-site-skip-link:focus {
    transform: translateY(0);
}

/* =========================================
   HEADER
========================================== */

.ypm-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--ypm-header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.ypm-site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--ypm-border);
    box-shadow: 0 8px 28px rgba(15, 61, 46, 0.08);
}

.ypm-site-header__inner {
    width: min(calc(100% - 40px), var(--ypm-container));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   BRAND
========================================== */

.ypm-site-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ypm-primary);
    text-decoration: none;
}

.ypm-site-brand__logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
}

.ypm-site-brand__logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ypm-site-brand__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ypm-site-brand__text strong {
    font-family: var(--ypm-font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ypm-site-brand__text small {
    margin-top: 3px;
    color: var(--ypm-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* =========================================
   NAVIGASI DESKTOP
========================================== */

.ypm-site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.ypm-site-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 9px;
    color: #38433e;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

.ypm-site-nav > a:hover {
    color: var(--ypm-primary);
    background: var(--ypm-primary-soft);
}

.ypm-site-nav > a:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.32);
    outline-offset: 2px;
}

.ypm-site-nav > a.is-active:not(.ypm-site-nav__cta) {
    color: var(--ypm-primary);
    background: var(--ypm-primary-soft);
}

.ypm-site-nav > a.is-active:not(.ypm-site-nav__cta)::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 4px;
    left: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--ypm-accent);
}

.ypm-site-nav .ypm-site-nav__cta {
    min-height: 42px;
    margin-left: 8px;
    padding-right: 20px;
    padding-left: 20px;
    color: var(--ypm-surface);
    background: var(--ypm-primary);
    box-shadow: 0 8px 18px rgba(15, 61, 46, 0.16);
}

.ypm-site-nav .ypm-site-nav__cta:hover {
    color: var(--ypm-surface);
    background: var(--ypm-primary-dark);
    transform: translateY(-1px);
}

.ypm-site-nav .ypm-site-nav__cta.is-active {
    color: var(--ypm-primary-dark);
    background: var(--ypm-accent);
}

/* =========================================
   HAMBURGER
========================================== */

.ypm-site-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--ypm-border);
    border-radius: 11px;
    color: var(--ypm-primary);
    background: var(--ypm-surface);
    cursor: pointer;
    transition:
        background 160ms ease,
        border-color 160ms ease;
}

.ypm-site-menu-button:hover {
    background: var(--ypm-primary-soft);
    border-color: rgba(15, 61, 46, 0.2);
}

.ypm-site-menu-button:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.32);
    outline-offset: 2px;
}

.ypm-site-menu-button span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 200ms ease,
        opacity 160ms ease;
}

.ypm-site-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ypm-site-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.ypm-site-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   OVERLAY MENU
========================================== */

.ypm-site-menu-overlay {
    position: fixed;
    inset: var(--ypm-header-height) 0 0;
    z-index: 1090;
    visibility: hidden;
    background: rgba(3, 20, 14, 0.5);
    opacity: 0;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.ypm-site-menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

/* =========================================
   DRAWER MOBILE
========================================== */

.ypm-site-mobile-menu {
    position: fixed;
    top: var(--ypm-header-height);
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: min(390px, calc(100% - 42px));
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: var(--ypm-text);
    background: var(--ypm-surface);
    box-shadow: -24px 0 60px rgba(3, 20, 14, 0.18);
    visibility: hidden;
    transform: translateX(105%);
    transition:
        transform 240ms ease,
        visibility 240ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.ypm-site-mobile-menu.is-open {
    visibility: visible;
    transform: translateX(0);
}

.ypm-site-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ypm-border);
}

.ypm-site-mobile-menu__header > div {
    display: flex;
    flex-direction: column;
}

.ypm-site-mobile-menu__header strong {
    color: var(--ypm-primary);
    font-family: var(--ypm-font-heading);
    font-size: 21px;
}

.ypm-site-mobile-menu__header span {
    color: var(--ypm-muted);
    font-size: 12px;
}

.ypm-site-mobile-menu__close {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ypm-border);
    border-radius: 10px;
    color: var(--ypm-primary);
    background: var(--ypm-surface);
    cursor: pointer;
}

.ypm-site-mobile-menu__close:hover {
    background: var(--ypm-primary-soft);
}

.ypm-site-mobile-menu__close:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.32);
    outline-offset: 2px;
}

.ypm-site-mobile-menu__close svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.ypm-site-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 18px 0;
}

.ypm-site-mobile-menu__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 10px;
    border-bottom: 1px solid rgba(15, 61, 46, 0.07);
    border-radius: 9px;
    color: #35403a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 160ms ease,
        background 160ms ease,
        padding 160ms ease;
}

.ypm-site-mobile-menu__nav a:hover,
.ypm-site-mobile-menu__nav a.is-active {
    padding-left: 15px;
    color: var(--ypm-primary);
    background: var(--ypm-primary-soft);
}

.ypm-site-mobile-menu__nav a:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.32);
    outline-offset: 1px;
}

.ypm-site-mobile-menu__nav a > span:last-child {
    color: var(--ypm-accent-dark);
}

.ypm-site-mobile-menu__actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.ypm-site-mobile-menu__actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.ypm-site-mobile-menu__primary {
    color: var(--ypm-primary-dark);
    background: var(--ypm-accent);
}

.ypm-site-mobile-menu__primary:hover {
    background: #d7aa47;
}

.ypm-site-mobile-menu__secondary {
    color: var(--ypm-primary);
    border: 1px solid var(--ypm-border);
    background: var(--ypm-surface);
}

.ypm-site-mobile-menu__secondary:hover {
    background: var(--ypm-primary-soft);
}

/* =========================================
   AREA KONTEN
========================================== */

.ypm-site-main {
    position: relative;
    z-index: 1;
    min-height: 55vh;
    background: var(--ypm-background);
}

/* =========================================
   FOOTER
========================================== */

.ypm-site-footer {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(201, 154, 50, 0.1),
            transparent 30%
        ),
        var(--ypm-primary-dark);
}

.ypm-site-footer__main {
    width: min(calc(100% - 40px), var(--ypm-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 0.85fr;
    gap: 58px;
    padding: 70px 0 52px;
}

.ypm-site-footer__brand {
    min-width: 0;
}

.ypm-site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--ypm-surface);
    text-decoration: none;
}

.ypm-site-footer__logo img {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.ypm-site-footer__logo span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.ypm-site-footer__logo strong {
    font-family: var(--ypm-font-heading);
    font-size: 21px;
}

.ypm-site-footer__logo small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.ypm-site-footer__brand > p {
    max-width: 390px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.8;
}

.ypm-site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.ypm-site-footer__social:hover {
    color: var(--ypm-surface);
    border-color: rgba(201, 154, 50, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.ypm-site-footer__social svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ypm-site-footer__column h2 {
    margin: 0 0 19px;
    color: var(--ypm-surface);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ypm-site-footer__column address {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-style: normal;
    line-height: 1.9;
}

.ypm-site-footer__contact {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ypm-site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ypm-site-footer__contact svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 3px;
    fill: none;
    stroke: var(--ypm-accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-site-footer__contact a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ypm-site-footer__contact a:hover {
    color: var(--ypm-surface);
}

.ypm-site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.ypm-site-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.ypm-site-footer__links a:hover {
    color: var(--ypm-surface);
    transform: translateX(3px);
}

.ypm-site-footer a:focus-visible,
.ypm-site-footer button:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.5);
    outline-offset: 3px;
}

.ypm-site-footer__bottom {
    width: min(calc(100% - 40px), var(--ypm-container));
    margin: 0 auto;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.ypm-site-footer__bottom p {
    margin: 0;
}

.ypm-site-footer__bottom > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ypm-site-footer__bottom a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
}

.ypm-site-footer__bottom a:hover {
    color: var(--ypm-surface);
}

/* =========================================
   BACK TO TOP
========================================== */

.ypm-site-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--ypm-primary-dark);
    background: var(--ypm-accent);
    box-shadow: var(--ypm-shadow-md);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease,
        background 180ms ease;
}

.ypm-site-back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ypm-site-back-to-top:hover {
    background: #d9ad4d;
    transform: translateY(-2px);
}

.ypm-site-back-to-top:focus-visible {
    outline: 3px solid rgba(15, 61, 46, 0.28);
    outline-offset: 3px;
}

.ypm-site-back-to-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   TABLET DAN MOBILE
========================================== */

@media (max-width: 1080px) {
    .ypm-site-brand__text small {
        display: none;
    }

    .ypm-site-nav > a {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 12px;
    }

    .ypm-site-footer__main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .ypm-site-footer__column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 960px) {
    :root {
        --ypm-header-height: 70px;
    }

    .ypm-site-header__inner {
        width: min(calc(100% - 30px), var(--ypm-container));
    }

    .ypm-site-nav {
        display: none;
    }

    .ypm-site-menu-button {
        display: flex;
    }

    .ypm-site-brand__logo {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .ypm-site-brand__text strong {
        font-size: 17px;
    }

    .ypm-site-brand__text small {
        display: block;
    }

    .ypm-site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 42px 35px;
    }

    .ypm-site-footer__column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .ypm-site-header__inner {
        width: calc(100% - 24px);
    }

    .ypm-site-brand {
        gap: 9px;
    }

    .ypm-site-brand__logo {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .ypm-site-brand__text strong {
        font-size: 16px;
    }

    .ypm-site-brand__text small {
        max-width: 190px;
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ypm-site-mobile-menu {
        width: min(360px, calc(100% - 24px));
        padding: 20px;
    }

    .ypm-site-footer__main {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 54px 0 40px;
    }

    .ypm-site-footer__bottom {
        width: calc(100% - 32px);
        min-height: 90px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 18px 0;
    }

    .ypm-site-back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    .ypm-site-brand__text small {
        max-width: 155px;
    }

    .ypm-site-brand__text strong {
        font-size: 15px;
    }

    .ypm-site-menu-button {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }
}

/* =========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {
    .ypm-site *,
    .ypm-site *::before,
    .ypm-site *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Section: sec_1785114472796_8252f4dbc6dd9 */
/* =========================================
   HOME HERO
========================================== */

.ypm-home-hero,
.ypm-home-hero *,
.ypm-home-hero *::before,
.ypm-home-hero *::after {
    box-sizing: border-box;
}

.ypm-home-hero {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: calc(100svh - var(--ypm-header-height, 78px));
    display: flex;
    align-items: center;
    padding: clamp(72px, 8vw, 118px) 20px clamp(90px, 10vw, 140px);
    overflow: hidden;
    color: var(--ypm-text, #18221d);
    background:
        linear-gradient(115deg,
            rgba(234, 243, 238, 0.96) 0%,
            rgba(255, 255, 255, 0.98) 52%,
            rgba(251, 243, 223, 0.76) 100%);
}

.ypm-home-hero__container {
    position: relative;
    z-index: 3;
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(52px, 7vw, 96px);
}

/* =========================================
   DEKORASI LATAR
========================================== */

.ypm-home-hero__decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

.ypm-home-hero__decoration--one {
    top: -260px;
    right: -220px;
    width: 650px;
    height: 650px;
    background:
        radial-gradient(circle,
            rgba(15, 61, 46, 0.13) 0%,
            rgba(15, 61, 46, 0.05) 45%,
            transparent 70%);
}

.ypm-home-hero__decoration--two {
    bottom: -260px;
    left: -260px;
    width: 620px;
    height: 620px;
    background:
        radial-gradient(circle,
            rgba(201, 154, 50, 0.17) 0%,
            rgba(201, 154, 50, 0.05) 48%,
            transparent 72%);
}

.ypm-home-hero__bottom-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 90px;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        radial-gradient(circle at center,
            rgba(15, 61, 46, 0.11) 1.2px,
            transparent 1.2px);
    background-size: 22px 22px;
    mask-image:
        linear-gradient(to bottom,
            transparent 0%,
            #000000 80%);
    -webkit-mask-image:
        linear-gradient(to bottom,
            transparent 0%,
            #000000 80%);
}

/* =========================================
   KONTEN
========================================== */

.ypm-home-hero__content {
    min-width: 0;
}

.ypm-home-hero__eyebrow {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 14px 7px 9px;
    border: 1px solid rgba(15, 61, 46, 0.13);
    border-radius: 999px;
    color: var(--ypm-primary, #0f3d2e);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.05);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.ypm-home-hero__eyebrow-icon {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-hero__eyebrow-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-hero__title {
    max-width: 720px;
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading,
            Georgia,
            "Times New Roman",
            serif);
    font-size: clamp(2.55rem, 5vw, 4.65rem);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.ypm-home-hero__title span {
    display: block;
    margin-top: 4px;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-hero__description {
    max-width: 610px;
    margin: 26px 0 0;
    color: var(--ypm-muted, #66716b);
    font-size: clamp(15px, 1.45vw, 17px);
    line-height: 1.85;
}

.ypm-home-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.ypm-home-hero__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.ypm-home-hero__button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-hero__button--primary {
    color: #ffffff !important;
    background: var(--ypm-primary, #0f3d2e);
    box-shadow: 0 13px 28px rgba(15, 61, 46, 0.2);
}

.ypm-home-hero__button--primary:hover {
    color: #ffffff;
    background: var(--ypm-primary-dark, #082a20);
    box-shadow: 0 17px 32px rgba(15, 61, 46, 0.25);
    transform: translateY(-2px);
}

.ypm-home-hero__button--secondary {
    color: var(--ypm-primary, #0f3d2e);
    border-color: rgba(15, 61, 46, 0.19);
    background: rgba(255, 255, 255, 0.73);
}

.ypm-home-hero__button--secondary:hover {
    color: var(--ypm-primary-dark, #082a20);
    border-color: rgba(15, 61, 46, 0.35);
    background: #ffffff;
    transform: translateY(-2px);
}

.ypm-home-hero__button:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.34);
    outline-offset: 3px;
}

.ypm-home-hero__location {
    max-width: 570px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 26px;
    color: var(--ypm-muted, #66716b);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
}

.ypm-home-hero__location-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    color: var(--ypm-accent-dark, #a77918);
}

.ypm-home-hero__location-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   VISUAL
========================================== */

.ypm-home-hero__visual {
    position: relative;
    min-width: 0;
    padding: 18px 0 28px;
}

.ypm-home-hero__image-frame {
    position: relative;
    width: min(100%, 660px);
    margin-left: auto;
}

.ypm-home-hero__image-frame::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 66%;
    height: 62%;
    border: 1px solid rgba(201, 154, 50, 0.38);
    border-radius: 30px;
    pointer-events: none;
}

.ypm-home-hero__image-frame::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -18px;
    width: 52%;
    height: 42%;
    border-radius: 28px;
    background: var(--ypm-primary, #0f3d2e);
    opacity: 0.12;
    pointer-events: none;
}

.ypm-home-hero__figure {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.9);
    border-radius: clamp(24px, 3vw, 38px);
    background: var(--ypm-primary-soft, #eaf3ee);
    box-shadow:
        0 32px 70px rgba(15, 61, 46, 0.19),
        0 8px 24px rgba(15, 61, 46, 0.09);
}

.ypm-home-hero__image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms ease;
}

.ypm-home-hero__figure:hover .ypm-home-hero__image {
    transform: scale(1.025);
}

.ypm-home-hero__image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(4, 29, 21, 0.65) 0%,
            rgba(4, 29, 21, 0.08) 42%,
            transparent 70%);
}

.ypm-home-hero__image-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(8, 42, 32, 0.74);
    box-shadow: 0 14px 35px rgba(3, 20, 14, 0.23);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ypm-home-hero__caption-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-hero__caption-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-hero__caption-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ypm-home-hero__caption-text strong {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}

.ypm-home-hero__caption-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.5;
}

.ypm-home-hero__floating-card {
    position: absolute;
    z-index: 4;
    top: 5px;
    left: -32px;
    max-width: 245px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 15px;
    color: var(--ypm-text, #18221d);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(15, 61, 46, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ypm-home-hero__floating-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: var(--ypm-primary, #0f3d2e);
}

.ypm-home-hero__floating-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-hero__floating-card>span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ypm-home-hero__floating-card strong {
    color: var(--ypm-primary-dark, #082a20);
    font-size: 12px;
    line-height: 1.35;
}

.ypm-home-hero__floating-card small {
    margin-top: 3px;
    color: var(--ypm-muted, #66716b);
    font-size: 9px;
    line-height: 1.45;
}

/* =========================================
   ANIMASI AMAN
========================================== */

.ypm-home-hero[data-motion="ready"] .ypm-home-hero__content {
    opacity: 0;
    transform: translateY(22px);
}

.ypm-home-hero[data-motion="ready"] .ypm-home-hero__visual {
    opacity: 0;
    transform: translateX(28px);
}

.ypm-home-hero[data-motion="ready"] .ypm-home-hero__content,
.ypm-home-hero[data-motion="ready"] .ypm-home-hero__visual {
    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.ypm-home-hero[data-motion="ready"].is-visible .ypm-home-hero__content,
.ypm-home-hero[data-motion="ready"].is-visible .ypm-home-hero__visual {
    opacity: 1;
    transform: translate(0, 0);
}

.ypm-home-hero[data-motion="ready"] .ypm-home-hero__visual {
    transition-delay: 110ms;
}

/* =========================================
   TABLET
========================================== */

@media (max-width: 1080px) {
    .ypm-home-hero {
        padding-right: 24px;
        padding-left: 24px;
    }

    .ypm-home-hero__container {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 44px;
    }

    .ypm-home-hero__figure,
    .ypm-home-hero__image {
        min-height: 470px;
    }

    .ypm-home-hero__floating-card {
        left: -20px;
    }
}

@media (max-width: 900px) {
    .ypm-home-hero {
        min-height: auto;
        padding-top: 68px;
        padding-bottom: 105px;
    }

    .ypm-home-hero__container {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .ypm-home-hero__content {
        max-width: 720px;
    }

    .ypm-home-hero__title {
        max-width: 680px;
    }

    .ypm-home-hero__description {
        max-width: 650px;
    }

    .ypm-home-hero__image-frame {
        width: min(100%, 720px);
        margin-right: auto;
        margin-left: auto;
    }

    .ypm-home-hero__figure,
    .ypm-home-hero__image {
        min-height: 520px;
    }

    .ypm-home-hero__floating-card {
        top: -20px;
        left: 24px;
    }
}

/* =========================================
   MOBILE
========================================== */

@media (max-width: 640px) {
    .ypm-home-hero {
        padding: 52px 16px 92px;
    }

    .ypm-home-hero__container {
        gap: 46px;
    }

    .ypm-home-hero__eyebrow {
        align-items: flex-start;
        font-size: 9px;
        letter-spacing: 0.055em;
    }

    .ypm-home-hero__eyebrow-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .ypm-home-hero__title {
        font-size: clamp(2.25rem, 11vw, 3.3rem);
        line-height: 1.09;
    }

    .ypm-home-hero__description {
        margin-top: 21px;
        font-size: 14px;
        line-height: 1.8;
    }

    .ypm-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
    }

    .ypm-home-hero__button {
        width: 100%;
        min-height: 50px;
    }

    .ypm-home-hero__location {
        font-size: 11px;
    }

    .ypm-home-hero__visual {
        padding-top: 30px;
    }

    .ypm-home-hero__image-frame::before {
        top: -10px;
        right: -8px;
        border-radius: 22px;
    }

    .ypm-home-hero__image-frame::after {
        right: 10px;
        bottom: -10px;
        border-radius: 20px;
    }

    .ypm-home-hero__figure {
        min-height: 430px;
        border-width: 6px;
        border-radius: 24px;
    }

    .ypm-home-hero__image {
        min-height: 430px;
    }

    .ypm-home-hero__image-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        gap: 10px;
        padding: 12px;
        border-radius: 13px;
    }

    .ypm-home-hero__caption-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .ypm-home-hero__caption-text strong {
        font-size: 13px;
    }

    .ypm-home-hero__caption-text small {
        font-size: 9px;
    }

    .ypm-home-hero__floating-card {
        top: -8px;
        left: 12px;
        max-width: 220px;
        padding: 11px 12px;
    }
}

@media (max-width: 380px) {
    .ypm-home-hero {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ypm-home-hero__title {
        font-size: 2.18rem;
    }

    .ypm-home-hero__figure,
    .ypm-home-hero__image {
        min-height: 390px;
    }

    .ypm-home-hero__floating-card {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* =========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ypm-home-hero__image,
    .ypm-home-hero__content,
    .ypm-home-hero__visual {
        transition: none !important;
        transform: none !important;
    }
}

/* Section: sec_1785133545189_360f135bf38338 */
/* =========================================
   HOME TRUST INDICATOR
========================================== */

.ypm-home-trust,
.ypm-home-trust *,
.ypm-home-trust *::before,
.ypm-home-trust *::after {
    box-sizing: border-box;
}

.ypm-home-trust {
    position: relative;
    z-index: 10;
    width: 100%;
    min-width: 0;
    padding: 0 20px;
    background: var(--ypm-background, #f7f8f5);
}

.ypm-home-trust__container {
    width: min(100%, var(--ypm-container, 1180px));
    margin: clamp(-58px, -4.5vw, -38px) auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--ypm-border,
            rgba(15, 61, 46, 0.12));
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 22px 55px rgba(15, 61, 46, 0.12),
        0 5px 18px rgba(15, 61, 46, 0.06);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* =========================================
   ITEM
========================================== */

.ypm-home-trust__item {
    position: relative;
    min-width: 0;
    min-height: 154px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 30px 24px;
    background: transparent;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.ypm-home-trust__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    bottom: 28px;
    width: 1px;
    background: var(--ypm-border,
            rgba(15, 61, 46, 0.12));
}

.ypm-home-trust__item:hover {
    z-index: 2;
    background:
        linear-gradient(145deg,
            rgba(234, 243, 238, 0.75),
            rgba(255, 255, 255, 0.96));
}

/* =========================================
   IKON
========================================== */

.ypm-home-trust__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 61, 46, 0.12);
    border-radius: 14px;
    color: var(--ypm-primary, #0f3d2e);
    background:
        linear-gradient(145deg,
            var(--ypm-primary-soft, #eaf3ee),
            #ffffff);
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.ypm-home-trust__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-trust__item:hover .ypm-home-trust__icon {
    color: var(--ypm-primary-dark, #082a20);
    border-color: rgba(201, 154, 50, 0.32);
    background: var(--ypm-accent, #c99a32);
    transform: translateY(-2px);
}

/* =========================================
   TEKS
========================================== */

.ypm-home-trust__content {
    min-width: 0;
}

.ypm-home-trust__content h2 {
    margin: 1px 0 7px;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-body,
            Inter,
            "Segoe UI",
            Arial,
            sans-serif);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ypm-home-trust__content p {
    margin: 0;
    color: var(--ypm-muted, #66716b);
    font-size: 11px;
    line-height: 1.65;
}

/* =========================================
   ANIMASI MASUK
========================================== */

.ypm-home-trust[data-motion="ready"] .ypm-home-trust__item {
    opacity: 0;
    transform: translateY(18px);
}

.ypm-home-trust[data-motion="ready"].is-visible .ypm-home-trust__item {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        background 180ms ease;
}

.ypm-home-trust[data-motion="ready"].is-visible .ypm-home-trust__item:nth-child(1) {
    transition-delay: 0ms;
}

.ypm-home-trust[data-motion="ready"].is-visible .ypm-home-trust__item:nth-child(2) {
    transition-delay: 70ms;
}

.ypm-home-trust[data-motion="ready"].is-visible .ypm-home-trust__item:nth-child(3) {
    transition-delay: 140ms;
}

.ypm-home-trust[data-motion="ready"].is-visible .ypm-home-trust__item:nth-child(4) {
    transition-delay: 210ms;
}

/* =========================================
   TABLET
========================================== */

@media (max-width: 1020px) {
    .ypm-home-trust__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ypm-home-trust__item {
        min-height: 145px;
    }

    .ypm-home-trust__item:nth-child(2)::after {
        display: none;
    }

    .ypm-home-trust__item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--ypm-border,
                rgba(15, 61, 46, 0.12));
    }
}

/* =========================================
   MOBILE
========================================== */

@media (max-width: 640px) {
    .ypm-home-trust {
        padding: 0 16px;
    }

    .ypm-home-trust__container {
        margin-top: -46px;
        grid-template-columns: 1fr;
        border-radius: 17px;
    }

    .ypm-home-trust__item {
        min-height: auto;
        align-items: center;
        padding: 21px 19px;
    }

    .ypm-home-trust__item:not(:last-child) {
        border-bottom: 1px solid var(--ypm-border,
                rgba(15, 61, 46, 0.12));
    }

    .ypm-home-trust__item::after {
        display: none;
    }

    .ypm-home-trust__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 13px;
    }

    .ypm-home-trust__icon svg {
        width: 23px;
        height: 23px;
    }

    .ypm-home-trust__content h2 {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .ypm-home-trust__content p {
        font-size: 11px;
        line-height: 1.55;
    }
}

@media (max-width: 380px) {
    .ypm-home-trust {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ypm-home-trust__item {
        gap: 12px;
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* =========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ypm-home-trust__item,
    .ypm-home-trust__icon {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785133783113_f44967dd275508 */
/* =========================================
   HOME ABOUT
========================================== */

.ypm-home-about,
.ypm-home-about *,
.ypm-home-about *::before,
.ypm-home-about *::after {
    box-sizing: border-box;
}

.ypm-home-about {
    position: relative;
    width: 100%;
    min-width: 0;
    padding:
        clamp(92px, 10vw, 145px) 20px clamp(88px, 9vw, 135px);
    overflow: hidden;
    color: var(--ypm-text, #18221d);
    background: var(--ypm-background, #f7f8f5);
}

.ypm-home-about__container {
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(60px, 8vw, 105px);
}

/* =========================================
   VISUAL
========================================== */

.ypm-home-about__visual {
    position: relative;
    min-width: 0;
    padding: 16px 0 30px 18px;
}

.ypm-home-about__decoration {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 62%;
    height: 72%;
    border: 1px solid rgba(201, 154, 50, 0.38);
    border-radius: 34px;
    pointer-events: none;
}

.ypm-home-about__decoration::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -13px;
    width: 7px;
    height: 88px;
    border-radius: 999px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-about__figure {
    position: relative;
    z-index: 2;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: clamp(25px, 3vw, 38px);
    background: var(--ypm-primary-soft, #eaf3ee);
    box-shadow:
        0 30px 70px rgba(15, 61, 46, 0.16),
        0 8px 25px rgba(15, 61, 46, 0.08);
}

.ypm-home-about__image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms ease;
}

.ypm-home-about__figure:hover .ypm-home-about__image {
    transform: scale(1.025);
}

.ypm-home-about__image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(4, 29, 21, 0.65) 0%,
            rgba(4, 29, 21, 0.08) 40%,
            transparent 68%);
}

.ypm-home-about__caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(8, 42, 32, 0.76);
    box-shadow: 0 15px 38px rgba(3, 20, 14, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ypm-home-about__caption-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-about__caption-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-about__caption>span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ypm-home-about__caption strong {
    font-size: 14px;
    line-height: 1.35;
}

.ypm-home-about__caption small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================
   KARTU LOKASI
========================================== */

.ypm-home-about__location-card {
    position: absolute;
    right: -34px;
    bottom: 0;
    z-index: 4;
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 61, 46, 0.1);
    border-radius: 15px;
    color: var(--ypm-text, #18221d);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 61, 46, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ypm-home-about__location-icon {
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: var(--ypm-primary, #0f3d2e);
}

.ypm-home-about__location-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-about__location-card>span:last-child {
    display: flex;
    flex-direction: column;
}

.ypm-home-about__location-card strong {
    color: var(--ypm-primary-dark, #082a20);
    font-size: 12px;
    line-height: 1.4;
}

.ypm-home-about__location-card small {
    margin-top: 2px;
    color: var(--ypm-muted, #66716b);
    font-size: 10px;
}

/* =========================================
   KONTEN
========================================== */

.ypm-home-about__content {
    min-width: 0;
}

.ypm-home-about__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.ypm-home-about__eyebrow>span {
    width: 34px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-about__eyebrow p {
    margin: 0;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-about__title {
    max-width: 650px;
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading,
            Georgia,
            "Times New Roman",
            serif);
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.ypm-home-about__title span {
    display: block;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-about__lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: #34433c;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 550;
    line-height: 1.82;
}

.ypm-home-about__description {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--ypm-muted, #66716b);
    font-size: 14px;
    line-height: 1.85;
}

/* =========================================
   FITUR
========================================== */

.ypm-home-about__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.ypm-home-about__feature {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--ypm-border,
            rgba(15, 61, 46, 0.12));
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.72);
    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.ypm-home-about__feature:hover {
    border-color: rgba(15, 61, 46, 0.22);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 61, 46, 0.08);
    transform: translateY(-2px);
}

.ypm-home-about__feature-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--ypm-primary, #0f3d2e);
    background: var(--ypm-primary-soft, #eaf3ee);
}

.ypm-home-about__feature-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-about__feature>span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ypm-home-about__feature strong {
    color: var(--ypm-primary-dark, #082a20);
    font-size: 12px;
    line-height: 1.4;
}

.ypm-home-about__feature small {
    margin-top: 2px;
    color: var(--ypm-muted, #66716b);
    font-size: 9px;
    line-height: 1.45;
}

/* =========================================
   TOMBOL
========================================== */

.ypm-home-about__actions {
    display: flex;
    align-items: center;
    margin-top: 31px;
}

.ypm-home-about__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border: 1px solid var(--ypm-primary, #0f3d2e);
    border-radius: 11px;
    color: #ffffff !important;
    background: var(--ypm-primary, #0f3d2e);
    box-shadow: 0 13px 28px rgba(15, 61, 46, 0.17);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.ypm-home-about__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.ypm-home-about__button:hover {
    color: #ffffff;
    background: var(--ypm-primary-dark, #082a20);
    box-shadow: 0 17px 34px rgba(15, 61, 46, 0.22);
    transform: translateY(-2px);
}

.ypm-home-about__button:hover svg {
    transform: translateX(3px);
}

.ypm-home-about__button:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.35);
    outline-offset: 3px;
}

/* =========================================
   ANIMASI MASUK
========================================== */

.ypm-home-about[data-motion="ready"] .ypm-home-about__visual {
    opacity: 0;
    transform: translateX(-28px);
}

.ypm-home-about[data-motion="ready"] .ypm-home-about__content {
    opacity: 0;
    transform: translateX(28px);
}

.ypm-home-about[data-motion="ready"] .ypm-home-about__visual,
.ypm-home-about[data-motion="ready"] .ypm-home-about__content {
    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.ypm-home-about[data-motion="ready"] .ypm-home-about__content {
    transition-delay: 100ms;
}

.ypm-home-about[data-motion="ready"].is-visible .ypm-home-about__visual,
.ypm-home-about[data-motion="ready"].is-visible .ypm-home-about__content {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   TABLET
========================================== */

@media (max-width: 1020px) {
    .ypm-home-about__container {
        gap: 55px;
    }

    .ypm-home-about__figure,
    .ypm-home-about__image {
        min-height: 500px;
    }

    .ypm-home-about__location-card {
        right: -18px;
    }
}

@media (max-width: 900px) {
    .ypm-home-about {
        padding-top: 105px;
    }

    .ypm-home-about__container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ypm-home-about__visual {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .ypm-home-about__content {
        max-width: 720px;
    }

    .ypm-home-about__figure,
    .ypm-home-about__image {
        min-height: 540px;
    }

    .ypm-home-about__location-card {
        right: 20px;
    }
}

/* =========================================
   MOBILE
========================================== */

@media (max-width: 640px) {
    .ypm-home-about {
        padding:
            82px 16px 90px;
    }

    .ypm-home-about__container {
        gap: 56px;
    }

    .ypm-home-about__visual {
        padding: 10px 0 34px 8px;
    }

    .ypm-home-about__decoration {
        top: -9px;
        left: -7px;
        border-radius: 24px;
    }

    .ypm-home-about__decoration::before {
        left: -6px;
        width: 5px;
        height: 65px;
    }

    .ypm-home-about__figure {
        min-height: 430px;
        border-width: 6px;
        border-radius: 25px;
    }

    .ypm-home-about__image {
        min-height: 430px;
    }

    .ypm-home-about__caption {
        right: 11px;
        bottom: 11px;
        left: 11px;
        gap: 10px;
        padding: 12px;
        border-radius: 13px;
    }

    .ypm-home-about__caption-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .ypm-home-about__caption strong {
        font-size: 12px;
    }

    .ypm-home-about__caption small {
        font-size: 9px;
    }

    .ypm-home-about__location-card {
        right: 10px;
        bottom: -1px;
        min-width: 210px;
        padding: 11px 13px;
    }

    .ypm-home-about__location-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }

    .ypm-home-about__title {
        font-size: clamp(2.05rem, 9.6vw, 3rem);
    }

    .ypm-home-about__lead {
        margin-top: 21px;
        font-size: 14px;
    }

    .ypm-home-about__description {
        font-size: 13px;
    }

    .ypm-home-about__features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 25px;
    }

    .ypm-home-about__feature {
        padding: 12px;
    }

    .ypm-home-about__feature strong {
        font-size: 12px;
    }

    .ypm-home-about__feature small {
        font-size: 10px;
    }

    .ypm-home-about__button {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .ypm-home-about {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ypm-home-about__figure,
    .ypm-home-about__image {
        min-height: 390px;
    }

    .ypm-home-about__location-card {
        right: 5px;
        left: 18px;
        min-width: 0;
    }

    .ypm-home-about__title {
        font-size: 2rem;
    }
}

/* =========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ypm-home-about__visual,
    .ypm-home-about__content,
    .ypm-home-about__image,
    .ypm-home-about__feature {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785133998496_083c0820be2cc */
/* =========================================
   HOME LEVELS
========================================== */

.ypm-home-levels,
.ypm-home-levels *,
.ypm-home-levels *::before,
.ypm-home-levels *::after {
    box-sizing: border-box;
}

.ypm-home-levels {
    position: relative;
    width: 100%;
    min-width: 0;
    padding:
        clamp(88px, 9vw, 135px) 20px clamp(88px, 9vw, 130px);
    overflow: hidden;
    color: var(--ypm-text, #18221d);
    background: #ffffff;
    scroll-margin-top: calc(var(--ypm-header-height, 78px) + 22px);
}

.ypm-home-levels__container {
    position: relative;
    z-index: 3;
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
}

/* =========================================
   DEKORASI
========================================== */

.ypm-home-levels__decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

.ypm-home-levels__decoration--one {
    top: -280px;
    left: -280px;
    width: 580px;
    height: 580px;
    background:
        radial-gradient(circle,
            rgba(15, 61, 46, 0.08) 0%,
            rgba(15, 61, 46, 0.025) 52%,
            transparent 72%);
}

.ypm-home-levels__decoration--two {
    right: -260px;
    bottom: -310px;
    width: 650px;
    height: 650px;
    background:
        radial-gradient(circle,
            rgba(201, 154, 50, 0.12) 0%,
            rgba(201, 154, 50, 0.025) 55%,
            transparent 72%);
}

/* =========================================
   HEADER
========================================== */

.ypm-home-levels__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 46px;
}

.ypm-home-levels__heading {
    min-width: 0;
    max-width: 750px;
}

.ypm-home-levels__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.ypm-home-levels__eyebrow>span {
    width: 35px;
    height: 2px;
    flex: 0 0 35px;
    display: block;
    border-radius: 999px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-levels__eyebrow p {
    margin: 0;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-levels__title {
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading,
            Georgia,
            "Times New Roman",
            serif);
    font-size: clamp(2.2rem, 4.25vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.037em;
    text-wrap: balance;
}

.ypm-home-levels__title span {
    display: block;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-levels__description {
    max-width: 680px;
    margin: 21px 0 0;
    color: var(--ypm-muted, #66716b);
    font-size: 14px;
    line-height: 1.85;
}

/* =========================================
   RINGKASAN JUMLAH UNIT
========================================== */

.ypm-home-levels__summary {
    min-width: 235px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 19px;
    border: 1px solid var(--ypm-border,
            rgba(15, 61, 46, 0.12));
    border-radius: 16px;
    background:
        linear-gradient(145deg,
            var(--ypm-primary-soft, #eaf3ee),
            #ffffff);
    box-shadow: 0 13px 32px rgba(15, 61, 46, 0.08);
}

.ypm-home-levels__summary-number {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
    font-family: var(--ypm-font-heading,
            Georgia,
            serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.ypm-home-levels__summary-text {
    display: flex;
    flex-direction: column;
}

.ypm-home-levels__summary-text strong {
    color: var(--ypm-primary-dark, #082a20);
    font-size: 13px;
    line-height: 1.4;
}

.ypm-home-levels__summary-text small {
    margin-top: 4px;
    color: var(--ypm-muted, #66716b);
    font-size: 9px;
    line-height: 1.5;
}

/* =========================================
   GRID KARTU
========================================== */

.ypm-home-levels__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.ypm-home-levels__card {
    grid-column: span 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ypm-border,
            rgba(15, 61, 46, 0.12));
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(15, 61, 46, 0.07);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.ypm-home-levels__card:nth-child(4) {
    grid-column: 2 / span 2;
}

.ypm-home-levels__card:nth-child(5) {
    grid-column: 4 / span 2;
}

.ypm-home-levels__card:hover {
    border-color: rgba(15, 61, 46, 0.24);
    box-shadow: 0 22px 52px rgba(15, 61, 46, 0.13);
    transform: translateY(-6px);
}

/* =========================================
   GAMBAR KARTU
========================================== */

.ypm-home-levels__image-wrap {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: var(--ypm-primary-soft, #eaf3ee);
}

.ypm-home-levels__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms ease;
}

.ypm-home-levels__card:hover .ypm-home-levels__image {
    transform: scale(1.055);
}

.ypm-home-levels__image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(5, 38, 28, 0.68) 0%,
            rgba(5, 38, 28, 0.05) 54%,
            transparent 75%);
}

.ypm-home-levels__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    max-width: calc(100% - 80px);
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 42, 32, 0.75);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    font-size: 9px;
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ypm-home-levels__icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
    box-shadow: 0 10px 26px rgba(3, 20, 14, 0.22);
}

.ypm-home-levels__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   ISI KARTU
========================================== */

.ypm-home-levels__card-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 23px 22px 22px;
}

.ypm-home-levels__number {
    margin: 0 0 7px;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ypm-home-levels__card-body h3 {
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading,
            Georgia,
            "Times New Roman",
            serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.ypm-home-levels__card-body>p:not(.ypm-home-levels__number) {
    margin: 12px 0 21px;
    color: var(--ypm-muted, #66716b);
    font-size: 12px;
    line-height: 1.75;
}

.ypm-home-levels__link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ypm-primary, #0f3d2e);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 180ms ease,
        gap 180ms ease;
}

.ypm-home-levels__link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-levels__link:hover {
    gap: 12px;
    color: var(--ypm-accent-dark, #a77918);
}

.ypm-home-levels__link:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.34);
    outline-offset: 4px;
    border-radius: 4px;
}

/* =========================================
   FOOTER SECTION
========================================== */

.ypm-home-levels__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    padding: 22px 24px;
    border: 1px solid var(--ypm-border,
            rgba(15, 61, 46, 0.12));
    border-radius: 16px;
    background: var(--ypm-background, #f7f8f5);
}

.ypm-home-levels__footer p {
    max-width: 700px;
    margin: 0;
    color: var(--ypm-muted, #66716b);
    font-size: 12px;
    line-height: 1.7;
}

.ypm-home-levels__contact {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid var(--ypm-primary, #0f3d2e);
    border-radius: 10px;
    color: #ffffff !important;
    background: var(--ypm-primary, #0f3d2e);
    font-size: 11px;
    font-weight: 750;
    line-height: 1.4;
    text-decoration: none;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.ypm-home-levels__contact svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-levels__contact:hover {
    color: #ffffff;
    background: var(--ypm-primary-dark, #082a20);
    transform: translateY(-2px);
}

.ypm-home-levels__contact:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.34);
    outline-offset: 3px;
}

/* =========================================
   ANIMASI MASUK
========================================== */

.ypm-home-levels[data-motion="ready"] .ypm-home-levels__header {
    opacity: 0;
    transform: translateY(20px);
}

.ypm-home-levels[data-motion="ready"] .ypm-home-levels__card {
    opacity: 0;
    transform: translateY(26px);
}

.ypm-home-levels[data-motion="ready"] .ypm-home-levels__footer {
    opacity: 0;
    transform: translateY(18px);
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__header,
.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card,
.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__footer {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 560ms ease,
        transform 560ms ease;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card:nth-child(1) {
    transition-delay: 70ms;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card:nth-child(2) {
    transition-delay: 130ms;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card:nth-child(3) {
    transition-delay: 190ms;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card:nth-child(4) {
    transition-delay: 250ms;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__card:nth-child(5) {
    transition-delay: 310ms;
}

.ypm-home-levels[data-motion="ready"].is-visible .ypm-home-levels__footer {
    transition-delay: 360ms;
}

/* =========================================
   TABLET
========================================== */

@media (max-width: 1020px) {
    .ypm-home-levels__header {
        align-items: flex-start;
    }

    .ypm-home-levels__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ypm-home-levels__card,
    .ypm-home-levels__card:nth-child(4),
    .ypm-home-levels__card:nth-child(5) {
        grid-column: auto;
    }

    .ypm-home-levels__card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        justify-self: center;
    }
}

@media (max-width: 820px) {
    .ypm-home-levels__header {
        flex-direction: column;
        gap: 28px;
    }

    .ypm-home-levels__summary {
        min-width: 0;
        width: min(100%, 330px);
    }

    .ypm-home-levels__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================
   MOBILE
========================================== */

@media (max-width: 640px) {
    .ypm-home-levels {
        padding:
            82px 16px 88px;
    }

    .ypm-home-levels__header {
        margin-bottom: 34px;
    }

    .ypm-home-levels__title {
        font-size: clamp(2.05rem, 9.6vw, 3rem);
    }

    .ypm-home-levels__description {
        margin-top: 18px;
        font-size: 13px;
    }

    .ypm-home-levels__summary {
        padding: 14px;
    }

    .ypm-home-levels__summary-number {
        width: 49px;
        height: 49px;
        flex-basis: 49px;
        font-size: 25px;
    }

    .ypm-home-levels__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .ypm-home-levels__card,
    .ypm-home-levels__card:nth-child(4),
    .ypm-home-levels__card:nth-child(5),
    .ypm-home-levels__card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .ypm-home-levels__image-wrap {
        height: 235px;
    }

    .ypm-home-levels__card-body {
        padding: 21px 19px 20px;
    }

    .ypm-home-levels__card-body h3 {
        font-size: 24px;
    }

    .ypm-home-levels__footer {
        margin-top: 27px;
        padding: 19px;
    }

    .ypm-home-levels__contact {
        width: 100%;
        min-height: 47px;
    }
}

@media (max-width: 380px) {
    .ypm-home-levels {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ypm-home-levels__image-wrap {
        height: 215px;
    }

    .ypm-home-levels__badge {
        max-width: calc(100% - 74px);
        font-size: 8px;
    }
}

/* =========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .ypm-home-levels__header,
    .ypm-home-levels__card,
    .ypm-home-levels__footer,
    .ypm-home-levels__image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785134477427_a59b6bcf5d0028 */
.ypm-home-advantages,
.ypm-home-advantages *,
.ypm-home-advantages *::before,
.ypm-home-advantages *::after {
    box-sizing: border-box;
}

.ypm-home-advantages {
    width: 100%;
    padding: clamp(85px, 9vw, 130px) 20px;
    color: var(--ypm-text, #18221d);
    background: var(--ypm-background, #f7f8f5);
    overflow: hidden;
}

.ypm-home-advantages__container {
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
}

.ypm-home-advantages__header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.ypm-home-advantages__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ypm-home-advantages__eyebrow span {
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-advantages__eyebrow p {
    margin: 0;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-advantages__title {
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ypm-home-advantages__title span {
    display: block;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-advantages__description {
    max-width: 670px;
    margin: 20px auto 0;
    color: var(--ypm-muted, #66716b);
    font-size: 14px;
    line-height: 1.85;
}

.ypm-home-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ypm-home-advantages__card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ypm-border, rgba(15, 61, 46, 0.12));
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 13px 38px rgba(15, 61, 46, 0.08);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.ypm-home-advantages__card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 61, 46, 0.23);
    box-shadow: 0 24px 55px rgba(15, 61, 46, 0.14);
}

.ypm-home-advantages__image-wrap {
    position: relative;
    height: 255px;
    overflow: hidden;
    background: var(--ypm-primary-soft, #eaf3ee);
}

.ypm-home-advantages__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(4, 29, 21, 0.58),
            transparent 58%);
}

.ypm-home-advantages__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms ease;
}

.ypm-home-advantages__card:hover .ypm-home-advantages__image {
    transform: scale(1.05);
}

.ypm-home-advantages__number {
    position: absolute;
    right: 17px;
    bottom: 15px;
    z-index: 2;
    color: #ffffff;
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: 28px;
    font-weight: 700;
}

.ypm-home-advantages__body {
    position: relative;
    padding: 34px 24px 26px;
}

.ypm-home-advantages__icon {
    position: absolute;
    top: -27px;
    left: 24px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 5px solid #ffffff;
    border-radius: 16px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-advantages__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-advantages__body h3 {
    margin: 10px 0 12px;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: 22px;
    line-height: 1.3;
}

.ypm-home-advantages__body p {
    margin: 0;
    color: var(--ypm-muted, #66716b);
    font-size: 12px;
    line-height: 1.8;
}

.ypm-home-advantages[data-motion="ready"] .ypm-home-advantages__header,
.ypm-home-advantages[data-motion="ready"] .ypm-home-advantages__card {
    opacity: 0;
    transform: translateY(24px);
}

.ypm-home-advantages[data-motion="ready"].is-visible .ypm-home-advantages__header,
.ypm-home-advantages[data-motion="ready"].is-visible .ypm-home-advantages__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 560ms ease, transform 560ms ease;
}

.ypm-home-advantages[data-motion="ready"].is-visible .ypm-home-advantages__card:nth-child(1) {
    transition-delay: 70ms;
}

.ypm-home-advantages[data-motion="ready"].is-visible .ypm-home-advantages__card:nth-child(2) {
    transition-delay: 140ms;
}

.ypm-home-advantages[data-motion="ready"].is-visible .ypm-home-advantages__card:nth-child(3) {
    transition-delay: 210ms;
}

@media (max-width: 900px) {
    .ypm-home-advantages__grid {
        grid-template-columns: 1fr;
    }

    .ypm-home-advantages__card {
        display: grid;
        grid-template-columns: minmax(240px, 0.85fr) 1fr;
    }

    .ypm-home-advantages__image-wrap {
        height: 100%;
        min-height: 280px;
    }

    .ypm-home-advantages__icon {
        top: 24px;
        left: -27px;
    }

    .ypm-home-advantages__body {
        padding: 65px 30px 30px 42px;
    }
}

@media (max-width: 640px) {
    .ypm-home-advantages {
        padding: 82px 16px;
    }

    .ypm-home-advantages__card {
        display: block;
    }

    .ypm-home-advantages__image-wrap {
        height: 235px;
        min-height: 0;
    }

    .ypm-home-advantages__icon {
        top: -27px;
        left: 20px;
    }

    .ypm-home-advantages__body {
        padding: 34px 20px 23px;
    }

    .ypm-home-advantages__body h3 {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ypm-home-advantages__header,
    .ypm-home-advantages__card,
    .ypm-home-advantages__image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785134560565_dbf1201b07ebd */
.ypm-home-programs,
.ypm-home-programs *,
.ypm-home-programs *::before,
.ypm-home-programs *::after {
    box-sizing: border-box;
}

.ypm-home-programs {
    position: relative;
    width: 100%;
    padding: clamp(85px, 9vw, 130px) 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 10%,
            rgba(201, 154, 50, 0.14),
            transparent 30%),
        var(--ypm-primary-dark, #082a20);
    overflow: hidden;
    scroll-margin-top: calc(var(--ypm-header-height, 78px) + 22px);
}

.ypm-home-programs__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px);
    background-size: 48px 48px;
}

.ypm-home-programs__container {
    position: relative;
    z-index: 2;
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
}

.ypm-home-programs__header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 50px;
}

.ypm-home-programs__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ypm-home-programs__eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-programs__eyebrow p {
    margin: 0;
    color: var(--ypm-accent, #c99a32);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-programs__title {
    margin: 0;
    color: #ffffff;
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ypm-home-programs__title span {
    display: block;
    color: var(--ypm-accent, #c99a32);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-programs__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.85;
}

.ypm-home-programs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ypm-home-programs__item {
    min-width: 0;
    min-height: 210px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 30px 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 200ms ease;
}

.ypm-home-programs__item:hover {
    background: rgba(255, 255, 255, 0.055);
}

.ypm-home-programs__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 154, 50, 0.3);
    border-radius: 14px;
    color: var(--ypm-accent, #c99a32);
    background: rgba(201, 154, 50, 0.08);
}

.ypm-home-programs__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-programs__item h3 {
    margin: 1px 0 9px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
}

.ypm-home-programs__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.75;
}

.ypm-home-programs[data-motion="ready"] .ypm-home-programs__header,
.ypm-home-programs[data-motion="ready"] .ypm-home-programs__item {
    opacity: 0;
    transform: translateY(22px);
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__header,
.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 550ms ease, transform 550ms ease;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(1) {
    transition-delay: 60ms;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(2) {
    transition-delay: 110ms;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(3) {
    transition-delay: 160ms;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(4) {
    transition-delay: 210ms;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(5) {
    transition-delay: 260ms;
}

.ypm-home-programs[data-motion="ready"].is-visible .ypm-home-programs__item:nth-child(6) {
    transition-delay: 310ms;
}

@media (max-width: 900px) {
    .ypm-home-programs__header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ypm-home-programs__description {
        max-width: 700px;
    }

    .ypm-home-programs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ypm-home-programs {
        padding: 82px 16px;
    }

    .ypm-home-programs__grid {
        grid-template-columns: 1fr;
    }

    .ypm-home-programs__item {
        min-height: auto;
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ypm-home-programs__header,
    .ypm-home-programs__item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785134622281_1e039b396a2828 */
.ypm-home-gallery,
.ypm-home-gallery *,
.ypm-home-gallery *::before,
.ypm-home-gallery *::after {
    box-sizing: border-box;
}

.ypm-home-gallery {
    width: 100%;
    padding: clamp(85px, 9vw, 130px) 20px;
    color: var(--ypm-text, #18221d);
    background: #ffffff;
    overflow: hidden;
}

.ypm-home-gallery__container {
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
}

.ypm-home-gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 40px;
}

.ypm-home-gallery__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ypm-home-gallery__eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-gallery__eyebrow p {
    margin: 0;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-gallery__title {
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ypm-home-gallery__title span {
    display: block;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-gallery__all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--ypm-border, rgba(15, 61, 46, 0.12));
    border-radius: 10px;
    color: var(--ypm-primary, #0f3d2e);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.ypm-home-gallery__all svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.ypm-home-gallery__all:hover {
    color: #ffffff;
    border-color: var(--ypm-primary, #0f3d2e);
    background: var(--ypm-primary, #0f3d2e);
}

.ypm-home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 235px);
    gap: 16px;
}

.ypm-home-gallery__item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--ypm-primary-soft, #eaf3ee);
    box-shadow: 0 12px 32px rgba(15, 61, 46, 0.08);
}

.ypm-home-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.ypm-home-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms ease;
}

.ypm-home-gallery__item:hover img {
    transform: scale(1.06);
}

.ypm-home-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
    color: #ffffff;
    background: linear-gradient(to top,
            rgba(3, 25, 18, 0.78),
            transparent 62%);
}

.ypm-home-gallery__overlay strong {
    font-size: 14px;
    line-height: 1.4;
}

.ypm-home-gallery__overlay small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.ypm-home-gallery__item:focus-visible,
.ypm-home-gallery__all:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.38);
    outline-offset: 3px;
}

.ypm-home-gallery[data-motion="ready"] .ypm-home-gallery__header,
.ypm-home-gallery[data-motion="ready"] .ypm-home-gallery__item {
    opacity: 0;
    transform: translateY(22px);
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__header,
.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 550ms ease, transform 550ms ease;
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item:nth-child(1) {
    transition-delay: 60ms;
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item:nth-child(2) {
    transition-delay: 110ms;
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item:nth-child(3) {
    transition-delay: 160ms;
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item:nth-child(4) {
    transition-delay: 210ms;
}

.ypm-home-gallery[data-motion="ready"].is-visible .ypm-home-gallery__item:nth-child(5) {
    transition-delay: 260ms;
}

@media (max-width: 900px) {
    .ypm-home-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 360px 220px 220px;
    }

    .ypm-home-gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .ypm-home-gallery {
        padding: 82px 16px;
    }

    .ypm-home-gallery__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ypm-home-gallery__all {
        width: 100%;
        justify-content: center;
    }

    .ypm-home-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .ypm-home-gallery__item,
    .ypm-home-gallery__item--large {
        grid-column: auto;
        grid-row: auto;
        height: 245px;
    }

    .ypm-home-gallery__item--large {
        height: 330px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ypm-home-gallery__header,
    .ypm-home-gallery__item,
    .ypm-home-gallery__item img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785134699404_3896afae61df5 */
.ypm-home-news,
.ypm-home-news *,
.ypm-home-news *::before,
.ypm-home-news *::after {
    box-sizing: border-box;
}

.ypm-home-news {
    width: 100%;
    padding: clamp(85px, 9vw, 130px) 20px;
    color: var(--ypm-text, #18221d);
    background: var(--ypm-background, #f7f8f5);
    overflow: hidden;
}

.ypm-home-news__container {
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
}

.ypm-home-news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 40px;
}

.ypm-home-news__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ypm-home-news__eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-news__eyebrow p {
    margin: 0;
    color: var(--ypm-accent-dark, #a77918);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-news__title {
    margin: 0;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ypm-home-news__title span {
    display: block;
    color: var(--ypm-accent-dark, #a77918);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-news__all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ypm-primary, #0f3d2e);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.ypm-home-news__all svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.ypm-home-news__all:hover {
    color: var(--ypm-accent-dark, #a77918);
}

.ypm-home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.ypm-home-news__card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ypm-border, rgba(15, 61, 46, 0.12));
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 61, 46, 0.07);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.ypm-home-news__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(15, 61, 46, 0.13);
}

.ypm-home-news__image-link {
    height: 235px;
    display: block;
    overflow: hidden;
    background: var(--ypm-primary-soft, #eaf3ee);
}

.ypm-home-news__image-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms ease;
}

.ypm-home-news__card:hover .ypm-home-news__image-link img {
    transform: scale(1.05);
}

.ypm-home-news__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 23px 22px;
}

.ypm-home-news__body time {
    color: var(--ypm-accent-dark, #a77918);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ypm-home-news__body h3 {
    margin: 11px 0 12px;
    color: var(--ypm-primary-dark, #082a20);
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: 20px;
    line-height: 1.4;
}

.ypm-home-news__body h3 a {
    color: inherit;
    text-decoration: none;
}

.ypm-home-news__body h3 a:hover {
    color: var(--ypm-accent-dark, #a77918);
}

.ypm-home-news__body p {
    margin: 0 0 20px;
    color: var(--ypm-muted, #66716b);
    font-size: 11px;
    line-height: 1.75;
}

.ypm-home-news__link {
    width: fit-content;
    margin-top: auto;
    color: var(--ypm-primary, #0f3d2e);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.ypm-home-news__link span {
    margin-left: 5px;
    transition: margin-left 180ms ease;
}

.ypm-home-news__link:hover {
    color: var(--ypm-accent-dark, #a77918);
}

.ypm-home-news__link:hover span {
    margin-left: 9px;
}

.ypm-home-news a:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.35);
    outline-offset: 3px;
}

.ypm-home-news[data-motion="ready"] .ypm-home-news__header,
.ypm-home-news[data-motion="ready"] .ypm-home-news__card {
    opacity: 0;
    transform: translateY(22px);
}

.ypm-home-news[data-motion="ready"].is-visible .ypm-home-news__header,
.ypm-home-news[data-motion="ready"].is-visible .ypm-home-news__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 550ms ease, transform 550ms ease;
}

.ypm-home-news[data-motion="ready"].is-visible .ypm-home-news__card:nth-child(1) {
    transition-delay: 70ms;
}

.ypm-home-news[data-motion="ready"].is-visible .ypm-home-news__card:nth-child(2) {
    transition-delay: 140ms;
}

.ypm-home-news[data-motion="ready"].is-visible .ypm-home-news__card:nth-child(3) {
    transition-delay: 210ms;
}

@media (max-width: 900px) {
    .ypm-home-news__grid {
        grid-template-columns: 1fr;
    }

    .ypm-home-news__card {
        display: grid;
        grid-template-columns: minmax(250px, 0.85fr) 1fr;
    }

    .ypm-home-news__image-link {
        height: 100%;
        min-height: 270px;
    }
}

@media (max-width: 640px) {
    .ypm-home-news {
        padding: 82px 16px;
    }

    .ypm-home-news__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ypm-home-news__card {
        display: flex;
    }

    .ypm-home-news__image-link {
        height: 225px;
        min-height: 0;
    }

    .ypm-home-news__body {
        padding: 21px 19px;
    }

    .ypm-home-news__body h3 {
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ypm-home-news__header,
    .ypm-home-news__card,
    .ypm-home-news__image-link img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Section: sec_1785134743928_fc47f2b26dbdd8 */
.ypm-home-contact,
.ypm-home-contact *,
.ypm-home-contact *::before,
.ypm-home-contact *::after {
    box-sizing: border-box;
}

.ypm-home-contact {
    width: 100%;
    padding: clamp(75px, 8vw, 110px) 20px;
    color: #ffffff;
    background: #ffffff;
    overflow: hidden;
}

.ypm-home-contact__container {
    position: relative;
    width: min(100%, var(--ypm-container, 1180px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 65px;
    align-items: center;
    padding: clamp(42px, 6vw, 72px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 0%,
            rgba(201, 154, 50, 0.2),
            transparent 35%),
        var(--ypm-primary, #0f3d2e);
    box-shadow: 0 30px 75px rgba(15, 61, 46, 0.2);
    overflow: hidden;
}

.ypm-home-contact__container::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.ypm-home-contact__content,
.ypm-home-contact__information {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.ypm-home-contact__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ypm-home-contact__eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-contact__eyebrow p {
    margin: 0;
    color: var(--ypm-accent, #c99a32);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ypm-home-contact__title {
    margin: 0;
    color: #ffffff;
    font-family: var(--ypm-font-heading, Georgia, serif);
    font-size: clamp(2.15rem, 4vw, 3.55rem);
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.ypm-home-contact__title span {
    display: block;
    color: var(--ypm-accent, #c99a32);
    font-style: italic;
    font-weight: 600;
}

.ypm-home-contact__description {
    max-width: 650px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.85;
}

.ypm-home-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.ypm-home-contact__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.ypm-home-contact__button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.ypm-home-contact__button--primary {
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-contact__button--primary:hover {
    color: var(--ypm-primary-dark, #082a20);
    background: #d8ad4d;
    transform: translateY(-2px);
}

.ypm-home-contact__button--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.ypm-home-contact__button--secondary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-2px);
}

.ypm-home-contact__information {
    display: grid;
    gap: 12px;
}

.ypm-home-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ypm-home-contact__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--ypm-primary-dark, #082a20);
    background: var(--ypm-accent, #c99a32);
}

.ypm-home-contact__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ypm-home-contact__item div {
    min-width: 0;
}

.ypm-home-contact__item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 11px;
}

.ypm-home-contact__item p,
.ypm-home-contact__item a {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    line-height: 1.65;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ypm-home-contact__item a:hover {
    color: #ffffff;
}

.ypm-home-contact a:focus-visible {
    outline: 3px solid rgba(201, 154, 50, 0.45);
    outline-offset: 3px;
}

.ypm-home-contact[data-motion="ready"] .ypm-home-contact__content {
    opacity: 0;
    transform: translateX(-25px);
}

.ypm-home-contact[data-motion="ready"] .ypm-home-contact__information {
    opacity: 0;
    transform: translateX(25px);
}

.ypm-home-contact[data-motion="ready"].is-visible .ypm-home-contact__content,
.ypm-home-contact[data-motion="ready"].is-visible .ypm-home-contact__information {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 600ms ease, transform 600ms ease;
}

.ypm-home-contact[data-motion="ready"].is-visible .ypm-home-contact__information {
    transition-delay: 100ms;
}

@media (max-width: 900px) {
    .ypm-home-contact__container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ypm-home-contact__information {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ypm-home-contact {
        padding: 70px 16px;
    }

    .ypm-home-contact__container {
        padding: 38px 22px;
        border-radius: 23px;
    }

    .ypm-home-contact__information {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ypm-home-contact__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ypm-home-contact__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ypm-home-contact__content,
    .ypm-home-contact__information {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}