:root {
    --black: #ffffff;
    --navy: #071d49;
    --navy-deep: #03112d;
    --blue: #1268d8;
    --sky-blue: #49b9f2;
    --light-blue: #dff4ff;
    --text: #14264a;
    --muted: #5f6f89;
    --border: #dfe7f1;
    --font-body: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;
    --black: #111517;
    --gold: #BE9B65;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--gold);
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111517;
    border-bottom: 1px solid var(--gold);
    backdrop-filter: blur(16px);

}

.header__container {
    width: min(1220px, calc(100% - 64px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
}

.brand__mark {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--black);
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--sky-blue),
        var(--blue),
        var(--navy)
    );
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(18, 104, 216, 0.2);
}

.brand__name {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.1;
}

.brand__name small {
    display: block;
    margin-top: 4px;
    color: var(--blue);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.35em;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navigation__link {
    position: relative;
    padding: 8px 0;
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease;
}

.navigation__link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navigation__link:hover,
.navigation__link--active {
    color: var(--gold);
}

.navigation__link:hover::after,
.navigation__link--active::after {
    transform: scaleX(1);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    color: var(--black);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--navy);
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.header__cta:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* =========================================
   MOBILE NAVIGATION TOGGLE
========================================= */

.navigation__toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    background: transparent;

    border: 1px solid rgba(6, 29, 73, 0.18);
    border-radius: 10px;

    transition: background 0.3s ease, border-color 0.3s ease;
}

.navigation__toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--gold);

    border-radius: 10px;

    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* =========================================
   MOBILE MENU
========================================= */

@media (max-width: 800px) {
    .header {
        position: relative;
        z-index: 1000;
    }

    .header__container {
        position: relative;

        display: flex;

        align-items: center;
        justify-content: space-between;
    }

    /* Show hamburger */

    .navigation__toggle {
        display: flex;
        position: absolute;
        right: 0;
    }

    /* Navigation panel */

    .navigation {
        position: absolute;

        z-index: 999;

        top: calc(100% + 12px);

        right: 0;
        left: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: #ffffff;

        border: 1px solid rgba(6, 29, 73, 0.08);

        border-radius: 14px;

        box-shadow: 0 20px 45px rgba(6, 29, 73, 0.14);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-12px);

        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    /* Open menu */

    .navigation.navigation--open {
        opacity: 1;
        background: var(--black);
        visibility: visible;   
        margin-top:-10px;
        transform: translateY(0);
    }

    /* Links */

    .navigation__link {
        display: block;

        padding: 14px 16px;

        border-radius: 9px;
    }

    /* .navigation__link:hover,
    .navigation__link--active {
        background: var(--gold);
        color: var(--black)
    } */

    /* =========================================
       HAMBURGER TO X ANIMATION
    ========================================= */

    .navigation__toggle.navigation__toggle--active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navigation__toggle.navigation__toggle--active span:nth-child(2) {
        opacity: 0;
    }

    .navigation__toggle.navigation__toggle--active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =========================================
   FIXED HEADER
========================================= */
.logo {
    width: 100%;
  height: 120px;
}

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: var(--black);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--gold);

    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Prevent page content from hiding behind fixed navbar */

body {
    padding-top: 80px;
}











/* =========================================
   HMZ HOLDING FOOTER
========================================= */

.footer {
    --black: #111517;
    --black-deep: #0c0f10;
    --gold: #BE9B65;
    --gold-light: #d4b47f;
    --white: #f5f3ee;
    --muted: #8c8d89;
    --border: rgba(190, 155, 101, 0.22);

    position: relative;

    background:
        radial-gradient(
            circle at 10% 100%,
            rgba(190, 155, 101, 0.055),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            var(--black),
            var(--black-deep)
        );

    color: var(--white);

    overflow: hidden;
}


/* Very subtle architectural grid */

