:root {
    --yog-home-sand: #ECE3D0;
    --yog-home-paper: #F6F0E3;
    --yog-home-paper-2: #FBF7EC;
    --yog-home-ink: #17130E;
    --yog-home-ink-soft: #2C261D;
    --yog-home-stone: #6B6152;

    --yog-home-teal: #0F5D5B;
    --yog-home-teal-bright: #2E9E9A;
    --yog-home-teal-deep: #0B4644;

    --yog-home-brass: #B07D2A;
    --yog-home-brass-soft: #C79A46;

    --yog-home-line: rgba(23, 19, 14, .14);
    --yog-home-brass-line: rgba(176, 125, 42, .42);

    --yog-home-shadow:
        0 24px 60px -28px rgba(23, 19, 14, .5);

    --yog-home-serif:
        "Newsreader",
        Georgia,
        serif;

    --yog-home-sans:
        "Hanken Grotesk",
        system-ui,
        sans-serif;

    --yog-home-wrap: 1180px;
}


/* =========================================================
   FOUNDATION
   ========================================================= */

body.yog-home-v2 {
    margin: 0;
    background: var(--yog-home-sand);
    color: var(--yog-home-ink);
    font-family: var(--yog-home-sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.yog-home-v2 *,
.yog-home-v2 *::before,
.yog-home-v2 *::after {
    box-sizing: border-box;
}

.yog-home-v2 img {
    display: block;
    max-width: 100%;
}

.yog-home-v2 a {
    color: inherit;
    text-decoration: none;
}

.yog-home-v2 h1,
.yog-home-v2 h2,
.yog-home-v2 h3,
.yog-home-v2 h4 {
    margin: 0;
    font-family: var(--yog-home-serif);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.015em;
}

.yog-home-wrap {
    width: min(
        calc(100% - 56px),
        var(--yog-home-wrap)
    );
    margin-inline: auto;
}

.yog-home-section {
    padding-block: clamp(72px, 10vw, 128px);
}

.yog-home-section-head {
    max-width: 650px;
    margin-bottom: 44px;
}

.yog-home-section-head h2 {
    color: var(--yog-home-teal-deep);
    font-size: clamp(2.25rem, 4.6vw, 3.4rem);
}

.yog-home-section-head p {
    margin: 16px 0 0;
    color: var(--yog-home-stone);
    font-size: 1.02rem;
    line-height: 1.7;
}

.yog-home-eyebrow,
.yog-home-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--yog-home-brass);
    font-family: var(--yog-home-serif);
    font-size: 1.04rem;
    font-style: italic;
}

.yog-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45em;
    min-height: 50px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    font-family: var(--yog-home-sans);
    font-size: .98rem;
    font-weight: 650;
    line-height: 1;
    cursor: pointer;
    transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        box-shadow .22s ease;
}

.yog-home-btn-solid {
    background: var(--yog-home-teal);
    color: var(--yog-home-paper);
    box-shadow:
        0 12px 30px -16px rgba(15, 93, 91, .9);
}

.yog-home-btn-solid:hover {
    background: var(--yog-home-teal-bright);
    transform: translateY(-2px);
}

.yog-home-btn-ghost {
    border: 1px solid rgba(251, 246, 236, .65);
    background: transparent;
    color: #FBF6EC;
}

.yog-home-btn-ghost:hover {
    background: rgba(251, 246, 236, .13);
    transform: translateY(-2px);
}

.yog-home-btn-whatsapp {
    background: #25D366;
    color: #073511;
}

.yog-home-btn-whatsapp:hover {
    transform: translateY(-2px);
}

.yog-home-text-link {
    display: inline-block;
    color: var(--yog-home-teal);
    font-size: .95rem;
    font-weight: 650;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

.yog-home-text-link:hover {
    border-color: currentColor;
}

.yog-home-browse {
    margin-top: 34px;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.yog-home-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yog-home-teal-bright);
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
}


/* =========================================================
   NAV
   ========================================================= */

.yog-home-nav {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding:
        20px
        clamp(20px, 4vw, 44px);

    color: var(--yog-home-paper);

    transition:
        padding .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.yog-home-nav.is-scrolled {
    padding-block: 12px;
    background: rgba(246, 240, 227, .97);
    color: var(--yog-home-ink);
    box-shadow: 0 1px 0 var(--yog-home-line);
    backdrop-filter: blur(12px);
}

.yog-home-brand {
    font-family: var(--yog-home-serif);
    font-size: 1.38rem;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.yog-home-brand strong {
    font-weight: 650;
}

.yog-home-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 28px);
    font-size: .94rem;
}

.yog-home-nav-links > a {
    opacity: .9;
    transition: opacity .2s ease;
}

.yog-home-nav-links > a:hover {
    opacity: 1;
}

.yog-home-nav-cta {
    padding: 8px 18px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.yog-home-nav.is-scrolled .yog-home-nav-cta:hover {
    border-color: var(--yog-home-teal);
    background: var(--yog-home-teal);
    color: var(--yog-home-paper);
}


/* =========================================================
   HERO
   ========================================================= */

.yog-home-hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.yog-home-hero-media {
    position: absolute;
    z-index: -3;
    inset: -6% -4%;
    will-change: transform;
    transform-origin: 50% 35%;
}

.yog-home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation:
        yog-home-kenburns
        26s
        ease-out
        forwards;
    transform-origin: 55% 45%;
}

@keyframes yog-home-kenburns {
    from {
        transform: scale(1.035);
    }

    to {
        transform: scale(1.15);
    }
}

.yog-home-hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 8, 5, .32) 0%,
            rgba(10, 8, 5, 0) 34%
        ),
        linear-gradient(
            0deg,
            rgba(10, 8, 5, .82) 2%,
            rgba(10, 8, 5, .23) 43%,
            rgba(10, 8, 5, 0) 70%
        );
}

.yog-home-hero-inner {
    width: 100%;
    padding-bottom: min(10vh, 96px);
}

.yog-home-hero-text {
    max-width: 800px;
    color: var(--yog-home-paper);
    will-change: transform, opacity;
}

.yog-home-hero .yog-home-kicker {
    color: var(--yog-home-brass-soft);
    font-size: 1.08rem;
}

.yog-home-hero h1 {
    max-width: 900px;
    color: #FBF6EC;
    font-size: clamp(3rem, 6.4vw, 5.5rem);
    text-wrap: balance;
}

.yog-home-hero p {
    max-width: 55ch;
    margin: 20px 0 0;
    color: rgba(251, 246, 236, .87);
    font-size: 1.12rem;
    line-height: 1.6;
}

.yog-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.yog-home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 34px;
    color: rgba(251, 246, 236, .86);
    font-size: .92rem;
}

.yog-home-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.yog-home-hero-trust i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yog-home-brass-soft);
}

.yog-home-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    transform: translateX(-50%);

    color: rgba(251, 246, 236, .68);
    font-size: .72rem;
    letter-spacing: .17em;
}

.yog-home-scroll-cue i {
    width: 1px;
    height: 32px;
    background:
        linear-gradient(
            rgba(251, 246, 236, .75),
            transparent
        );
    animation:
        yog-home-scrollcue
        1.9s
        ease-in-out
        infinite;
}

@keyframes yog-home-scrollcue {
    0%,
    100% {
        transform: scaleY(.45);
        opacity: .4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


/* =========================================================
   TOUR CARDS
   ========================================================= */

.yog-home-tours {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.yog-home-tour {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;

    border: 1px solid var(--yog-home-line);
    border-radius: 5px;
    background: var(--yog-home-paper);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.yog-home-tour:hover {
    transform: translateY(-5px);
    box-shadow: var(--yog-home-shadow);
}

.yog-home-tour-image {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: #243238;
}

.yog-home-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.yog-home-tour:hover
.yog-home-tour-image img {
    transform: scale(1.06);
}

.yog-home-tour-tag {
    position: absolute;
    top: 14px;
    left: 14px;

    max-width: calc(100% - 28px);
    padding: 5px 12px;

    border-radius: 999px;
    background: rgba(23, 19, 14, .73);
    color: var(--yog-home-paper);

    font-size: .75rem;
    line-height: 1.3;

    backdrop-filter: blur(5px);
}

.yog-home-tour-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 24px;
}

.yog-home-tour-body h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.yog-home-tour-body > p {
    flex: 1;
    margin: 0;
    color: var(--yog-home-stone);
    font-size: .96rem;
    line-height: 1.62;
}

.yog-home-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;

    margin-top: 18px;
    padding-top: 16px;

    border-top:
        1px solid
        var(--yog-home-brass-line);

    color: var(--yog-home-ink-soft);
    font-size: .82rem;
}

.yog-home-tour-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 16px;
    color: var(--yog-home-brass);
}

.yog-home-tour-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.yog-home-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.yog-home-price > span {
    margin-bottom: 2px;
    color: var(--yog-home-brass);
    font-size: .76rem;
    font-weight: 700;
}

.yog-home-price strong {
    color: var(--yog-home-ink);
    font-family: var(--yog-home-serif);
    font-size: 1.28rem;
    font-weight: 600;
}

.yog-home-price small {
    margin-top: 4px;
    color: var(--yog-home-stone);
    font-size: .73rem;
    font-weight: 400;
}


/* =========================================================
   GUIDE / WHY US
   ========================================================= */

.yog-home-guide-section {
    background: var(--yog-home-paper);
}

.yog-home-guide-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, .85fr)
        minmax(0, 1.15fr);
    gap: clamp(38px, 5vw, 60px);
    align-items: center;
}