.footer::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(190, 155, 101, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(190, 155, 101, 0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;
}


.footer__container {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;
}


/* =========================================
   MAIN
========================================= */

.footer__main {
    display: grid;

    grid-template-columns:
        1.7fr
        0.7fr
        1.2fr;

    gap: 100px;

    padding: 100px 0 85px;
}


/* =========================================
   BRAND
========================================= */

.footer__brand {
    max-width: 480px;
}


.footer__logo {
    display: inline-block;

    margin-bottom: 38px;
}


.footer__logo .logo {
    width: 155px;

    display: block;
}


.footer__statement {
    margin: 0 0 22px;

    color: var(--white);

    font-size: clamp(28px, 3vw, 42px);

    font-weight: 500;

    line-height: 1.18;

    letter-spacing: -1.2px;
}


.footer__statement span {
    color: var(--gold);
}


.footer__description {
    max-width: 430px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   SOCIALS
========================================= */

.footer__socials {
    display: flex;

    gap: 9px;

    margin-top: 32px;
}


.footer__socials a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer__socials a:hover {
    border-color: var(--gold);

    color: var(--gold);

    background: rgba(190, 155, 101, 0.06);

    transform: translateY(-3px);
}


/* =========================================
   LABEL
========================================= */

.footer__label {
    display: inline-block;

    margin-bottom: 30px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.footer__label::after {
    content: "";

    display: block;

    width: 25px;
    height: 1px;

    margin-top: 12px;

    background: var(--gold);
}


/* =========================================
   NAVIGATION
========================================= */

.footer__navigation {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer__navigation a {
    margin-bottom: 16px;

    color: var(--muted);

    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer__navigation a:hover {
    color: var(--gold-light);

    transform: translateX(5px);
}


/* =========================================
   CONTACT
========================================= */

.footer__contact {
    max-width: 350px;
}


.footer__contact-text {
    max-width: 300px;

    margin: -3px 0 22px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.footer__email {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 9px;

    border-bottom: 1px solid var(--gold);

    color: var(--white);

    font-size: 17px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer__email i {
    color: var(--gold);

    font-size: 11px;

    transition: transform 0.3s ease;
}


.footer__email:hover {
    color: var(--gold-light);
}


.footer__email:hover i {
    transform: translate(3px, -3px);
}


/* Contact details */

.footer__contact-details {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
}


.footer__contact-details a {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer__contact-details a i {
    width: 18px;

    color: var(--gold);

    font-size: 13px;
}


.footer__contact-details a:hover {
    color: var(--gold-light);
}


/* =========================================
   GOLD LINE
========================================= */

.footer__line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(190, 155, 101, 0.5) 20%,
            rgba(190, 155, 101, 0.5) 80%,
            transparent
        );
}


/* =========================================
   BOTTOM
========================================= */

.footer__bottom {
    min-height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer__bottom p {
    margin: 0;

    color: #686a67;

    font-size: 11px;
}


.footer__legal {
    display: flex;

    gap: 28px;
}


.footer__legal a {
    color: #686a67;

    font-size: 11px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer__legal a:hover {
    color: var(--gold);
}


/* =========================================
   BACK TO TOP
========================================= */

.footer__back-top {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 11px;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}


.footer__back-top span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    color: var(--gold);

    transition: all 0.3s ease;
}


.footer__back-top:hover {
    color: var(--gold);
}


.footer__back-top:hover span {
    border-color: var(--gold);

    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .footer__main {
        grid-template-columns: 1.4fr 1fr;

        gap: 60px;
    }

    .footer__contact {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer__main {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 70px 0 55px;
    }

    .footer__contact {
        grid-column: auto;
    }

    .footer__statement {
        font-size: 30px;
    }

    .footer__bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 22px 0;

        gap: 20px;
    }

    .footer__legal {
        flex-wrap: wrap;

        gap: 15px 25px;
    }

}

/* =========================================================
   HMZ HERO
========================================================= */

.hmz-hero {
    position: relative;
    min-height: calc(100vh - 102px);
    background: #0b0d0e;
    color: #f4f1eb;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.hmz-hero__container {
    width: min(100% - 120px, 1450px);
    min-height: calc(100vh - 102px);

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.98fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.hmz-hero__content {
    position: relative;

    padding: 70px 0 55px;

    min-height: 700px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.hmz-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 34px;

    color: #d8b88d;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.hmz-hero__eyebrow b {
    font-weight: 400;
    color: #8d7b66;
}


/* =========================================================
   TITLE
========================================================= */

.hmz-hero__title {
    max-width: 780px;

    margin: 0;

    color: #f5f4f1;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(58px, 5.2vw, 88px);

    font-weight: 500;

    line-height: 0.94;

    letter-spacing: -2.8px;
}

.hmz-hero__title em {
    color: #dfbd91;

    font-style: italic;

    font-weight: 400;

    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hmz-hero__description {
    max-width: 650px;

    margin: 34px 0 34px;

    color: #d0cdca;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 21px;

    line-height: 1.45;

    letter-spacing: 0.1px;
}


/* =========================================================
   CTA
========================================================= */

.hmz-hero__actions {
    margin-top: 2px;
}

.hmz-hero__button {
    width: fit-content;

    min-width: 315px;
    height: 56px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 1px solid #c9a97c;

    color: #e3d4c1;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 3px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.hmz-hero__button strong {
    font-size: 20px;

    font-weight: 300;

    line-height: 1;

    transition: transform 0.35s ease;
}

.hmz-hero__button:hover {
    background: #d0ae80;

    color: #101111;

    transform: translateY(-2px);
}

.hmz-hero__button:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   BUSINESS DOMAINS
========================================================= */

.hmz-hero__domains {
    width: 100%;

    margin-top: 55px;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


.hmz-hero__domain {
    min-height: 63px;

    padding: 0 30px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hmz-hero__domain:first-child {
    padding-left: 0;
}

.hmz-hero__domain:last-child {
    border-right: none;
}


.hmz-hero__domain-icon {
    width: 28px;

    padding-top: 4px;

    color: #d8b88d;

    font-size: 22px;

    flex-shrink: 0;
}


.hmz-hero__domain-content span {
    display: block;

    margin-bottom: 7px;

    color: #ded4c8;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;
}


.hmz-hero__domain-content p {
    margin: 0;

    color: #aaa6a1;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 15px;

    line-height: 1.25;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hmz-hero__scroll {
    position: absolute;

    left: 8px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 23px;
}


.hmz-hero__scroll-line {
    width: 1px;
    height: 64px;

    background: #d3d0ca;
}


.hmz-hero__scroll-text {
    display: flex;
    flex-direction: column;

    gap: 5px;

    color: #666664;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    line-height: 1.2;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.hmz-hero__visual {
    position: relative;

    width: 100%;
    height: min(705px, calc(100vh - 155px));

    min-height: 600px;

    overflow: hidden;

    background: #151515;
}


.hmz-hero__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    filter: brightness(0.88) contrast(1.05);

    transform: scale(1.01);

    transition: transform 1.2s ease;
}

.hmz-hero__visual:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hmz-hero__visual-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 8, 0.02) 30%,
            rgba(5, 7, 8, 0.12) 50%,
            rgba(5, 7, 8, 0.86) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.hmz-hero__visual-frame {
    position: absolute;

    inset: 28px;

    border: 1px solid rgba(221, 193, 156, 0.65);

    pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.hmz-hero__visual-label {
    position: absolute;

    right: 55px;
    bottom: 92px;

    z-index: 2;

    color: #f2eee8;
}


.hmz-hero__visual-label span {
    display: block;

    margin-bottom: 12px;

    color: #d9c09d;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;
}


.hmz-hero__visual-label p {
    margin: 0;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 29px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.5px;
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.hmz-hero__slider {
    position: absolute;

    right: 55px;
    bottom: 31px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;

    color: #ddd7cf;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;
}


.hmz-hero__slider-current {
    color: #f0e9df;
}


.hmz-hero__slider-total {
    color: #8f8b85;
}


.hmz-hero__slider-separator {
    color: #77736e;
}


.hmz-hero__slider-divider {
    width: 1px;
    height: 22px;

    margin: 0 8px;

    background: rgba(255, 255, 255, 0.18);
}


.hmz-hero__slider-button {
    width: 24px;
    height: 24px;

    padding: 0;

    border: none;

    background: transparent;

    color: #e1dbd2;

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: 300;

    line-height: 20px;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.hmz-hero__slider-button:hover {
    color: #d8b88d;

    transform: translateX(2px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1350px) {

    .hmz-hero__container {
        width: min(100% - 80px, 1250px);

        gap: 50px;
    }

    .hmz-hero__title {
        font-size: clamp(55px, 5.2vw, 78px);
    }

    .hmz-hero__description {
        font-size: 19px;
    }

    .hmz-hero__visual {
        height: 650px;
        min-height: 580px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hmz-hero__container {
        width: min(100% - 60px, 850px);

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 0;
    }

    .hmz-hero__content {
        min-height: auto;

        padding: 20px 0 0;
    }

    .hmz-hero__title {
        max-width: 800px;

        font-size: clamp(55px, 8vw, 80px);
    }

    .hmz-hero__visual {
        height: 600px;
        min-height: 500px;
    }

    .hmz-hero__scroll {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hmz-hero {
        min-height: auto;
    }

    .hmz-hero__container {
        width: calc(100% - 36px);

        padding: 45px 0 50px;

        gap: 45px;
    }

    .hmz-hero__content {
        padding: 0;
    }

    .hmz-hero__eyebrow {
        flex-wrap: wrap;

        gap: 8px;

        margin-bottom: 25px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .hmz-hero__title {
        font-size: clamp(48px, 13vw, 65px);

        line-height: 0.95;

        letter-spacing: -2px;
    }

    .hmz-hero__title em {
        letter-spacing: -2px;
    }

    .hmz-hero__description {
        margin: 27px 0;

        font-size: 18px;

        line-height: 1.4;
    }

    .hmz-hero__button {
        width: 100%;

        min-width: 0;

        height: 54px;

        padding: 0 20px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .hmz-hero__domains {
        margin-top: 40px;

        padding-top: 25px;

        grid-template-columns: 1fr;

        gap: 22px;
    }

    .hmz-hero__domain {
        padding: 0 0 22px;

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hmz-hero__domain:last-child {
        padding-bottom: 0;

        border-bottom: none;
    }

    .hmz-hero__visual {
        height: 500px;
        min-height: 0;
    }

    .hmz-hero__visual-frame {
        inset: 18px;
    }

    .hmz-hero__visual-label {
        right: 35px;
        bottom: 85px;
    }

    .hmz-hero__visual-label p {
        font-size: 25px;
    }

    .hmz-hero__slider {
        right: 32px;
        bottom: 27px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .hmz-hero__container {
        width: calc(100% - 28px);
    }

    .hmz-hero__title {
        font-size: 45px;
    }

    .hmz-hero__description {
        font-size: 17px;
    }

    .hmz-hero__visual {
        height: 430px;
    }

    .hmz-hero__visual-label {
        right: 28px;
        bottom: 80px;
    }

    .hmz-hero__visual-label p {
        font-size: 22px;
    }

    .hmz-hero__slider {
        right: 25px;
    }
}


/* =========================================
   ABOUT SECTION
========================================= */

.hmz-story-about {
    width: 100%;
    background: #0c0e0e;
    overflow: hidden;
}


/* =========================================
   MAIN LAYOUT
   TEXT = LEFT
   IMAGE = RIGHT
========================================= */

.hmz-story-main {
    width: 100%;

    display: grid;

    /* LEFT 43% | RIGHT 57% */
    grid-template-columns: 43% 57%;

    min-height: 670px;
}


/* =========================================
   LEFT — TEXT
========================================= */

.hmz-story-about__content {
    order: 1;

    position: relative;

    min-width: 0;

    padding: 80px 70px 75px 7.5%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #eee3d5;

    color: #202224;
}


/* =========================================
   RIGHT — IMAGE
========================================= */

.hmz-story-about__image {
    order: 2;

    position: relative;

    width: 100%;
    height: 670px;

    overflow: hidden;

    background: #151515;
}


.hmz-story-about__image > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    filter:
        brightness(.82)
        contrast(1.08)
        saturate(.85);

    transform: scale(1.01);

    transition: transform 1.2s ease;
}


.hmz-story-about__image:hover > img {
    transform: scale(1.04);
}


/* =========================================
   EYEBROW
========================================= */

.hmz-story-about__eyebrow {
    margin-bottom: 25px;

    color: #866d54;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================
   TITLE
========================================= */

.hmz-story-about__title {
    margin: 0 0 27px;

    color: #202224;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(52px, 4.3vw, 75px);

    font-weight: 500;

    line-height: .94;

    letter-spacing: -2.5px;
}


.hmz-story-about__title em {
    color: #a48768;

    font-style: italic;

    font-weight: 400;
}


/* =========================================
   DESCRIPTION
========================================= */

.hmz-story-about__description {
    max-width: 650px;
}


.hmz-story-about__description p {
    margin: 0 0 18px;

    color: #353331;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.34;
}


.hmz-story-about__description strong {
    color: #222;

    font-weight: 600;
}


/* =========================================
   BUTTON
========================================= */

.hmz-story-link {
    width: 243px;
    height: 45px;

    margin-top: 5px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #9b8b7b;

    color: #776553;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 3px;

    transition: all .3s ease;
}


.hmz-story-link strong {
    font-family: Georgia, serif;

    font-size: 19px;

    font-weight: 400;

    transition: transform .3s ease;
}


.hmz-story-link:hover {
    background: #1b1d1c;

    border-color: #1b1d1c;

    color: #eee3d5;
}


.hmz-story-link:hover strong {
    transform: translateX(5px);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.hmz-story-about__image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, .18),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            rgba(7, 8, 8, .35),
            transparent 30%,
            transparent 55%,
            rgba(8, 8, 8, .62)
        );

    pointer-events: none;
}


/* =========================================
   IMAGE TOP RIGHT
========================================= */

.hmz-story-about__image-top {
    position: absolute;

    top: 35px;
    right: 40px;

    z-index: 3;

    display: flex;
    flex-direction: column;

    color: #d6bd9e;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    letter-spacing: 4px;

    line-height: 1.8;
}


/* =========================================
   HMZ IMAGE BRAND
========================================= */

.hmz-story-about__image-brand {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 3;

    width: 245px;
    min-height: 310px;

    padding: 40px;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(18, 17, 16, .78);

    border: 1px solid rgba(213, 185, 149, .16);

    color: #e9dfd3;

    backdrop-filter: blur(2px);
}


.hmz-story-about__brand-logo {
    font-family:
        "Times New Roman",
        Georgia,
        serif;

    font-size: 44px;

    line-height: .8;

    letter-spacing: -4px;
}


.hmz-story-about__image-brand > span {
    margin-top: 8px;

    color: #bba387;

    font-family: "Inter", sans-serif;

    font-size: 7px;

    letter-spacing: 5px;
}


.hmz-story-about__brand-line {
    width: 40px;
    height: 1px;

    margin: 22px 0;

    background: #bca17e;
}


.hmz-story-about__image-brand p {
    margin: 0;

    color: #c7b49e;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 3px;

    line-height: 1.8;
}


.hmz-story-about__image-brand small {
    margin-top: 4px;

    color: #dfc6a2;

    font-family: "Inter", sans-serif;

    font-size: 6px;

    letter-spacing: 2px;
}


/* =========================================
   FLOATING CARD ON IMAGE
========================================= */

.hmz-story-about__image-caption {
    position: absolute;

    right: 8%;
    bottom: 48px;

    z-index: 5;

    min-width: 350px;

    padding: 27px 32px;

    display: flex;

    align-items: center;

    gap: 22px;

    background: #eee3d5;

    color: #17191a;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .22);
}


.hmz-story-about__caption-line {
    width: 1px;
    height: 86px;

    flex-shrink: 0;

    background: #76695e;
}


.hmz-story-about__image-caption h3 {
    margin: 0 0 3px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 28px;

    font-weight: 500;

    line-height: 1;
}


.hmz-story-about__image-caption em {
    color: #a28769;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 26px;

    font-style: italic;
}


/* =========================================
   BOTTOM DARK BAND
========================================= */

.hmz-story-about__bottom {
    min-height: 130px;

    padding: 28px 5.7%;

    display: grid;

    grid-template-columns:
        1.25fr
        1fr
        1fr
        1.35fr
        .55fr;

    align-items: center;

    background:
        linear-gradient(
            115deg,
            #111313,
            #191817
        );

    color: #e7ddd1;
}


/* =========================================
   BOTTOM TITLE
========================================= */

.hmz-story-about__bottom-title {
    padding-right: 35px;

    border-right:
        1px solid rgba(218, 193, 163, .5);
}


.hmz-story-about__bottom-title h3 {
    margin: 0;

    color: #e9dfd4;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;

    font-weight: 500;

    line-height: .95;
}


/* =========================================
   FEATURES
========================================= */

.hmz-story-about__feature {
    min-height: 68px;

    padding: 0 35px;

    display: flex;

    align-items: center;

    gap: 18px;

    border-right:
        1px solid rgba(255, 255, 255, .11);
}


.hmz-story-about__feature-icon {
    width: 42px;

    flex-shrink: 0;

    color: #d4b48c;

    font-size: 31px;
}


.hmz-story-about__feature span {
    display: block;

    margin-bottom: 7px;

    color: #d8c2a5;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    letter-spacing: 3px;
}


.hmz-story-about__feature p {
    margin: 0;

    color: #a8a39c;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 14px;

    line-height: 1.25;
}


/* =========================================
   BOTTOM BRAND
========================================= */

.hmz-story-about__bottom-brand {
    padding-left: 30px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    color: #bca489;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .hmz-story-main {
        grid-template-columns: 1fr;
    }

    /* text stays first */
    .hmz-story-about__content {
        order: 1;

        padding: 70px 8%;
    }

    /* image stays second */
    .hmz-story-about__image {
        order: 2;

        height: 620px;
    }

    .hmz-story-about__bottom {
        grid-template-columns: 1fr 1fr;

        padding: 40px 7%;

        gap: 30px;
    }

    .hmz-story-about__bottom-title {
        grid-column: span 2;

        border-right: none;

        padding-bottom: 25px;

        border-bottom:
            1px solid rgba(218, 193, 163, .3);
    }

    .hmz-story-about__bottom-brand {
        display: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .hmz-story-main {
        display: flex;
        flex-direction: column;
    }

    /* LEFT TEXT */
    .hmz-story-about__content {
        order: 1;

        padding: 55px 24px 60px;
    }

    /* RIGHT IMAGE */
    .hmz-story-about__image {
        order: 2;

        width: 100%;

        height: 550px;
    }

    .hmz-story-about__title {
        font-size: clamp(45px, 13vw, 62px);

        letter-spacing: -2px;
    }

    .hmz-story-about__description p {
        font-size: 17px;
    }

    .hmz-story-about__image-caption {
        right: 18px;
        bottom: 25px;

        width: calc(100% - 36px);

        min-width: 0;

        padding: 22px;
    }

    .hmz-story-about__image-caption h3 {
        font-size: 24px;
    }

    .hmz-story-about__image-caption em {
        font-size: 22px;
    }

    .hmz-story-about__bottom {
        display: flex;

        flex-direction: column;

        padding: 40px 24px;
    }

    .hmz-story-about__bottom-title {
        width: 100%;

        padding: 0 0 25px;

        margin-bottom: 5px;
    }

    .hmz-story-about__feature {
        width: 100%;

        padding: 20px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, .1);
    }
}


/* =========================================================
   HMZ — OUR BUSINESSES
========================================================= */

.hmz-businesses {
    position: relative;

    width: 100%;

    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(190, 150, 105, 0.08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #111414 0%,
            #0d1010 55%,
            #151311 100%
        );

    color: #f4f0ea;

    overflow: hidden;
}


/* =========================================================
   TOP HEADER
========================================================= */

.hmz-businesses__header {
    min-height: 310px;

    padding-top: 72px;
    padding-bottom: 45px;

    align-items: flex-end;
}


/* =========================================================
   EYEBROW
========================================================= */

.hmz-businesses__eyebrow {
    margin-bottom: 12px;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 4px;

    color: #cda97c;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.hmz-businesses__heading {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        58px,
        5.4vw,
        86px
    );

    font-weight: 400;

    line-height: 0.87;

    letter-spacing: -2.5px;

    color: #f3f0eb;
}


.hmz-businesses__heading em {
    color: #d7b18a;

    font-style: italic;
}


/* =========================================================
   INTRO AREA
========================================================= */

.hmz-businesses__intro {
    display: flex;

    width: 100%;

    min-height: 95px;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.hmz-businesses__intro-text {
    width: 65%;

    padding-left: 42px;
    padding-right: 35px;

    border-left:
        1px solid
        rgba(230, 215, 195, 0.65);

    display: flex;
    align-items: flex-start;
}


.hmz-businesses__intro-text p {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.3;

    color: #e5ded6;
}


/* =========================================================
   INTRO SIDE WORDS
========================================================= */

.hmz-businesses__intro-side {
    width: 35%;

    padding-left: 42px;

    border-left:
        1px solid
        rgba(230, 215, 195, 0.45);

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;
}


.hmz-businesses__intro-side span {
    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #cda97c;
}


/* =========================================================
   BUSINESS CARDS AREA
========================================================= */

.hmz-businesses__cards {
    width: 100%;

    border-top:
        1px solid
        rgba(220, 205, 185, 0.28);

    border-bottom:
        1px solid
        rgba(220, 205, 185, 0.28);
}


/*
    Bootstrap row:

    ┌──────────────┬──────────────┬──────────────┐
    │    CARD 01   │    CARD 02   │    CARD 03   │
    └──────────────┴──────────────┴──────────────┘
*/

.hmz-businesses__cards > .row {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================================
   BOOTSTRAP COLUMNS
========================================================= */

.hmz-businesses__cards .col-lg-4,
.hmz-businesses__cards .col-md-6 {
    padding-left: 0;
    padding-right: 0;

    display: flex;
}


/* =========================================================
   BUSINESS CARD
========================================================= */

.hmz-business-card {
    position: relative;

    width: 100%;

    min-height: 495px;

    background: #111414;

    border-right:
        1px solid
        rgba(220, 205, 185, 0.28);

    overflow: hidden;
}


.hmz-businesses__cards
.col-lg-4:last-child
.hmz-business-card {
    border-right: none;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.hmz-business-card__image {
    position: relative;

    width: 100%;

    height: 245px;

    overflow: hidden;
}


.hmz-business-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(.2, .65, .2, 1),

        filter 0.8s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.hmz-business-card:hover
.hmz-business-card__image img {
    transform: scale(1.06);

    filter: brightness(0.82);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hmz-business-card__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.65) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.hmz-business-card__number {
    position: absolute;

    top: 12px;
    left: 27px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 72px;

    font-weight: 400;

    font-style: italic;

    line-height: 1;

    letter-spacing: -3px;

    color:
        rgba(
            232,
            215,
            191,
            0.48
        );

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.hmz-business-card__content {
    min-height: 250px;

    padding:
        25px
        68px
        32px;

    background:
        linear-gradient(
            180deg,
            #121515 0%,
            #101313 100%
        );
}


/* =========================================================
   CATEGORY
========================================================= */

.hmz-business-card__category {
    margin-bottom: 8px;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #d3ad7e;
}


/* =========================================================
   CARD TITLE
========================================================= */

.hmz-business-card__content h3 {
    margin: 0 0 14px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 32px;

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.7px;

    color: #f4f0eb;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.hmz-business-card__content p {
    margin: 0;

    max-width: 420px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.28;

    color: #ddd6ce;
}


/* =========================================================
   LEARN MORE
========================================================= */

.hmz-business-card__link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 22px;

    padding-bottom: 9px;

    border-bottom:
        1px solid
        #cda97c;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #f2ede6;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.hmz-business-card__link:hover {
    gap: 22px;

    color: #d7b387;
}


.hmz-business-card__arrow {
    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 0;

    letter-spacing: 0;
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.hmz-businesses__bottom {
    min-height: 120px;

    padding-top: 25px;
    padding-bottom: 25px;
}


/* =========================================================
   BOTTOM LABELS
========================================================= */

.hmz-businesses__bottom-label {
    position: relative;

    padding-left: 21px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    border-left:
        1px solid
        #cda97c;
}


.hmz-businesses__bottom-label span {
    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #cda97c;
}


.hmz-businesses__bottom-label--right {
    padding-left: 30px;
}


/* =========================================================
   CENTER CTA
========================================================= */

.hmz-businesses__cta {
    width: 100%;

    max-width: 425px;

    min-height: 58px;

    padding:
        0
        30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    border:
        1px solid
        #cda97c;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #d9b78f;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


.hmz-businesses__cta:hover {
    background: #cda97c;

    color: #111414;
}


.hmz-businesses__cta-arrow {
    font-family: Arial, sans-serif;

    font-size: 19px;

    line-height: 1;

    letter-spacing: 0;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hmz-businesses
    > .container {
        max-width: 1470px;
    }


    .hmz-business-card__image {
        height: 245px;
    }


    .hmz-business-card__content {
        padding-left: 70px;
        padding-right: 70px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .hmz-businesses__heading {
        font-size: 68px;
    }


    .hmz-business-card__content {
        padding-left: 40px;
        padding-right: 40px;
    }

}


@media (max-width: 991px) {

    .hmz-businesses__header {
        padding-top: 60px;
        padding-bottom: 45px;
    }


    .hmz-businesses__heading {
        margin-bottom: 40px;
    }


    .hmz-businesses__intro {
        max-width: 700px;
    }


    /*
        At tablet width:

        Card 01 | Card 02
        Card 03
    */

    .hmz-businesses__cards
    .col-lg-4 {
        width: 50%;
    }


    .hmz-business-card {
        border-bottom:
            1px solid
            rgba(220, 205, 185, 0.28);
    }


    .hmz-businesses__cards
    .col-lg-4:nth-child(2)
    .hmz-business-card {
        border-right: none;
    }


    .hmz-business-card__image {
        height: 230px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hmz-businesses__header {
        min-height: auto;

        padding-top: 55px;
        padding-bottom: 40px;
    }


    .hmz-businesses__eyebrow {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .hmz-businesses__heading {
        font-size: 53px;

        line-height: 0.92;

        letter-spacing: -1.5px;

        margin-bottom: 40px;
    }


    /* INTRO */

    .hmz-businesses__intro {
        display: block;

        min-height: auto;
    }


    .hmz-businesses__intro-text {
        width: 100%;

        padding-left: 20px;
        padding-right: 10px;
    }


    .hmz-businesses__intro-side {
        width: 100%;

        margin-top: 25px;

        padding-left: 20px;
    }


    /* CARDS */

    .hmz-businesses__cards
    .col-lg-4 {
        width: 100%;
    }


    .hmz-business-card {
        border-right: none;

        border-bottom:
            1px solid
            rgba(220, 205, 185, 0.28);
    }


    .hmz-business-card__image {
        height: 245px;
    }


    .hmz-business-card__number {
        font-size: 68px;

        left: 22px;
    }


    .hmz-business-card__content {
        min-height: auto;

        padding:
            28px
            25px
            35px;
    }


    .hmz-business-card__content h3 {
        font-size: 32px;
    }


    .hmz-business-card__content p {
        font-size: 17px;
    }


    /* BOTTOM */

    .hmz-businesses__bottom {
        min-height: auto;

        padding-top: 40px;
        padding-bottom: 45px;
    }


    .hmz-businesses__bottom
    > div {
        margin-bottom: 30px;
    }


    .hmz-businesses__bottom
    > div:last-child {
        margin-bottom: 0;
    }


    .hmz-businesses__bottom-label--right {
        padding-left: 22px;
    }


    .hmz-businesses__cta {
        min-height: 55px;

        font-size: 9px;

        letter-spacing: 3px;
    }

}


/* =========================================================
   HMZ — OUR APPROACH
========================================================= */

.hmz-approach {
    position: relative;

    width: 100%;

    background: #111313;

    color: #f3eee7;

    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.hmz-approach__hero {
    width: 100%;
}


/* =========================================================
   LEFT CONTENT PANEL
========================================================= */

.hmz-approach__content {
    position: relative;

    min-height: 515px;

    padding:
        48px
        70px
        45px
        max(6vw, 70px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f4eee5 0%,
            #eee2d3 100%
        );

    color: #171817;
}


/* =========================================================
   EYEBROW
========================================================= */

.hmz-approach__eyebrow {
    margin-bottom: 15px;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 4px;

    color: #272522;
}


/* =========================================================
   HEADING
========================================================= */

.hmz-approach__heading {
    margin: 0 0 27px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        55px,
        5vw,
        78px
    );

    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -2.5px;

    color: #151615;
}


.hmz-approach__heading em {
    color: #a98360;

    font-style: italic;
}


/* =========================================================
   BODY TEXT
========================================================= */

.hmz-approach__text {
    max-width: 625px;
}


.hmz-approach__text p {
    margin: 0 0 15px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.3;

    color: #272522;
}


.hmz-approach__text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   STATEMENT
========================================================= */

.hmz-approach__statement {
    margin-top: 27px;

    display: flex;

    align-items: center;

    gap: 40px;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #3d3934;
}


.hmz-approach__statement-line {
    width: 55px;

    height: 1px;

    flex-shrink: 0;

    background: #282622;
}


/* =========================================================
   IMAGE
========================================================= */

.hmz-approach__visual {
    position: relative;

    width: 100%;

    height: 515px;

    overflow: hidden;
}


.hmz-approach__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1s
        cubic-bezier(.2, .65, .2, 1);
}


.hmz-approach__visual:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hmz-approach__visual-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 15, .08),
            transparent 45%,
            rgba(10, 10, 10, .22)
        );

    pointer-events: none;
}


/* =========================================================
   RIGHT DARK PANEL
========================================================= */

.hmz-approach__side {
    position: relative;

    min-height: 515px;

    background:
        linear-gradient(
            135deg,
            #1a1816 0%,
            #111313 100%
        );

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        115px
        30px
        18px;
}


/* =========================================================
   SIDE WORDS
========================================================= */

.hmz-approach__side-words {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.hmz-approach__side-words span {
    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #cda97c;
}


/* =========================================================
   SIDE BOTTOM
========================================================= */

.hmz-approach__side-bottom {
    display: flex;

    align-items: center;

    gap: 25px;
}


.hmz-approach__side-line {
    width: 1px;

    height: 50px;

    flex-shrink: 0;

    background: #d5c5b2;
}


.hmz-approach__side-bottom div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.hmz-approach__side-bottom div span {
    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #eee7de;
}


/* =========================================================
   THREE PRINCIPLES
========================================================= */

.hmz-approach__principles {
    width: 100%;

    border-top:
        1px solid
        rgba(218, 201, 180, .27);

    border-bottom:
        1px solid
        rgba(218, 201, 180, .27);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(174, 139, 103, .07),
            transparent 35%
        ),
        #111414;
}


.hmz-approach__principles .row {
    margin-left: 0;
    margin-right: 0;
}


.hmz-approach__principles
.col-lg-4 {
    padding-left: 0;
    padding-right: 0;

    display: flex;
}


/* =========================================================
   PRINCIPLE
========================================================= */

.hmz-approach__principle {
    position: relative;

    width: 100%;

    min-height: 202px;

    padding:
        25px
        50px
        25px
        70px;

    display: flex;

    gap: 45px;

    border-right:
        1px solid
        rgba(218, 201, 180, .30);
}


.hmz-approach__principles
.col-lg-4:last-child
.hmz-approach__principle {
    border-right: none;
}


/* =========================================================
   PRINCIPLE NUMBER
========================================================= */

.hmz-approach__principle-number {
    flex-shrink: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 76px;

    font-style: italic;

    font-weight: 400;

    line-height: .9;

    letter-spacing: -3px;

    color: rgba(177, 154, 128, .38);
}


/* =========================================================
   PRINCIPLE CONTENT
========================================================= */

.hmz-approach__principle-content {
    padding-top: 5px;
}


/* =========================================================
   LABEL
========================================================= */

.hmz-approach__principle-label {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 17px;
}


.hmz-approach__principle-label span {
    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #d1a97b;
}


.hmz-approach__principle-label i {
    width: 48px;

    height: 1px;

    display: block;

    background: #cda97c;
}


/* =========================================================
   PRINCIPLE HEADING
========================================================= */

.hmz-approach__principle h3 {
    margin: 0 0 12px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.5px;

    color: #f2ede7;
}


/* =========================================================
   PRINCIPLE DESCRIPTION
========================================================= */

.hmz-approach__principle p {
    max-width: 360px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 16px;

    line-height: 1.25;

    color: #ded7cf;
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.hmz-approach__footer {
    min-height: 105px;

    padding:
        20px
        40px;

    background:
        linear-gradient(
            90deg,
            #101313,
            #121515
        );
}


/* =========================================================
   VALUES
========================================================= */

.hmz-approach__values {
    display: flex;

    align-items: center;

    gap: 25px;
}


.hmz-approach__values span {
    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #cda97c;
}


.hmz-approach__values i {
    width: 1px;

    height: 24px;

    display: block;

    background: rgba(210, 193, 172, .45);
}


/* =========================================================
   CENTER LINE
========================================================= */

.hmz-approach__footer-line {
    width: 100%;

    height: 1px;

    background:
        rgba(207, 190, 167, .40);
}


/* =========================================================
   FOOTER CTA
========================================================= */

.hmz-approach__footer-cta {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 30px;
}


.hmz-approach__footer-message {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hmz-approach__footer-message span {
    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #d1aa7c;
}


/* =========================================================
   ROUND ARROW
========================================================= */

.hmz-approach__footer-arrow {
    width: 64px;

    height: 64px;

    border:
        1px solid
        #cda97c;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 23px;

    font-weight: 300;

    color: #d3ad7e;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.hmz-approach__footer-arrow:hover {
    background: #cda97c;

    color: #111313;

    transform: translateX(3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hmz-approach__content {
        padding-left: 6vw;
        padding-right: 70px;
    }


    .hmz-approach__heading {
        font-size: 80px;
    }


    .hmz-approach__principle {
        padding-left: 6vw;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .hmz-approach__content {
        padding-left: 50px;
        padding-right: 45px;
    }


    .hmz-approach__heading {
        font-size: 61px;
    }


    .hmz-approach__principle {
        padding-left: 35px;
        padding-right: 30px;

        gap: 25px;
    }


    .hmz-approach__principle-number {
        font-size: 65px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991px) {

    /* HERO */

    .hmz-approach__content {
        min-height: 500px;

        padding:
            60px
            45px;
    }


    .hmz-approach__visual {
        height: 420px;
    }


    .hmz-approach__side {
        min-height: 420px;

        padding:
            50px
            30px
            25px;
    }


    /* PRINCIPLES */

    .hmz-approach__principles
    .col-lg-4 {
        width: 100%;
    }


    .hmz-approach__principle {
        min-height: 180px;

        border-right: none;

        border-bottom:
            1px solid
            rgba(218, 201, 180, .30);
    }


    .hmz-approach__principles
    .col-lg-4:last-child
    .hmz-approach__principle {
        border-bottom: none;
    }


    /* FOOTER */

    .hmz-approach__footer {
        padding:
            30px
            25px;
    }


    .hmz-approach__values {
        margin-bottom: 25px;
    }


    .hmz-approach__footer-line {
        margin-bottom: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* HERO CONTENT */

    .hmz-approach__content {
        min-height: auto;

        padding:
            55px
            25px
            50px;
    }


    .hmz-approach__eyebrow {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .hmz-approach__heading {
        font-size: 53px;

        line-height: .91;

        letter-spacing: -1.5px;

        margin-bottom: 28px;
    }


    .hmz-approach__text p {
        font-size: 17px;
    }


    .hmz-approach__statement {
        gap: 20px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .hmz-approach__statement-line {
        width: 35px;
    }


    /* IMAGE */

    .hmz-approach__visual {
        height: 320px;
    }


    /* SIDE */

    .hmz-approach__side {
        min-height: 240px;

        padding:
            40px
            25px
            25px;
    }


    .hmz-approach__side-words {
        gap: 5px;
    }


    .hmz-approach__side-bottom {
        margin-top: 40px;
    }


    /* PRINCIPLES */

    .hmz-approach__principle {
        min-height: auto;

        padding:
            35px
            25px;

        gap: 25px;
    }


    .hmz-approach__principle-number {
        font-size: 60px;

        letter-spacing: -2px;
    }


    .hmz-approach__principle h3 {
        font-size: 28px;
    }


    .hmz-approach__principle p {
        font-size: 16px;
    }


    /* FOOTER */

    .hmz-approach__footer {
        padding:
            35px
            25px;
    }


    .hmz-approach__values {
        flex-wrap: wrap;

        gap: 15px;
    }


    .hmz-approach__values i {
        height: 18px;
    }


    .hmz-approach__footer-cta {
        justify-content: space-between;

        gap: 20px;
    }


    .hmz-approach__footer-arrow {
        width: 55px;

        height: 55px;

        flex-shrink: 0;
    }

}

/* =========================================================
   HMZ — OUR MISSION
========================================================= */

.hmz-mission {
    position: relative;

    width: 100%;

    padding-top: 75px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(194, 153, 108, .08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #101313 0%,
            #0d1010 55%,
            #171513 100%
        );

    color: #f3eee7;

    overflow: hidden;
}


/* =========================================================
   TOP LABEL
========================================================= */

.hmz-mission__top {
    display: flex;

    align-items: center;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        rgba(218, 201, 180, .28);
}


.hmz-mission__eyebrow,
.hmz-mission__top-text {
    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3.5px;
}


.hmz-mission__eyebrow {
    color: #d0a979;
}


.hmz-mission__top-text {
    color: rgba(225, 215, 202, .55);
}


.hmz-mission__top-line {
    width: 65px;

    height: 1px;

    background:
        rgba(210, 188, 163, .55);
}


/* =========================================================
   MAIN
========================================================= */

.hmz-mission__main {
    min-height: 410px;

    padding:
        55px
        0
        65px;
}


/* =========================================================
   STATEMENT
========================================================= */

.hmz-mission__statement {
    position: relative;

    padding-left: 92px;
}


.hmz-mission__statement-number {
    position: absolute;

    left: 0;

    top: -8px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 70px;

    font-style: italic;

    line-height: 1;

    color:
        rgba(
            191,
            165,
            137,
            .30
        );
}


.hmz-mission__statement h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        64px,
        6.5vw,
        105px
    );

    font-weight: 400;

    line-height: .82;

    letter-spacing: -3px;

    color: #f1ede7;
}


.hmz-mission__statement h2 em {
    color: #cda77b;

    font-style: italic;
}


/* =========================================================
   INTRO
========================================================= */

.hmz-mission__intro {
    max-width: 390px;

    padding-left: 35px;

    border-left:
        1px solid
        rgba(221, 207, 190, .55);
}


.hmz-mission__intro-line {
    display: block;

    width: 40px;

    height: 1px;

    margin-bottom: 22px;

    background: #cda97c;
}


.hmz-mission__intro p {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 20px;

    line-height: 1.28;

    color: #ddd5cb;
}


/* =========================================================
   VALUES SECTION
========================================================= */

.hmz-mission__values {
    border-top:
        1px solid
        rgba(218, 201, 180, .28);

    border-bottom:
        1px solid
        rgba(218, 201, 180, .28);

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.015),
            rgba(192,155,113,.035),
            rgba(255,255,255,.01)
        );
}


.hmz-mission__values .row {
    margin: 0;
}


.hmz-mission__values
.col-lg-4 {
    padding: 0;

    display: flex;
}


/* =========================================================
   VALUE CARD
========================================================= */

.hmz-mission__value {
    width: 100%;

    min-height: 245px;

    padding:
        35px
        45px;

    display: flex;

    gap: 35px;

    border-right:
        1px solid
        rgba(218, 201, 180, .28);
}


.hmz-mission__values
.col-lg-4:last-child
.hmz-mission__value {
    border-right: none;
}


/* =========================================================
   NUMBER
========================================================= */

.hmz-mission__value-number {
    flex-shrink: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 65px;

    font-style: italic;

    line-height: .9;

    color:
        rgba(
            191,
            165,
            137,
            .34
        );
}


/* =========================================================
   VALUE CONTENT
========================================================= */

.hmz-mission__value-content {
    padding-top: 3px;
}


.hmz-mission__value-label {
    display: block;

    margin-bottom: 9px;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #d1a979;
}


.hmz-mission__value-line {
    display: block;

    width: 45px;

    height: 1px;

    margin-bottom: 18px;

    background: #cda97c;
}


.hmz-mission__value h3 {
    margin: 0 0 10px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 30px;

    font-weight: 500;

    line-height: 1;

    color: #f0ece6;
}


.hmz-mission__value p {
    max-width: 300px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 16px;

    line-height: 1.3;

    color: #d5cec5;
}


/* =========================================================
   FOOTER
========================================================= */

.hmz-mission__footer {
    min-height: 95px;

    display: flex;

    align-items: center;

    gap: 25px;
}


.hmz-mission__footer > span {
    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: 3px;

    color: #cda97c;

    white-space: nowrap;
}


.hmz-mission__footer-line {
    width: 1px;

    height: 20px;

    background:
        rgba(220, 204, 184, .45);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hmz-mission__main {
        min-height: auto;
    }


    .hmz-mission__statement {
        margin-bottom: 55px;
    }


    .hmz-mission__intro {
        max-width: 600px;
    }


    .hmz-mission__value {
        border-right: none;

        border-bottom:
            1px solid
            rgba(218, 201, 180, .28);
    }


    .hmz-mission__values
    .col-lg-4:last-child
    .hmz-mission__value {
        border-bottom: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hmz-mission {
        padding-top: 55px;
    }


    .hmz-mission__main {
        padding:
            45px
            0
            50px;
    }


    .hmz-mission__statement {
        padding-left: 0;
    }


    .hmz-mission__statement-number {
        position: static;

        display: block;

        margin-bottom: 12px;

        font-size: 55px;
    }


    .hmz-mission__statement h2 {
        font-size: 57px;

        line-height: .88;

        letter-spacing: -2px;
    }


    .hmz-mission__intro {
        padding-left: 22px;
    }


    .hmz-mission__intro p {
        font-size: 18px;
    }


    .hmz-mission__value {
        padding:
            30px
            25px;

        gap: 22px;
    }


    .hmz-mission__value-number {
        font-size: 55px;
    }


    .hmz-mission__value h3 {
        font-size: 27px;
    }


    .hmz-mission__footer {
        flex-wrap: wrap;

        gap: 15px;

        padding:
            25px
            0;
    }

}

/* =========================================================
   MISSION — SECTION HEADER
========================================================= */

.hmz-mission__header {
    min-height: 85px;

    display: flex;

    align-items: center;

    gap: 22px;

    border-bottom:
        1px solid
        rgba(218, 201, 180, .28);
}


.hmz-mission__eyebrow {
    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #d0a979;

    white-space: nowrap;
}


.hmz-mission__header-line {
    width: 65px;

    height: 1px;

    flex-shrink: 0;

    background:
        rgba(210, 188, 163, .55);
}


.hmz-mission__header-label {
    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 3px;

    color:
        rgba(225, 215, 202, .50);

    white-space: nowrap;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hmz-mission__header {
        min-height: 70px;

        gap: 15px;
    }


    .hmz-mission__eyebrow {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .hmz-mission__header-line {
        width: 35px;
    }


    .hmz-mission__header-label {
        font-size: 7px;

        letter-spacing: 2px;
    }

}

/* =========================================================
   HMZ PREMIUM MISSION + VISION
========================================================= */

:root {
    --hmz-black: #0d0e0e;
    --hmz-black-soft: #121313;
    --hmz-cream: #eee5d8;
    --hmz-cream-light: #f4ede3;
    --hmz-gold: #c8a77b;
    --hmz-gold-light: #d7bd99;
    --hmz-white: #f7f4ef;
    --hmz-muted: #a7a29a;
    --hmz-border: rgba(218, 196, 163, 0.25);
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */

.hmz-mission-premium,
.hmz-vision-premium {

    font-family: "Inter", sans-serif;
    background: var(--hmz-black);
    color: var(--hmz-white);

    overflow: hidden;
}


.hmz-mission-premium h1,
.hmz-vision-premium h1,
.hmz-mission-premium h2,
.hmz-vision-premium h2 {

    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;

}


.hmz-mission-premium p,
.hmz-vision-premium p {

    font-family: "Cormorant Garamond", Georgia, serif;

}


/* =========================================================
   EDITORIAL LABEL
========================================================= */

.hmz-editorial-label {

    margin-bottom: 28px;
}


.hmz-editorial-label span {

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 5px;

    color: #252525;

    position: relative;

    padding-left: 24px;
}


.hmz-editorial-label span::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 12px;
    height: 1px;

    background: var(--hmz-gold);

    transform: translateY(-50%);
}


/* =========================================================
   MISSION / VISION CONTENT
========================================================= */

.hmz-mission-premium__content,
.hmz-vision-premium__content {

    min-height: 600px;

    padding: 90px 9vw 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,0.35),
            transparent 30%
        ),

        var(--hmz-cream);

    color: #171717;

    position: relative;

    isolation: isolate;
}


/* subtle paper texture */

.hmz-mission-premium__content::after,
.hmz-vision-premium__content::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .12;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");

    z-index: -1;
}


/* =========================================================
   MAIN HEADLINE
========================================================= */

.hmz-mission-premium__content h1,
.hmz-vision-premium__content h1 {

    font-size: clamp(58px, 5.3vw, 96px);

    line-height: .86;

    letter-spacing: -3px;

    margin: 0 0 45px;

    max-width: 850px;
}


.hmz-mission-premium__content h1 em,
.hmz-vision-premium__content h1 em {

    font-style: italic;

    color: #a98765;

}


/* =========================================================
   BODY COPY
========================================================= */

.hmz-mission-premium__copy,
.hmz-vision-premium__copy {

    max-width: 650px;

    margin-bottom: 38px;
}


.hmz-mission-premium__copy p,
.hmz-vision-premium__copy p {

    font-size: 20px;

    line-height: 1.42;

    color: #292724;

    margin-bottom: 18px;
}


/* =========================================================
   SIGNATURE LINE
========================================================= */

.hmz-editorial-signature {

    display: flex;

    align-items: center;

    gap: 38px;

    margin-top: 12px;
}


.hmz-editorial-line {

    width: 55px;

    height: 1px;

    background: #242424;

    display: block;

    flex-shrink: 0;
}


.hmz-editorial-signature > span:last-child {

    font-family: "Inter", sans-serif;

    font-size: 9px;

    letter-spacing: 4px;

    color: #55504a;
}


.hmz-editorial-signature strong {

    font-weight: 500;

    color: #987653;
}


/* =========================================================
   IMAGE
========================================================= */

.hmz-mission-premium__visual,
.hmz-vision-premium__visual {

    height: 100%;

    min-height: 600px;

    position: relative;

    overflow: hidden;

    background: #151515;
}


.hmz-mission-premium__visual img,
.hmz-vision-premium__visual img {

    width: 100%;
    height: 100%;

    min-height: 600px;

    object-fit: cover;

    display: block;

    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.hmz-mission-premium__visual:hover img,
.hmz-vision-premium__visual:hover img {

    transform: scale(1.035);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hmz-mission-premium__image-overlay,
.hmz-vision-premium__image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,.05),
            rgba(10,10,10,.18)
        );

    pointer-events: none;
}


/* =========================================================
   VERTICAL IMAGE TEXT
========================================================= */

.hmz-mission-premium__vertical-copy,
.hmz-vision-premium__vertical-copy {

    position: absolute;

    right: 45px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 12px;

    padding-left: 25px;

    border-left: 1px solid rgba(218,196,163,.45);
}


.hmz-mission-premium__vertical-copy span,
.hmz-vision-premium__vertical-copy span {

    font-family: "Inter", sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    color: rgba(240,219,190,.9);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.hmz-mission-premium__image-caption,
.hmz-vision-premium__image-caption {

    position: absolute;

    bottom: 35px;
    right: 45px;

    display: flex;

    align-items: center;

    gap: 20px;
}


.hmz-mission-premium__image-caption > span,
.hmz-vision-premium__image-caption > span {

    width: 1px;
    height: 50px;

    background: rgba(238,218,189,.65);
}


.hmz-mission-premium__image-caption p,
.hmz-vision-premium__image-caption p {

    font-family: "Inter", sans-serif;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 3px;

    color: rgba(245,234,218,.85);

    margin: 0;
}


/* =========================================================
   DARK PRINCIPLES AREA
========================================================= */

.hmz-mission-principles,
.hmz-vision-principles {

    background: var(--hmz-black-soft);

    border-top: 1px solid var(--hmz-border);
    border-bottom: 1px solid var(--hmz-border);
}


.hmz-mission-principle,
.hmz-vision-principle {

    min-height: 245px;

    padding: 42px 35px;

    display: flex;

    gap: 35px;

    position: relative;
}


.hmz-mission-principle:not(:last-child),
.hmz-vision-principle:not(:last-child) {

    border-right: 1px solid var(--hmz-border);
}


/* =========================================================
   NUMBER
========================================================= */

.hmz-principle-number {

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 76px;

    line-height: .8;

    font-style: italic;

    color: rgba(201,167,123,.35);

    min-width: 85px;
}


/* =========================================================
   PRINCIPLE CONTENT
========================================================= */

.hmz-principle-content {

    padding-top: 2px;
}


.hmz-principle-label {

    display: block;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    color: var(--hmz-gold-light);

    margin-bottom: 12px;
}


.hmz-principle-line {

    display: block;

    width: 30px;

    height: 1px;

    background: var(--hmz-gold);

    margin-bottom: 17px;
}


.hmz-principle-content h2 {

    font-size: 29px;

    line-height: 1;

    margin: 0 0 12px;

    color: #f3eee7;
}


.hmz-principle-content p {

    font-size: 17px;

    line-height: 1.3;

    color: #b8b3aa;

    max-width: 310px;

    margin: 0;
}


/* =========================================================
   BOTTOM EDITORIAL BAR
========================================================= */

.hmz-mission-footer,
.hmz-vision-footer {

    min-height: 105px;

    display: flex;

    align-items: center;

    background: #101111;
}


.hmz-mission-keywords,
.hmz-vision-keywords {

    display: flex;

    align-items: center;

    gap: 25px;
}


.hmz-mission-keywords span,
.hmz-vision-keywords span {

    font-family: "Inter", sans-serif;

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--hmz-gold-light);
}


.hmz-mission-keywords i,
.hmz-vision-keywords i {

    width: 1px;

    height: 22px;

    background: rgba(207,181,145,.4);
}


.hmz-mission-footer-line,
.hmz-vision-footer-line {

    height: 1px;

    width: 100%;

    background: rgba(206,184,151,.3);
}


/* =========================================================
   FOOTER ARROW
========================================================= */

.hmz-mission-arrow,
.hmz-vision-arrow {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 25px;
}


.hmz-mission-arrow span,
.hmz-vision-arrow span {

    font-family: "Inter", sans-serif;

    font-size: 8px;

    line-height: 1.7;

    letter-spacing: 3px;

    color: var(--hmz-gold-light);
}


.hmz-mission-arrow a,
.hmz-vision-arrow a {

    width: 64px;
    height: 64px;

    border: 1px solid rgba(207,181,145,.7);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--hmz-gold-light);

    text-decoration: none;

    font-size: 24px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.hmz-mission-arrow a:hover,
.hmz-vision-arrow a:hover {

    background: var(--hmz-gold);

    color: #111;

    transform: translateX(4px);
}


/* =========================================================
   VISION SPECIFIC
========================================================= */

.hmz-vision-premium__content {

    background: #e8ded0;
}


.hmz-vision-premium__content h1 em {

    color: #9d7959;
}


.hmz-vision-premium__visual img {

    object-position: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .hmz-mission-premium__content,
    .hmz-vision-premium__content {

        padding: 75px 6vw;
    }

    .hmz-mission-premium__content h1,
    .hmz-vision-premium__content h1 {

        font-size: clamp(54px, 6vw, 78px);
    }

}


@media (max-width: 991px) {

    .hmz-mission-premium__content,
    .hmz-vision-premium__content {

        min-height: auto;

        padding: 75px 7vw;
    }


    .hmz-mission-premium__visual,
    .hmz-vision-premium__visual {

        min-height: 520px;
    }


    .hmz-mission-premium__visual img,
    .hmz-vision-premium__visual img {

        min-height: 520px;
    }


    .hmz-mission-principle,
    .hmz-vision-principle {

        min-height: 230px;

        padding: 38px 25px;
    }


    .hmz-mission-principle:not(:last-child),
    .hmz-vision-principle:not(:last-child) {

        border-right: none;

        border-bottom: 1px solid var(--hmz-border);
    }


    .hmz-mission-footer,
    .hmz-vision-footer {

        padding: 30px 0;
    }


    .hmz-mission-footer-line,
    .hmz-vision-footer-line {

        margin: 25px 0;
    }

}


@media (max-width: 767px) {

    .hmz-mission-premium__content,
    .hmz-vision-premium__content {

        padding: 60px 25px;
    }


    .hmz-mission-premium__content h1,
    .hmz-vision-premium__content h1 {

        font-size: 58px;

        letter-spacing: -2px;

        line-height: .9;
    }


    .hmz-mission-premium__copy p,
    .hmz-vision-premium__copy p {

        font-size: 18px;
    }


    .hmz-mission-premium__visual,
    .hmz-vision-premium__visual {

        min-height: 440px;
    }


    .hmz-mission-premium__visual img,
    .hmz-vision-premium__visual img {

        min-height: 440px;
    }


    .hmz-mission-premium__vertical-copy,
    .hmz-vision-premium__vertical-copy {

        right: 20px;

        padding-left: 15px;

        gap: 9px;
    }


    .hmz-mission-premium__vertical-copy span,
    .hmz-vision-premium__vertical-copy span {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .hmz-mission-premium__image-caption,
    .hmz-vision-premium__image-caption {

        right: 20px;

        bottom: 22px;
    }


    .hmz-mission-principle,
    .hmz-vision-principle {

        padding: 35px 20px;

        gap: 20px;
    }


    .hmz-principle-number {

        font-size: 62px;

        min-width: 65px;
    }


    .hmz-principle-content h2 {

        font-size: 26px;
    }


    .hmz-mission-keywords,
    .hmz-vision-keywords {

        flex-wrap: wrap;

        gap: 12px 18px;
    }


    .hmz-mission-arrow,
    .hmz-vision-arrow {

        justify-content: space-between;
    }

}


@media (max-width: 480px) {

    .hmz-mission-premium__content h1,
    .hmz-vision-premium__content h1 {

        font-size: 50px;
    }


    .hmz-editorial-signature {

        gap: 18px;
    }


    .hmz-editorial-signature > span:last-child {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .hmz-principle-number {

        font-size: 52px;

        min-width: 55px;
    }

}