.yog-home-guide-card {
    padding: 26px;

    border: 1px solid var(--yog-home-line);
    border-radius: 12px;
    background: var(--yog-home-paper-2);

    text-align: center;
}

.yog-home-guide-photo {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--yog-home-sand);
}

.yog-home-guide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yog-home-guide-photo-empty {
    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(15, 93, 91, .14),
            rgba(176, 125, 42, .12)
        );

    color: var(--yog-home-teal);
}

.yog-home-guide-photo-empty span {
    font-family: var(--yog-home-serif);
    font-size: 3.8rem;
}

.yog-home-guide-card h3 {
    font-size: 1.7rem;
}

.yog-home-guide-role {
    margin-top: 4px;
    color: var(--yog-home-brass);
    font-family: var(--yog-home-serif);
    font-style: italic;
}

.yog-home-guide-card p {
    margin: 12px 0 16px;
    color: var(--yog-home-stone);
    font-size: .95rem;
    line-height: 1.65;
}

.yog-home-why {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
}

.yog-home-why-item {
    padding-top: 17px;
    border-top: 2px solid var(--yog-home-teal);
}

.yog-home-why-item h3 {
    margin-bottom: 7px;
    font-size: 1.3rem;
}

.yog-home-why-item p {
    margin: 0;
    color: var(--yog-home-stone);
    font-size: .94rem;
    line-height: 1.62;
}


/* =========================================================
   DESTINATIONS
   ========================================================= */

.yog-home-dest-section {
    background: var(--yog-home-ink);
    color: var(--yog-home-paper);
}

.yog-home-dest-section
.yog-home-section-head h2 {
    color: var(--yog-home-paper);
}

.yog-home-dest-section
.yog-home-section-head p {
    color: rgba(246, 240, 227, .68);
}

.yog-home-dest-section
.yog-home-eyebrow {
    color: var(--yog-home-brass-soft);
}

.yog-home-destinations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.yog-home-destination {
    position: relative;
    isolation: isolate;

    display: flex;
    align-items: flex-end;

    height: 300px;
    overflow: hidden;

    border-radius: 5px;
    background: #283332;
}

.yog-home-destination-media {
    position: absolute;
    z-index: -3;
    inset: 0;
}

.yog-home-destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.yog-home-destination:hover
.yog-home-destination-media img {
    transform: scale(1.07);
}

.yog-home-destination-shade {
    position: absolute;
    z-index: -2;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(10, 8, 5, .84),
            rgba(10, 8, 5, .12) 60%,
            rgba(10, 8, 5, 0)
        );
}

.yog-home-destination-caption {
    padding: 21px;
}

.yog-home-destination-caption h3 {
    color: #fff;
    font-size: 1.55rem;
}

.yog-home-destination-caption span {
    display: block;
    margin-top: 3px;
    color: rgba(246, 240, 227, .77);
    font-size: .88rem;
}


/* =========================================================
   CUSTOM / TAILOR MADE
   ========================================================= */

.yog-home-tailor {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--yog-home-paper);
}

.yog-home-tailor-media {
    position: absolute;
    z-index: -3;
    inset: -5% -10%;
    will-change: transform;
}

.yog-home-tailor-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yog-home-tailor-shade {
    position: absolute;
    z-index: -2;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 8, 5, .86),
            rgba(10, 8, 5, .42)
        );
}

.yog-home-tailor-inner {
    max-width: 650px;
    padding-block: clamp(90px, 12vw, 150px);
}

.yog-home-tailor
.yog-home-eyebrow {
    color: var(--yog-home-brass-soft);
}

.yog-home-tailor h2 {
    color: var(--yog-home-paper);
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
}

.yog-home-tailor p {
    margin: 18px 0 30px;
    color: rgba(246, 240, 227, .86);
    line-height: 1.7;
}


/* =========================================================
   TRAVEL GUIDE POSTS
   ========================================================= */

.yog-home-posts-section {
    background: var(--yog-home-paper);
}

.yog-home-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.yog-home-post {
    overflow: hidden;

    border: 1px solid var(--yog-home-line);
    border-radius: 5px;
    background: var(--yog-home-paper-2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.yog-home-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--yog-home-shadow);
}

.yog-home-post-image {
    height: 200px;
    overflow: hidden;
    background: #243238;
}

.yog-home-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.yog-home-post:hover
.yog-home-post-image img {
    transform: scale(1.06);
}

.yog-home-post-body {
    padding: 18px 20px 22px;
}

.yog-home-post-body > span {
    color: var(--yog-home-brass);
    font-size: .77rem;
    font-weight: 700;
}

.yog-home-post-body h3 {
    margin-top: 6px;
    font-size: 1.3rem;
}


/* =========================================================
   PLAN / ENQUIRY
   ========================================================= */

.yog-home-plan {
    background: var(--yog-home-paper);
}

.yog-home-plan-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .9fr);
    gap: clamp(38px, 6vw, 70px);
    align-items: start;
}

.yog-home-plan-form h2 {
    color: var(--yog-home-teal-deep);
    font-size: clamp(2.25rem, 4.4vw, 3.2rem);
}

.yog-home-plan-form > p {
    max-width: 50ch;
    margin: 16px 0 28px;
    color: var(--yog-home-stone);
}

.yog-home-plan-form form {
    margin-top: 24px;
}

.yog-home-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.yog-home-field {
    margin-bottom: 17px;
}

.yog-home-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--yog-home-stone);
    font-size: .83rem;
}

.yog-home-field input,
.yog-home-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;

    border: 1px solid var(--yog-home-line);
    border-radius: 6px;
    outline: 0;

    background: var(--yog-home-paper-2);
    color: var(--yog-home-ink);

    font: inherit;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.yog-home-field textarea {
    min-height: 130px;
    resize: vertical;
}

.yog-home-field input:focus,
.yog-home-field textarea:focus {
    border-color: var(--yog-home-teal);
    box-shadow:
        0 0 0 3px
        rgba(15, 93, 91, .08);
}

.yog-home-form-status {
    margin: 20px 0;
    padding: 13px 15px;

    border: 1px solid rgba(15, 93, 91, .24);
    border-radius: 6px;

    background: rgba(15, 93, 91, .06);
    color: var(--yog-home-teal-deep);

    font-size: .92rem;
}

.yog-home-contact-card {
    position: sticky;
    top: 110px;

    padding: clamp(28px, 4vw, 40px);

    border-radius: 12px;

    background: var(--yog-home-ink);
    color: var(--yog-home-paper);
}

.yog-home-contact-card
.yog-home-eyebrow {
    color: var(--yog-home-brass-soft);
}

.yog-home-contact-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.yog-home-contact-card > p {
    margin: 14px 0 24px;
    color: rgba(246, 240, 227, .8);
}

.yog-home-contact-note {
    margin-top: 28px;
    padding-top: 20px;

    border-top: 1px solid rgba(246, 240, 227, .15);

    color: rgba(246, 240, 227, .56);
    font-size: .82rem;
}


/* =========================================================
   REVEALS
   ========================================================= */

.yog-home-reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity .78s cubic-bezier(.2, .7, .2, 1),
        transform .78s cubic-bezier(.2, .7, .2, 1);
}

.yog-home-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.yog-home-reveal[data-delay="1"] {
    transition-delay: .07s;
}

.yog-home-reveal[data-delay="2"] {
    transition-delay: .14s;
}

.yog-home-reveal[data-delay="3"] {
    transition-delay: .21s;
}


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

body.yog-home-v2 footer.site {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

    .yog-home-tours,
    .yog-home-posts {
        grid-template-columns: 1fr;
    }

    .yog-home-tour {
        max-width: 720px;
    }

    .yog-home-tour-image {
        height: min(55vw, 380px);
    }

    .yog-home-guide-grid {
        grid-template-columns: 1fr;
    }

    .yog-home-guide-card {
        max-width: 520px;
    }

    .yog-home-destinations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yog-home-plan-grid {
        grid-template-columns: 1fr;
    }

    .yog-home-contact-card {
        position: static;
    }
}


@media (max-width: 860px) {

    .yog-home-nav-links > a:not(.yog-home-nav-cta) {
        display: none;
    }

    .yog-home-hero {
        min-height: 620px;
    }
}


@media (max-width: 600px) {

    .yog-home-wrap {
        width: min(calc(100% - 36px), var(--yog-home-wrap));
    }

    .yog-home-section {
        padding-block: 70px;
    }

    .yog-home-nav {
        padding:
            16px
            18px;
    }

    .yog-home-nav.is-scrolled {
        padding-block: 10px;
    }

    .yog-home-brand {
        font-size: 1.2rem;
    }

    .yog-home-nav-cta {
        padding: 7px 14px;
        font-size: .88rem;
    }

    .yog-home-hero {
        height: 92svh;
        min-height: 600px;
    }

    .yog-home-hero-inner {
        padding-bottom: 76px;
    }

    .yog-home-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .yog-home-hero p {
        font-size: 1rem;
    }

    .yog-home-hero-trust {
        display: grid;
        gap: 8px;
    }

    .yog-home-scroll-cue {
        display: none;
    }

    .yog-home-section-head {
        margin-bottom: 32px;
    }

    .yog-home-tour-image {
        height: 245px;
    }

    .yog-home-tour-foot {
        align-items: flex-start;
        flex-direction: column;
    }

    .yog-home-tour-meta {
        gap: 7px 12px;
    }

    .yog-home-tour-meta span:not(:last-child)::after {
        margin-left: 12px;
    }

    .yog-home-why {
        grid-template-columns: 1fr;
    }

    .yog-home-destinations {
        grid-template-columns: 1fr;
    }

    .yog-home-destination {
        height: 280px;
    }

    .yog-home-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .yog-home-tailor-inner {
        padding-block: 84px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.yog-home-v2 :focus-visible {
    outline: 2px solid var(--yog-home-brass-soft);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    .yog-home-v2 *,
    .yog-home-v2 *::before,
    .yog-home-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .yog-home-reveal {
        opacity: 1;
        transform: none;
    }

    .yog-home-hero-media,
    .yog-home-hero-text,
    .yog-home-tailor-media {
        transform: none !important;
    }
}


/* =========================================================
   GLOBAL FOOTER ON HOMEPAGE
   ========================================================= */

body.yog-home-v2 footer.site {
    margin: 0;
    padding: 64px 0 30px;
    background: var(--yog-home-ink);
    color: rgba(246, 240, 227, .72);
    font-family: var(--yog-home-sans);
    font-size: .9rem;
}

body.yog-home-v2 footer.site .wrap {
    width: min(
        calc(100% - 56px),
        var(--yog-home-wrap)
    );
    margin-inline: auto;
}

body.yog-home-v2 footer.site .fgrid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
}

body.yog-home-v2 footer.site .flogo {
    width: 190px;
    max-width: 100%;
    height: auto;
    margin-bottom: 18px;
}

body.yog-home-v2 footer.site p {
    margin: 0;
    color: rgba(246, 240, 227, .68);
    line-height: 1.65;
}

body.yog-home-v2 footer.site h4 {
    margin: 0 0 13px;
    color: var(--yog-home-paper);
    font-family: var(--yog-home-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

body.yog-home-v2 footer.site ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.yog-home-v2 footer.site li {
    margin: 0;
    padding: 0;
}

body.yog-home-v2 footer.site a {
    display: inline-block;
    padding: 4px 0;
    color: rgba(246, 240, 227, .7);
    text-decoration: none;
    transition: color .2s ease;
}

body.yog-home-v2 footer.site a:hover {
    color: var(--yog-home-paper);
}

body.yog-home-v2 footer.site .fbot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    margin-top: 46px;
    padding-top: 22px;

    border-top: 1px solid rgba(246, 240, 227, .14);

    color: rgba(246, 240, 227, .52);
    font-size: .8rem;
}

body.yog-home-v2 footer.site .flic {
    text-align: right;
}


/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

body.yog-home-v2 .fab {
    position: fixed;
    z-index: 850;
    right: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    padding: 0;
    border-radius: 50%;

    background: #25D366;
    color: #073511;

    box-shadow:
        0 14px 34px -12px
        rgba(0, 0, 0, .45);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

body.yog-home-v2 .fab:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 38px -12px
        rgba(0, 0, 0, .5);
}

body.yog-home-v2 .fab svg {
    display: block;
    width: 27px;
    height: 27px;
}


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

@media (max-width: 850px) {

    body.yog-home-v2 footer.site .fgrid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 560px) {

    body.yog-home-v2 footer.site {
        padding-top: 50px;
    }

    body.yog-home-v2 footer.site .wrap {
        width: min(
            calc(100% - 36px),
            var(--yog-home-wrap)
        );
    }

    body.yog-home-v2 footer.site .fgrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.yog-home-v2 footer.site .flogo {
        width: 160px;
    }

    body.yog-home-v2 footer.site .fbot {
        display: block;
    }

    body.yog-home-v2 footer.site .flic {
        margin-top: 8px;
        text-align: left;
    }

    body.yog-home-v2 .fab {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

}


/* =========================================================
   HOMEPAGE POLISH 2.0.2
   ========================================================= */

/* Give hero copy a deliberate editorial inset on wide screens */
@media (min-width: 1100px) {
    .yog-home-hero-inner {
        padding-left: clamp(70px, 8vw, 145px);
    }

    .yog-home-hero-text {
        max-width: 760px;
    }
}

/* Keep normal container alignment on tablets/mobile */
@media (max-width: 1099px) {
    .yog-home-hero-inner {
        padding-left: 0;
    }
}


/* =========================================================
   HEADER LOGO + HERO ALIGNMENT
   ========================================================= */

.yog-home-brand {
    position: relative;
    display: block;
    width: 170px;
    height: 46px;
    flex: 0 0 170px;
}

.yog-home-logo {
    position: absolute;
    top: 50%;
    left: 0;

    display: block;
    width: 100%;
    max-width: 170px;
    max-height: 46px;

    object-fit: contain;
    object-position: left center;

    transform: translateY(-50%);

    transition:
        opacity .3s ease,
        transform .35s ease;
}

/* Light logo visible while navbar sits over hero */
.yog-home-logo-light {
    opacity: 1;
}

/* Dark/navy logo hidden initially */
.yog-home-logo-dark {
    opacity: 0;
}

/* Swap when navigation becomes light */
.yog-home-nav.is-scrolled .yog-home-logo-light {
    opacity: 0;
}

.yog-home-nav.is-scrolled .yog-home-logo-dark {
    opacity: 1;
}


/* Move hero copy away from the extreme browser edge */
@media (min-width: 1100px) {

    .yog-home-hero-inner {
        padding-left: clamp(75px, 7vw, 130px);
    }

    .yog-home-hero-text {
        max-width: 760px;
    }

}


@media (max-width: 1099px) {

    .yog-home-hero-inner {
        padding-left: 0;
    }

}


@media (max-width: 600px) {

    .yog-home-brand {
        width: 138px;
        height: 40px;
        flex-basis: 138px;
    }

    .yog-home-logo {
        max-width: 138px;
        max-height: 40px;
    }

}


/* Hero kicker contrast fix */
.yog-home-hero .yog-home-kicker {
    color: #FBF6EC;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, .45),
        0 2px 10px rgba(0, 0, 0, .22);
}

/* White brand mark over hero */
.yog-home-nav:not(.is-scrolled) .yog-home-logo-light {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Original brand colours on light navbar */
.yog-home-nav.is-scrolled .yog-home-logo-light {
    opacity: 0;
}

.yog-home-nav.is-scrolled .yog-home-logo-dark {
    filter: none;
    opacity: 1;
}

/* White logo in dark homepage footer */
body.yog-home-v2 footer.site .flogo {
    filter: brightness(0) invert(1);
}

/* =========================================================
   NAVIGATION HOVER STATES
   ========================================================= */

/* Smooth colour transition */
.yog-home-nav-links > a {
    transition:
        color .2s ease,
        opacity .2s ease,
        background .2s ease,
        border-color .2s ease;
}

/* Over hero: white -> brass */
.yog-home-nav:not(.is-scrolled)
.yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
    color: var(--yog-home-brass-soft);
    opacity: 1;
}

/* Light/scrolled navbar: dark -> teal */
.yog-home-nav.is-scrolled
.yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
    color: var(--yog-home-teal);
    opacity: 1;
}

/* Enquire button over hero */
.yog-home-nav:not(.is-scrolled)
.yog-home-nav-cta:hover {
    background: #FBF6EC;
    border-color: #FBF6EC;
    color: var(--yog-home-teal-deep);
    opacity: 1;
}

/* Enquire button on light navbar */
.yog-home-nav.is-scrolled
.yog-home-nav-cta:hover {
    background: var(--yog-home-teal);
    border-color: var(--yog-home-teal);
    color: var(--yog-home-paper);
    opacity: 1;
}

/* Hero navigation hover — YOG navy */
.yog-home-nav:not(.is-scrolled)
.yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
    color: #083857;
    opacity: 1;
}

/* Hero Enquire hover — YOG navy */
.yog-home-nav:not(.is-scrolled)
.yog-home-nav-cta:hover {
    background: #083857;
    border-color: #083857;
    color: #FFFFFF;
    opacity: 1;
}

/* =========================================================
   PRIMARY CTA — YOG NAVY
   ========================================================= */

.yog-home-btn-solid {
    background: #083857;
    color: #FFFFFF;
    box-shadow:
        0 12px 30px -16px rgba(8, 56, 87, .75);
}

.yog-home-btn-solid:hover {
    background: #05283E;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Keep WhatsApp green */
.yog-home-btn-whatsapp,
.yog-home-btn-whatsapp:hover {
    background: #25D366;
    color: #073511;
}

/* Primary navy buttons — force readable white text */
a.yog-home-btn-solid,
a.yog-home-btn-solid:link,
a.yog-home-btn-solid:visited {
    background: #083857;
    color: #FFFFFF;
}

a.yog-home-btn-solid:hover,
a.yog-home-btn-solid:focus {
    background: #05283E;
    color: #FFFFFF;
}

a.yog-home-btn-solid:active {
    background: #041F30;
    color: #FFFFFF;
}

/* =========================================================
   HERO DESKTOP ALIGNMENT
   ========================================================= */

@media (min-width: 1100px) {
    .yog-home-hero-inner {
        padding-left: clamp(75px, 7vw, 130px);
    }

    .yog-home-hero-text {
        max-width: 760px;
    }
}

@media (max-width: 1099px) {
    .yog-home-hero-inner {
        padding-left: 0;
    }
}

/* =========================================================
   MOBILE POLISH
   ========================================================= */

@media (max-width: 600px) {

    /* Slightly cleaner fixed header */
    .yog-home-nav {
        min-height: 64px;
    }

    .yog-home-nav.is-scrolled {
        box-shadow: 0 1px 0 rgba(23, 19, 14, .10);
    }

    /* Hero */
    .yog-home-hero-text h1 {
        line-height: .96;
    }

    /* Give hero CTAs a little more breathing room */
    .yog-home-hero-actions {
        gap: 10px;
    }

    .yog-home-hero-actions .yog-home-btn {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Smaller floating WhatsApp button on phones */
    .fab {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
    }

    .fab svg {
        width: 23px;
        height: 23px;
    }
}

/* Stack hero buttons only on very narrow phones */
@media (max-width: 360px) {
    .yog-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yog-home-hero-actions .yog-home-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   HOMEPAGE MOBILE NAV — FINAL CTA OVERRIDE
   ========================================================= */

@media (max-width: 860px) {

    .yog-home-nav.is-menu-open .yog-home-nav-links > a.yog-home-nav-cta,
    .yog-home-nav.is-menu-open .yog-home-nav-links > a.yog-home-nav-cta:link,
    .yog-home-nav.is-menu-open .yog-home-nav-links > a.yog-home-nav-cta:visited {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 100%;
        margin-top: 10px;
        padding: 13px 18px;

        background: #083857 !important;
        border: 1px solid #083857 !important;
        border-radius: 999px;

        color: #FFFFFF !important;
        font-weight: 600;
        text-align: center;

        opacity: 1 !important;
        box-shadow: none !important;
    }

    .yog-home-nav.is-menu-open .yog-home-nav-links > a.yog-home-nav-cta:hover,
    .yog-home-nav.is-menu-open .yog-home-nav-links > a.yog-home-nav-cta:focus {
        background: #05283E !important;
        border-color: #05283E !important;
        color: #FFFFFF !important;
    }
}

/* =========================================================
   HOMEPAGE MOBILE NAVIGATION — WORKING VERSION
   ========================================================= */

.yog-home-menu-toggle {
    display: none;
}

@media (max-width: 860px) {

    /* Hide desktop navigation on mobile */
    .yog-home-nav .yog-home-nav-links {
        display: none;
    }

    /* Hamburger */
    .yog-home-menu-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        margin-left: auto;
        padding: 0;

        background: transparent;
        border: 0;
        cursor: pointer;

        position: relative;
        z-index: 1002;
    }

    .yog-home-menu-toggle span {
        display: block;
        width: 23px;
        height: 2px;

        background: #FFFFFF;
        border-radius: 2px;

        transition:
            transform .25s ease,
            opacity .2s ease,
            background .25s ease;
    }

    /* Navy hamburger on light header */
    .yog-home-nav.is-scrolled .yog-home-menu-toggle span {
        background: #083857;
    }

    /* Open menu panel */
    .yog-home-nav.is-menu-open .yog-home-nav-links {
        display: flex !important;

        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 10px;

        background: #F6F0E3;
        border: 1px solid rgba(23,19,14,.12);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 18px 35px rgba(5,40,62,.16);

        z-index: 1001;
    }

    /* Normal links */
    .yog-home-nav.is-menu-open .yog-home-nav-links > a:not(.yog-home-nav-cta) {
        display: block !important;
        width: 100%;

        padding: 13px 14px;

        color: #083857 !important;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.25;

        border-bottom: 1px solid rgba(23,19,14,.08);
        text-shadow: none !important;
        opacity: 1;
    }

    .yog-home-nav.is-menu-open .yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
        color: #05283E !important;
        background: rgba(8,56,87,.06);
    }

    /* Enquire */
    .yog-home-nav.is-menu-open .yog-home-nav-links > .yog-home-nav-cta,
    .yog-home-nav.is-menu-open .yog-home-nav-links > .yog-home-nav-cta:link,
    .yog-home-nav.is-menu-open .yog-home-nav-links > .yog-home-nav-cta:visited {
        display: flex !important;
        width: 100%;

        align-items: center;
        justify-content: center;

        margin-top: 10px;
        padding: 13px 18px;

        background: #083857 !important;
        border: 1px solid #083857 !important;
        border-radius: 999px;

        color: #FFFFFF !important;
        font-weight: 600;
        opacity: 1 !important;
    }

    .yog-home-nav.is-menu-open .yog-home-nav-links > .yog-home-nav-cta:hover {
        background: #05283E !important;
        border-color: #05283E !important;
    }

    /* Hamburger becomes X */
    .yog-home-nav.is-menu-open .yog-home-menu-toggle span {
        background: #083857;
    }

    .yog-home-nav.is-menu-open .yog-home-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .yog-home-nav.is-menu-open .yog-home-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .yog-home-nav.is-menu-open .yog-home-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* =========================================================
   HOMEPAGE HEADER — STRUCTURAL ALIGNMENT
   ========================================================= */

body.yog-home-v2 .yog-home-nav {
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 0;

    transition:
        background-color .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        padding .25s ease;
}

body.yog-home-v2 .yog-home-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Exact same inset as hero text */
@media (min-width: 1100px) {
    body.yog-home-v2 .yog-home-nav-inner {
        padding-left: clamp(75px, 7vw, 130px);
    }
}

body.yog-home-v2 .yog-home-brand {
    position: relative;
    left: auto;
    margin: 0;
}

body.yog-home-v2 .yog-home-nav-links {
    margin-left: auto;
}

/* Smooth scroll state */
body.yog-home-v2 .yog-home-nav.is-scrolled {
    padding: 12px 0;
    background: rgba(246,240,227,.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Hero loses its special inset below desktop, so header does too */
@media (max-width: 1099px) {
    body.yog-home-v2 .yog-home-nav-inner {
        padding-left: 0;
    }
}

/* Homepage — restore logo to left-side position */
body.yog-home-v2 .yog-home-nav-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(24px, 4vw, 44px);
    padding-right: clamp(24px, 4vw, 44px);
}

body.yog-home-v2 .yog-home-brand {
    position: relative !important;
    left: auto !important;
    margin: 0 !important;
}

body.yog-home-v2 .yog-home-nav-links {
    margin-left: auto;
}

@media (max-width: 600px) {
    body.yog-home-v2 .yog-home-nav-inner {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   YOG HOMEPAGE DESKTOP NAV — GOLD UNDERLINE
   ========================================================= */

@media (min-width: 901px) {

    .yog-home-nav-links > a:not(.yog-home-nav-cta) {
        position: relative;
    }

    .yog-home-nav-links > a:not(.yog-home-nav-cta)::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background: #C6912E;
        transition: width .22s ease;
    }

    .yog-home-nav-links > a:not(.yog-home-nav-cta):hover::after,
    .yog-home-nav-links > a:not(.yog-home-nav-cta):focus-visible::after {
        width: 100%;
    }

    /* White text over hero */
    .yog-home-nav:not(.is-scrolled)
    .yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
        color: #FFFFFF;
        opacity: 1;
    }

    /* Dark text on scrolled navigation */
    .yog-home-nav.is-scrolled
    .yog-home-nav-links > a:not(.yog-home-nav-cta):hover {
        color: inherit;
        opacity: 1;
    }
}


/* =========================================================
   HOMEPAGE HERO — TABLET HORIZONTAL SPACING
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .yog-home-hero-inner {
        padding-left: clamp(36px, 5vw, 56px);
        padding-right: clamp(36px, 5vw, 56px);
    }

}


/* =========================================================
   HOMEPAGE HERO — SMALL TABLET SPACING
   ========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

    .yog-home-hero-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

}

/* =========================================================
   HOMEPAGE HEADER — MATCH SITE-WIDE HEADER
   ========================================================= */

body.yog-home-v2 .yog-home-nav-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
}

body.yog-home-v2 .yog-home-brand {
    width: 145px;
    height: 50px;
    flex: 0 0 145px;
    margin: 0 !important;
}

body.yog-home-v2 .yog-home-logo {
    width: 145px;
    max-width: 145px;
    max-height: 50px;
    object-fit: contain;
}

body.yog-home-v2 .yog-home-nav-links {
    margin-left: auto;
    gap: 28px;
    position: static;
    right: auto;
}

@media (max-width: 860px) {

    body.yog-home-v2 .yog-home-nav-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.yog-home-v2 .yog-home-brand {
        width: 120px;
        height: 42px;
        flex: 0 0 120px;
    }

    body.yog-home-v2 .yog-home-logo {
        width: 120px;
        max-width: 120px;
        max-height: 42px;
    }
}

