:root {
    --bg: #050505;
    --panel: #0c0c0c;
    --panel2: #111;
    --text: #f6f2ef;
    --muted: #a8a19c;
    --copper: #e7a17e;
    --gold: #d4af37;
    --line: #2a2421;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', Arial, sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7
}

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

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

.shell {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(231, 161, 126, .14)
}

.nav-wrap {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 34px
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 46px;
        max-width: 180px;
    }
}

.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    align-items: center
}

.main-nav>a,
.nav-drop>a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #d7d2ce
}

.main-nav a:hover,
.main-nav .active {
    color: var(--copper)
}

.nav-drop {
    position: relative;
    padding: 30px 0
}

.drop-menu {
    display: none;
    position: absolute;
    top: 75px;
    left: -25px;
    width: 285px;
    padding: 14px;
    background: #0c0c0c;
    border: 1px solid var(--line)
}

.nav-drop:hover .drop-menu {
    display: block
}

.drop-menu a {
    display: block;
    padding: 11px 12px;
    font-size: 12px;
    color: #bbb;
    border-bottom: 1px solid #1a1a1a
}

.nav-cta,
.btn {
    border: 1px solid var(--copper);
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase
}

.nav-cta span,
.btn span {
    color: var(--copper)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

.hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 40%, rgba(231, 161, 126, .11), transparent 30%), linear-gradient(110deg, #050505 55%, #0c0908)
}

.hero:after {
    content: 'X';
    position: absolute;
    right: 4%;
    top: 1%;
    font: 500 610px/1 var(--serif);
    color: rgba(231, 161, 126, .055)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 110px 0
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px
}

.eyebrow:before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--copper)
}

.eyebrow-dark {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--bg);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px
}

.eyebrow-dark:before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--bg)
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
    margin: 0
}

h1 {
    font-size: clamp(58px, 8vw, 108px);
    letter-spacing: -2px
}

.hero h1 em {
    font-style: normal;
    color: var(--copper)
}

.hero p {
    max-width: 670px;
    color: #c6bfba;
    font-size: 16px;
    margin: 30px 0 38px
}

.btn {
    display: inline-block;
    padding: 16px 24px
}

.btn.fill {
    background: var(--copper);
    color: #0a0706;
    font-weight: 500
}

.btn+.btn {
    margin-left: 10px
}

.section {
    padding: 45px 0
}

.section-dark {
    background: #090909
}

.section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 30px 0px;
}

.section-head h2 {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    margin-top: 10px;
}

.section-head p {
    color: var(--muted);
    /* max-width: 600px  */
    margin: 0;
}

.section-head-2col {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 10px;
    margin: 30px 0px;
}

.section-head-2col h2 {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: bold;
    margin-top: 10px;
}

.section-head-2col p {
    color: var(--muted);
    /* max-width: 600px  */
    margin: 0;
}

.quote-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 35px 0
}

.quote-strip blockquote {
    font: 400 clamp(25px, 3vw, 40px)/1.3 var(--serif);
    margin: 0;
    text-align: center
}



.quote-strip cite {
    display: block;
    color: var(--copper);
    font: 10px var(--sans);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px
}

/* =====================================================
   PERSONAX PILLARS
===================================================== */

.pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
}


/* =========================
   Pillar Card
========================= */

.pillar {
    position: relative;

    min-height: 250px;
    padding: 30px 24px;

    border: 1px solid var(--line);

    display: flex;
    flex-direction: column;

    background: var(--bg);

    overflow: hidden;

    text-decoration: none;

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


/* =========================
   Top
========================= */

.pillar-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    width: 100%;
}


/* Number */

.pillar .num {
    font: 12px var(--sans);

    letter-spacing: 2px;

    color: var(--copper);

    transition: color .3s ease;
}


/* =========================
   Custom Icon
========================= */

.pillar-icon {
    width: 55px;
    height: 55px;

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

    flex-shrink: 0;

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


.pillar-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================
   Content
========================= */

.pillar-content {
    margin-top: auto;
}


.pillar h3 {
    margin: 0 0 15px;

    font-size: 35px;
    line-height: 1;

    color: var(--gold);

    font-weight: bold;

    transition:
        color .3s ease,
        transform .3s ease;
}


.pillar p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text);

    transition:
        color .3s ease,
        transform .3s ease;
}


/* =========================
   Hover
========================= */

.pillar:hover {
    background: var(--text);

    color: #090909;

    transform: translateY(-8px);

    border-color: var(--copper);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .22);
}


.pillar:hover .num {
    color: #090909;
}


.pillar:hover h3 {
    color: var(--bg);
    transform: translateY(-3px);
}


.pillar:hover p {
    color: #241712;
    transform: translateY(-3px);
}


.pillar:hover .pillar-icon {
    transform:
        translateY(-4px) scale(1.08);
}


/* =========================
   Tablet
========================= */

@media (max-width: 1100px) {

    .pillars {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: 210px;
        padding: 25px 22px;
    }

    .pillar h3 {
        font-size: 30px;
    }

    .pillar-icon {
        width: 48px;
        height: 48px;
    }

}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.feature {
    background: var(--text);
    padding: 38px
}

.feature h3 {
    font: bold 30px var(--serif);
    color: #000;
}

.feature p {
    color: var(--bg);
    margin-bottom: 0;
    font-size: 16px;

}

.box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.box {
    background: var(--copper);
    padding: 38px
}

.box h3 {
    font: 900 30px var(--serif);
    color: var(--panel);
}

.box p {
    color: var(--panel);
    margin-bottom: 0
}

.audience {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.audience span {
    border: 1px solid var(--line);
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.page-hero {
    padding: 130px 0 80px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 85% 20%, rgba(231, 161, 126, .1), transparent 26%)
}

.page-hero h1 {
    font-size: clamp(54px, 7vw, 90px);
    max-width: 900px
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 16px
}



/* =========================================================
   PERSONAX UNIVERSAL INNER PAGE HERO
========================================================= */

.inner-page-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #050403;

    border-bottom: 1px solid rgba(231, 161, 126, .18);
}


/* =========================================================
   BACKGROUND
========================================================= */

.inner-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(90deg,
            rgba(3, 3, 3, .98) 0%,
            rgba(3, 3, 3, .92) 30%,
            rgba(3, 3, 3, .60) 58%,
            rgba(3, 3, 3, .18) 100%),
        url('../images/program-hero-bg.webp');

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    z-index: 0;
}


.inner-hero-bg::after {
    content: '';

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            transparent 55%,
            rgba(0, 0, 0, .72));
}


/* =========================================================
   COPPER AMBIENT GLOW
========================================================= */

.inner-hero-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: 2%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(231, 161, 126, .17),
            rgba(231, 161, 126, .07) 36%,
            transparent 68%);

    filter: blur(8px);

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   DECORATIVE X
========================================================= */

.inner-hero-x {
    position: absolute;

    right: 38%;
    top: 50%;

    transform: translateY(-52%);

    font-family: var(--serif);

    font-size: clamp(300px, 37vw, 570px);

    font-weight: 400;

    line-height: .8;

    color: rgba(231, 161, 126, .07);

    pointer-events: none;
    user-select: none;

    z-index: 1;
}


/* =========================================================
   LAYOUT
========================================================= */

.inner-hero-layout {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr) minmax(380px, .92fr);

    align-items: stretch;

    width: min(1180px, calc(100% - 48px));
}


/* =========================================================
   CONTENT
========================================================= */

.inner-hero-content {
    position: relative;

    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 750px;

    padding: 55px 0;
}


.inner-hero-content .eyebrow {
    margin-bottom: 18px;
}


.inner-hero-content h1 {
    max-width: 800px;

    margin: 0;

    font-size: clamp(30px, 5.4vw, 60px);

    line-height: .92;

    letter-spacing: -1.5px;

    color: #f8f3ef;

    font-weight: bold;
}


.inner-hero-content h1 span {

    color: var(--copper);

    font-style: italic;

    font-weight: 400;
}


.inner-hero-content p {
    max-width: 640px;

    margin: 25px 0 0;

    color: #c9bfba;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   SIGNATURE
========================================================= */

.inner-hero-signature {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;
}


.inner-hero-signature>span {
    width: 45px;
    height: 1px;

    background: var(--copper);
}


.inner-hero-signature small {
    color: rgba(255, 255, 255, .5);

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   VISUAL AREA
========================================================= */

.inner-hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

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

    isolation: isolate;

    z-index: 4;
}


/* =========================================================
   MODEL LIGHTING
========================================================= */

.inner-model-glow {
    position: absolute;

    width: 580px;
    height: 580px;

    right: -70px;
    top: 20%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(ellipse at center,
            rgba(255, 223, 155, .45),
            rgba(246, 190, 103, .30) 16%,
            rgba(221, 150, 65, .19) 31%,
            rgba(184, 105, 39, .09) 48%,
            transparent 72%);

    filter: blur(26px);

    pointer-events: none;

    z-index: 1;
}


.inner-model-glow-soft {
    position: absolute;

    width: 700px;
    height: 480px;

    right: -120px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(ellipse,
            rgba(238, 164, 82, .15),
            rgba(206, 119, 44, .08) 38%,
            transparent 70%);

    filter: blur(55px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.inner-hero-image {
    position: absolute;

    right: 30px;
    bottom: 0;

    width: auto;
    height: 95%;

    max-width: none;

    object-fit: contain;
    object-position: bottom right;

    z-index: 3;

    filter:
        drop-shadow(-20px 20px 35px rgba(0, 0, 0, .35));
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.inner-image-caption {
    position: absolute;

    right: 20px;
    bottom: 38px;

    z-index: 5;

    padding: 12px 17px;

    background: rgba(5, 5, 5, .76);

    border-left: 2px solid var(--copper);

    backdrop-filter: blur(12px);
}


.inner-image-caption span {
    display: block;

    color: #fff;

    font-size: 9px;

    letter-spacing: 4px;
}


.inner-image-caption small {
    display: block;

    margin-top: 3px;

    color: var(--copper);

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   BOTTOM LABEL
========================================================= */

.inner-hero-index {
    position: absolute;

    right: 30px;
    bottom: 18px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 14px;
}


.inner-hero-index span {
    color: rgba(255, 255, 255, .38);

    font-size: 8px;

    letter-spacing: 4px;
}


.inner-hero-index b {
    color: var(--copper);

    font-family: var(--serif);

    font-size: 18px;

    font-weight: 400;

    letter-spacing: 2px;
}


.inner-hero-actions {
    margin-top: 28px;
}

.inner-hero-actions .btn {
    min-width: 145px;
    justify-content: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .inner-hero-layout {
        grid-template-columns: 1.1fr .9fr;
    }


    .inner-hero-image {
        right: -50px;

        height: 88%;
    }

}


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

@media (max-width: 767px) {

    .inner-page-hero {
        min-height: auto;
    }


    .inner-hero-layout {
        display: flex;

        flex-direction: column;

        width: min(100% - 30px, 1180px);
    }


    .inner-hero-content {
        max-width: 100%;

        padding: 65px 0 15px;
    }


    .inner-hero-content h1 {
        font-size: clamp(43px, 13vw, 64px);

        line-height: .94;

        letter-spacing: -1px;
    }


    .inner-hero-content p {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.75;
    }


    .inner-hero-signature {
        margin-top: 23px;
    }


    .inner-hero-visual {
        min-height: 410px;

        width: 100%;
    }


    .inner-hero-image {
        right: 50%;

        transform: translateX(50%);

        height: 100%;

        max-width: 125%;
    }


    .inner-hero-x {
        right: -35%;

        font-size: 400px;
    }


    .inner-model-glow {
        width: 420px;
        height: 420px;

        right: 50%;

        transform: translate(50%, -50%);
    }


    .inner-image-caption {
        right: 0;

        bottom: 20px;
    }


    .inner-hero-index {
        display: none;
    }

}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.split h2 {
    font-size: clamp(28px, 5.4vw, 55px);
    font-weight: bold;
}

.lead {
    font: 400 26px/1.5 var(--serif);
    color: var(--panel);
}

.lead-dark {
    font: 400 26px/1.5 var(--serif);
    color: var(--text);
}

.program-list {
    display: grid;
    gap: 18px
}

.program-card {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    transition: .25s
}

.program-card:hover {
    border-color: var(--copper);
    background: #0c0908;
    color: var(--copper)
}

.program-card .index {
    font: 38px var(--serif);
    color: var(--copper)
}

.program-card h3 {
    font-size: 28px;
    font-weight: bold;
}

.program-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px
}

.program-card .arrow {
    font-size: 26px;
    color: var(--copper)
}

.learn-list {
    list-style: none;
    padding: 0;
    margin: 30px 0
}

.learn-list li {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: #17110f;
}

.learn-list strong {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.duration {
    display: inline-block;
    color: var(--copper);
    border-top: 1px solid var(--copper);
    padding-top: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px
}

.cta-band {
    padding: 80px 0;
    background: var(--copper);
    color: #090706
}

.cta-band .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta-band h2 {
    font-size: 45px;
    font-weight: bold;
}

.cta-band .btn {
    border-color: #090706
}

.cta-band .btn:hover {
    background: #090706;
    color: var(--copper)
}

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

.post-card {
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 330px;
    display: flex;
    flex-direction: column
}

.post-card .meta {
    color: var(--panel);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase
}

/* .post-card h2, */
.post-card h3 {
    font-size: 30px;
    margin: 18px 0;
    font-weight: bold;

}

.post-card p {
    color: var(--panel2);
    font-size: 13px
}

.post-card a {
    margin-top: auto;
    color: var(--copper);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.article {
    max-width: 820px;
    margin: auto
}

.article h2 {
    font-size: 42px;
    margin-top: 50px
}

.article p,
.article li {
    color: #c2bbb6
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px
}

.contact-info a,
.contact-info span {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper)
}

input,
select,
textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid var(--line);
    padding: 15px;
    color: #fff;
    font: 14px var(--sans);
    outline: none
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--copper)
}

textarea {
    min-height: 150px;
    resize: vertical
}

.notice {
    padding: 14px;
    border: 1px solid var(--copper);
    margin-bottom: 20px;
    color: #e9b296
}

.footer {
    padding: 80px 0 25px;
    border-top: 1px solid var(--line);
    background: #030303
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr 1fr;
    gap: 50px
}

.footer h4 {
    font: 400 20px var(--serif);
    color: var(--copper)
}

.footer a,
.footer span,
.footer p {
    display: block;
    color: #8f8985;
    font-size: 12px;
    margin: 10px 0
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    margin-top: 50px;
    padding-top: 22px
}

.footer-brand {
    margin-bottom: 30px
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .nav-cta {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 1px;
        background: #fff;
        margin: 7px
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #080808;
        padding: 25px
    }

    .main-nav.open {
        display: block
    }

    .main-nav>a,
    .nav-drop>a {
        display: block;
        padding: 12px
    }

    .nav-drop {
        padding: 0
    }

    .drop-menu {
        display: block;
        position: static;
        width: auto;
        border: 0;
        padding-left: 15px;
        background: transparent
    }

    .drop-menu a {
        font-size: 10px
    }

    .pillars {
        grid-template-columns: 1fr 1fr
    }

    .pillar {
        border-bottom: 1px solid var(--line)
    }

    .section-head,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        min-height: 650px
    }

    .hero:after {
        font-size: 420px
    }
}

@media(max-width:600px) {
    .shell {
        width: min(100% - 30px, 1180px)
    }

    .nav-wrap {
        height: 76px
    }

    .main-nav {
        top: 76px
    }

    .brand {
        font-size: 20px;
        width: 170px
    }

    .section {
        padding: 75px 0
    }

    .hero-inner {
        padding: 70px 0
    }

    .hero h1 {
        font-size: 54px
    }

    .btn {
        display: block;
        text-align: center
    }

    .btn+.btn {
        margin: 10px 0 0
    }

    .pillars,
    .feature-grid,
    .box-grid,
    .blog-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .pillar {
        min-height: 220px;
        border-right: 0
    }

    .program-card {
        grid-template-columns: 55px 1fr
    }

    .program-card .arrow {
        display: none
    }

    .cta-band .shell {
        display: block
    }

    .cta-band h2 {
        font-size: 42px
    }

    .cta-band .btn {
        margin-top: 25px
    }

    .footer-bottom {
        display: block
    }

    .field.full {
        grid-column: auto
    }
}

/* V2 premium editorial expansion */
body {
    background: #0a0807
}

.cream {
    background: #efe8e2;
    color: #17110f
}

.cream .section-head p,
.cream p,
.cream .pillar p {
    color: #665b55
}

.cream .eyebrow {
    color: #a76043
}

.cream .eyebrow:before {
    background: #a76043
}

.cream .pillar {
    border-color: #cbbdb4
}

.cream .pillars {
    border-color: #cbbdb4
}

.cocoa {
    background: var(--bg);
    color: #f8f1ed
}

.bg-light {
    background: var(--text);
    color: var(--bg);
}


/* =========================================================
   PERSONAX PREMIUM HOME HERO
========================================================= */

.px-hero-slider {
    position: relative;

    height: min(86vh, 600px);
    min-height: 500px;

    overflow: hidden;

    background:
        radial-gradient(circle at 72% 45%,
            rgba(172, 107, 76, .12),
            transparent 28%),
        linear-gradient(120deg,
            #0a0908 0%,
            #11100e 50%,
            #080706 100%);

    color: #fff;
}


/* =========================================================
   GLOBAL DECORATION
========================================================= */

.px-hero-global-glow {
    position: absolute;

    right: 3%;
    top: 3%;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(178, 111, 79, .13),
            rgba(178, 111, 79, .035) 42%,
            transparent 68%);

    filter: blur(8px);

    pointer-events: none;
}


.px-hero-global-x {
    position: absolute;

    left: 48%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: rgba(186, 121, 90, .035);

    font-family: var(--serif);
    font-size: min(52vw, 720px);
    font-weight: 500;

    line-height: .75;

    pointer-events: none;
}


/* =========================================================
   SLIDES
========================================================= */

.px-hero-slider .hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: stretch;

    opacity: 0;
    visibility: hidden;

    background: transparent;

    transition:
        opacity .85s ease,
        visibility .85s ease;

    pointer-events: none;
}


.px-hero-slider .hero-slide.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


.px-hero-layout {
    position: relative;
    z-index: 3;

    /* width: 100%; */

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr) minmax(390px, .92fr);

    align-items: center;

    gap: 45px;

    /* padding-top: 45px; */
    padding-bottom: 90px;
}


/* =========================================================
   CONTENT
========================================================= */

.px-hero-content {
    position: relative;
    z-index: 5;

    max-width: 780px;
}


/* Eyebrow */

.px-hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 23px;

    color: #bc8063;

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.px-hero-eyebrow>span {
    width: 43px;
    height: 1px;

    background: currentColor;
}


/* =========================================================
   HEADING
========================================================= */

.px-hero-content h1 {
    max-width: 850px;

    margin: 0;

    color: #f7f1ed;

    font-family: var(--serif);

    font-size:
        clamp(35px, 5.4vw, 70px);

    font-weight: bold;

    /* line-height: .82; */

    /* letter-spacing: px; */
}


.px-hero-content h1 em {
    display: inline-block;

    color: #b97859;

    font-weight: 400;
    font-style: italic;
}


/* Description */

.px-hero-content>p {
    max-width: 580px;

    margin: 10px 0px;

    color: #aaa09b;

    font-family: var(--sans);
    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   ACTIONS
========================================================= */

.px-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 27px;
}


.px-hero-actions .btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;

    padding: 0 25px;
}


.px-hero-text-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding-bottom: 6px;

    border-bottom:
        1px solid rgba(185, 120, 89, .5);

    color: #d9cfca;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: .6px;

    transition: color .25s ease;
}


.px-hero-text-link span {
    color: #bd7c5d;

    font-size: 18px;

    transition: transform .25s ease;
}


.px-hero-text-link:hover {
    color: #bd7c5d;
}


.px-hero-text-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================================
   MINI FACTS
========================================================= */

.px-hero-facts {
    display: flex;

    margin-top: 47px;

    border-top:
        1px solid rgba(255, 255, 255, .09);
}


.px-hero-facts>div {
    min-width: 135px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 16px 25px 0 0;
}


.px-hero-facts>div+div {
    padding-left: 25px;

    border-left:
        1px solid rgba(255, 255, 255, .09);
}


.px-hero-facts strong {
    color: #b97859;

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
}


.px-hero-facts span {
    color: #8f8580;

    font-family: var(--sans);
    font-size: 13px;
}


/* =========================================================
   MODEL SIDE
========================================================= */

.px-hero-model {
    position: relative;

    align-self: stretch;

    min-height: 500px;

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


/* Copper radial light */

.px-model-glow {
    position: absolute;

    left: 50%;
    top: 47%;

    width: 490px;
    height: 490px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(187, 117, 84, .25) 0%,
            rgba(187, 117, 84, .09) 34%,
            transparent 69%);

    filter: blur(3px);

    pointer-events: none;
}


/* Thin circular line */

.px-model-ring {
    position: absolute;

    left: 50%;
    top: 48%;

    width: 450px;
    height: 450px;

    transform: translate(-50%, -50%);

    border:
        1px solid rgba(187, 117, 84, .13);

    border-radius: 50%;

    pointer-events: none;
}


.px-model-ring::before {
    content: "";

    position: absolute;

    inset: 28px;

    border:
        1px solid rgba(255, 255, 255, .035);

    border-radius: inherit;
}


/* Model */

.px-hero-model-image {
    position: relative;
    z-index: 3;

    display: block;

    width: auto;
    height: 94%;

    max-width: 100%;

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

    filter:
        drop-shadow(0 28px 30px rgba(0, 0, 0, .3));

    transform:
        translateY(25px) scale(.985);

    opacity: 0;

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


/* Animate active model */

.hero-slide.active .px-hero-model-image {
    opacity: 1;

    transform:
        translateY(0) scale(1);
}


/* Caption */

.px-model-caption {
    position: absolute;

    right: 0;
    bottom: 115px;

    z-index: 5;

    display: flex;
    flex-direction: column;

    padding: 15px 18px;

    border-left:
        2px solid #b97859;

    background:
        rgba(11, 9, 8, .68);

    backdrop-filter: blur(8px);
}


.px-model-caption span {
    color: #fff;

    font-family: var(--serif);
    font-size: 17px;

    letter-spacing: 1px;
}


.px-model-caption small {
    margin-top: 3px;

    color: #a89c96;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================================================
   LIGHT SLIDE VARIATION
========================================================= */

/*
   Still keep the overall hero dark.
   This slide gets a warmer / lighter model area instead of
   changing the complete hero to white.
*/

.px-hero-slide-light::before {
    content: "";

    position: absolute;

    right: 0;
    top: 0;
    bottom: 0;

    width: 48%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(197, 154, 129, .08));

    pointer-events: none;
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.px-hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 15;

    border-top:
        1px solid rgba(255, 255, 255, .08);

    background:
        rgba(8, 7, 6, .4);

    backdrop-filter: blur(8px);
}


.px-hero-bottom-inner {
    min-height: 68px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 30px;
}


/* Counter */

.px-hero-counter {
    display: flex;
    align-items: center;

    gap: 10px;
}


.px-hero-counter strong {
    color: #b97859;

    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
}


.px-hero-counter>span {
    width: 38px;
    height: 1px;

    background:
        rgba(255, 255, 255, .18);
}


.px-hero-counter small {
    color: #77706c;

    font-size: 12px;
}


/* =========================================================
   DOTS
========================================================= */

.px-hero-slider .slider-dots {
    position: static;

    display: flex;
    align-items: center;

    gap: 8px;

    transform: none;
}


.px-hero-slider .slider-dots button {
    position: relative;

    width: 42px;
    height: 16px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.px-hero-slider .slider-dots button::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 2px;

    transform: translateY(-50%);

    background:
        rgba(255, 255, 255, .22);

    transition:
        background .3s ease,
        height .3s ease;
}


.px-hero-slider .slider-dots button.active::before {
    height: 3px;

    background: #b97859;
}


/* Bottom Brand */

.px-hero-bottom-brand {
    justify-self: end;

    color: #77706c;

    font-size: 12px;

    letter-spacing: 1.5px;
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.px-hero-content .px-hero-eyebrow,
.px-hero-content h1,
.px-hero-content>p,
.px-hero-actions,
.px-hero-facts {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.hero-slide.active .px-hero-eyebrow {
    opacity: 1;
    transform: translateY(0);

    transition-delay: .12s;
}


.hero-slide.active .px-hero-content h1 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: .2s;
}


.hero-slide.active .px-hero-content>p {
    opacity: 1;
    transform: translateY(0);

    transition-delay: .28s;
}


.hero-slide.active .px-hero-actions {
    opacity: 1;
    transform: translateY(0);

    transition-delay: .36s;
}


.hero-slide.active .px-hero-facts {
    opacity: 1;
    transform: translateY(0);

    transition-delay: .43s;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .px-hero-content h1 {
        font-size:
            clamp(62px, 7vw, 90px);

        letter-spacing: -3px;
    }


    .px-hero-layout {
        grid-template-columns:
            minmax(0, 1.05fr) minmax(340px, .95fr);
    }


    .px-hero-model {
        min-height: 610px;
    }


    .px-model-glow {
        width: 420px;
        height: 420px;
    }


    .px-model-ring {
        width: 390px;
        height: 390px;
    }

}

/* =========================================================
   HERO VERTICAL CENTER FIX
========================================================= */

.px-hero-slider {
    position: relative;

    height: min(86vh, 600px);
    min-height: 500px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(172, 107, 76, .12),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #0a0908 0%,
            #11100e 50%,
            #080706 100%
        );

    color: #fff;
}


.px-hero-slider .hero-slide {
    position: absolute;
    inset: 0;

    display: flex;

    /* IMPORTANT */
    align-items: center;

    opacity: 0;
    visibility: hidden;

    background: transparent;

    transition:
        opacity .85s ease,
        visibility .85s ease;

    pointer-events: none;
}


.px-hero-slider .hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Main hero grid */

.px-hero-layout {
    position: relative;
    z-index: 3;

    /* width: 100%; */
    height: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, .92fr);

    align-items: center;

    gap: 45px;

    /*
       Space for bottom slider navigation.
       Equal visual spacing keeps content centered.
    */
    padding-top: 40px;
    padding-bottom: 70px;

    box-sizing: border-box;
}


/* Left content */

.px-hero-content {
    position: relative;
    z-index: 5;

    max-width: 780px;

    /* Additional safeguard */
    align-self: center;
}


/* Right model */

.px-hero-model {
    position: relative;

    align-self: stretch;

    min-height: 0;
    height: 100%;

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


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .px-hero-slider {
        height: 780px;
        min-height: 780px;
    }


    .px-hero-layout {
        grid-template-columns:
            minmax(0, 1.1fr) minmax(280px, .9fr);

        gap: 15px;
    }


    .px-hero-content h1 {
        font-size: 67px;

        line-height: .86;
    }


    .px-hero-model {
        min-height: 590px;
    }


    .px-model-caption {
        display: none;
    }


    .px-hero-facts>div {
        min-width: auto;
    }

}


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

@media (max-width: 767px) {

    .px-hero-slider {
        height: auto;
        min-height: 780px;
    }


    .px-hero-slider .hero-slide {
        min-height: 780px;
    }


    .px-hero-layout {
        display: block;

        padding-top: 72px;
        padding-bottom: 90px;
    }


    /* Keep content above model */

    .px-hero-content {
        position: relative;
        z-index: 7;

        max-width: 100%;
    }


    .px-hero-eyebrow {
        margin-bottom: 17px;

        font-size: 11px;

        letter-spacing: 1.4px;
    }


    .px-hero-eyebrow>span {
        width: 27px;
    }


    .px-hero-content h1 {
        max-width: 520px;

        font-size:
            clamp(48px, 13vw, 65px);

        line-height: .88;

        letter-spacing: -2px;
    }


    .px-hero-content>p {
        max-width: 460px;

        margin: 22px 0 25px;

        padding-right: 20px;

        font-size: 14px;

        line-height: 1.65;
    }


    .px-hero-actions {
        gap: 17px;
    }


    .px-hero-text-link {
        font-size: 12px;
    }


    /* Model becomes background-like */

    .px-hero-model {
        position: absolute;

        right: -70px;
        bottom: 67px;

        width: 80%;
        height: 68%;

        min-height: 0;

        opacity: .46;

        pointer-events: none;
    }


    .px-hero-model::after {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 4;

        background:
            linear-gradient(90deg,
                #0a0908 0%,
                rgba(10, 9, 8, .55) 35%,
                transparent 75%);
    }


    .px-hero-model-image {
        position: absolute;

        right: 0;
        bottom: 0;

        height: 100%;

        max-width: none;
    }


    .px-model-ring {
        width: 310px;
        height: 310px;
    }


    .px-model-glow {
        width: 330px;
        height: 330px;
    }


    .px-model-caption {
        display: none;
    }


    /* Facts */

    .px-hero-facts {
        max-width: 430px;

        margin-top: 33px;
    }


    .px-hero-facts>div {
        min-width: 0;

        padding-right: 14px;

        gap: 6px;
    }


    .px-hero-facts>div+div {
        padding-left: 14px;
    }


    .px-hero-facts strong,
    .px-hero-facts span {
        font-size: 11px;
    }


    /* Bottom */

    .px-hero-bottom-inner {
        grid-template-columns: auto 1fr;

        min-height: 62px;
    }


    .px-hero-slider .slider-dots {
        justify-self: end;
    }


    .px-hero-bottom-brand {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .px-hero-slider,
    .px-hero-slider .hero-slide {
        min-height: 750px;
    }


    .px-hero-layout {
        padding-top: 60px;
    }


    .px-hero-content h1 {
        font-size: 49px;
    }


    .px-hero-content>p {
        font-size: 14px;
    }


    .px-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }


    .px-hero-actions .btn {
        min-height: 47px;
    }


    .px-hero-facts {
        display: none;
    }


    .px-hero-model {
        width: 95%;
        right: -100px;

        opacity: .4;
    }

}

.price-teasers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #cbbdb4;
    margin-bottom: 35px
}

.price-teasers>div {
    background: #f8f2ed;
    padding: 38px
}

.price-teasers small,
.pricing-grid small,
.mini-cta small {
    letter-spacing: 3px;
    color: #a76043
}

.price-teasers h3 {
    font-size: 35px;
    margin: 15px 0
}

.btn.dark {
    border-color: #17110f;
    background: #17110f;
    color: var(--text);
}

.btn.dark:hover {
    background: var(--copper);
    border-color: #17110f;
    color: #17110f
}

.text-link {
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    border: 1px solid var(--copper);
    padding: 12px 18px;
}

.text-link:hover {
    background: var(--copper);
    color: var(--bg);
}

/* .cocoa .feature {
    background: #1b110e
} */

/* =========================================================
   PROGRAM DETAIL PREMIUM HERO
========================================================= */

.program-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #050403;
    border-bottom: 1px solid rgba(231, 161, 126, .18);
}


/* =========================================================
   ABSTRACT BACKGROUND
========================================================= */

.program-detail-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(90deg,
            rgba(3, 3, 3, .97) 0%,
            rgba(3, 3, 3, .90) 30%,
            rgba(3, 3, 3, .58) 58%,
            rgba(3, 3, 3, .18) 100%),
        url('../images/program-hero-bg.webp');

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    z-index: 0;
}


/* Dark bottom fade */

.program-detail-bg::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .10) 0%,
            transparent 55%,
            rgba(0, 0, 0, .65) 100%);
}


/* =========================================================
   COPPER GLOW
========================================================= */

.program-detail-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(231, 161, 126, .15) 0%,
            rgba(231, 161, 126, .07) 35%,
            transparent 68%);

    filter: blur(5px);

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   DECORATIVE PERSONAX X
========================================================= */

.program-detail-x {
    position: absolute;

    right: 40%;
    top: 50%;

    transform: translateY(-52%);

    font-family: var(--serif);
    font-size: clamp(300px, 37vw, 570px);
    font-weight: 400;
    line-height: .8;

    color: rgba(231, 161, 126, 10%);

    z-index: 1;

    pointer-events: none;
    user-select: none;
}

.program-detail-x span {


    font-size: clamp(60px, 7vw, 120px);

    color: rgba(231, 161, 126, .12);
}


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

.program-detail-inner {
    position: relative;

    z-index: 3;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);

    align-items: stretch;

    width: min(1180px, calc(100% - 48px));
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.program-detail-content {
    position: relative;

    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px 0 20px;

    max-width: 760px;
}


.program-detail-content h1 {
    max-width: 800px;

    margin-top: 10px;

    font-size: clamp(36px, 5vw, 60px);
    font-weight: bold;

    line-height: .88;

    letter-spacing: 0px;

    color: #f8f3ef;
}


.program-detail-tag {
    margin: 10px 0 0;

    font-family: var(--serif);

    font-size: clamp(24px, 2.4vw, 34px);

    font-style: italic;

    color: var(--copper);
}


/* =========================================================
   BUTTON AREA
========================================================= */

.program-detail-actions {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-top: 7px;
}


.program-text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2.2px;

    color: #d8cec8;

    transition: .3s ease;
}


.program-text-link span {
    color: var(--copper);

    font-size: 18px;

    transition: transform .3s ease;
}


.program-text-link:hover {
    color: var(--copper);
}


.program-text-link:hover span {
    transform: translate(4px, 4px);
}


/* =========================================================
   FACTS
========================================================= */

.program-detail-content .hero-facts {
    margin-top: 48px;

    max-width: 720px;

    background: rgba(231, 161, 126, .25);

    backdrop-filter: blur(10px);
}


.program-detail-content .hero-facts span {
    min-width: 180px;

    background: rgba(5, 5, 5, .72);

    border: 1px solid rgba(231, 161, 126, .08);
}


/* =========================================================
   MODEL
========================================================= */
/* =========================================================
   MODEL AREA
========================================================= */

.program-detail-model {
    position: relative;

    min-height: 500px;

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

    z-index: 4;

    isolation: isolate;
}


/* =========================================================
   MAIN GOLDEN BACKLIGHT
   No visible ring - only soft light
========================================================= */

.model-highlight {
    position: absolute;

    width: 620px;
    height: 620px;

    right: -30px;
    top: 47%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(ellipse at center,

            rgba(255, 223, 155, .48) 0%,
            rgba(246, 190, 103, .38) 13%,
            rgba(221, 150, 65, .25) 28%,
            rgba(184, 105, 39, .14) 43%,
            rgba(117, 61, 25, .07) 58%,
            transparent 74%);

    filter: blur(24px);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   SECONDARY WARM GLOW
   Makes the light less circular / artificial
========================================================= */

.model-highlight-soft {
    position: absolute;

    width: 760px;
    height: 520px;

    right: -130px;
    top: 48%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(ellipse at center,

            rgba(238, 164, 82, .17) 0%,
            rgba(206, 119, 44, .10) 35%,
            transparent 70%);

    filter: blur(55px);

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   MODEL IMAGE
========================================================= */

.program-model-image {
    position: absolute;

    bottom: 0;
    right: -20px;

    width: auto;
    height: 94%;

    max-width: none;

    object-fit: contain;
    object-position: bottom right;

    z-index: 3;

    /*
     * Small shadow only.
     * Do not use a strong black shadow because
     * it kills the golden backlight.
     */
    filter:
        drop-shadow(-10px 12px 18px rgba(0, 0, 0, .22));
}

.program-detail-model img {
    position: absolute;

    bottom: 0;
    right: 100px;

    width: auto;
    height: 94%;

    max-width: none;

    object-fit: contain;
    object-position: bottom right;

    z-index: 3;

    filter:
        drop-shadow(-25px 20px 40px rgba(0, 0, 0, .4));
}

.model-head-glow {
    position: absolute;

    width: 390px;
    height: 460px;

    right: 45px;
    top: 44%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(ellipse at center,

            rgba(255, 225, 164, .38) 0%,
            rgba(241, 180, 92, .24) 22%,
            rgba(203, 122, 50, .12) 43%,
            transparent 70%);

    filter: blur(28px);

    z-index: 2;

    pointer-events: none;
}

/* =========================================================
   MODEL CAPTION
========================================================= */

.model-caption {
    position: absolute;

    right: 30px;
    bottom: 40px;

    z-index: 5;

    padding: 13px 18px;

    background: rgba(5, 5, 5, .76);

    border-left: 2px solid var(--copper);

    backdrop-filter: blur(12px);
}


.model-caption span {
    display: block;

    color: #fff;

    font-size: 10px;

    letter-spacing: 4px;
}


.model-caption small {
    display: block;

    margin-top: 3px;

    color: var(--copper);

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   BOTTOM INDEX
========================================================= */

.program-hero-index {
    position: absolute;

    right: 32px;
    bottom: 20px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 15px;
}


.program-hero-index span {
    color: rgba(255, 255, 255, .45);

    font-size: 8px;

    letter-spacing: 4px;
}


.program-hero-index b {
    color: var(--copper);

    font-family: var(--serif);

    font-size: 24px;

    font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .program-detail-inner {
        grid-template-columns: 1.1fr .9fr;
    }

    .program-detail-content h1 {
        font-size: clamp(58px, 7vw, 82px);
    }

    .program-detail-model img {
        right: -100px;
        height: 86%;
    }

    .model-ring {
        width: 390px;
        height: 390px;
    }

}


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

@media (max-width: 767px) {

    .program-detail-hero {
        min-height: auto;
    }

    .program-detail-bg {
        background-position: 70% center;
    }

    .program-detail-bg::before {
        content: '';

        position: absolute;

        inset: 0;

        background:
            linear-gradient(180deg,
                rgba(5, 5, 5, .78) 0%,
                rgba(5, 5, 5, .65) 45%,
                rgba(5, 5, 5, .98) 100%);
    }

    .program-detail-inner {
        display: flex;
        flex-direction: column;
    }

    .program-detail-content {
        padding:
            85px 0 25px;

        max-width: 100%;
    }

    .program-detail-content h1 {
        font-size: clamp(48px, 15vw, 68px);

        line-height: .92;

        letter-spacing: -2px;
    }

    .program-detail-tag {
        font-size: 24px;
    }

    .program-detail-actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .program-detail-content .hero-facts {
        display: grid;

        width: 100%;

        margin-top: 35px;
    }

    .program-detail-content .hero-facts span {
        width: 100%;
    }

    .program-detail-model {
        min-height: 470px;

        width: 100%;
    }

    .program-detail-model img {
        right: 50%;

        transform: translateX(50%);

        height: 100%;

        max-width: 130%;
    }

    .model-ring {
        width: 330px;
        height: 330px;

        right: 50%;

        transform:
            translate(50%, -50%);
    }

    .program-detail-x {
        right: -30%;

        font-size: 420px;
    }

    .model-caption {
        right: 0;
        bottom: 20px;
    }

    .program-hero-index {
        display: none;
    }

}

.program-hero h1 {
    font-size: clamp(68px, 8vw, 120px)
}

.program-hero p {
    font: 400 28px var(--serif);
    color: #e7a17e
}

.hero-facts {
    display: flex;
    gap: 1px;
    margin-top: 45px;
    max-width: 800px;
    background: rgba(231, 161, 126, .35)
}

.hero-facts span {
    background: rgba(5, 5, 5, .72);
    padding: 16px 22px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.hero-facts b {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-top: 5px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #513226
}

.process-grid>div {
    padding: 35px;
    background: #241712
}

.process-grid b {
    color: var(--copper);
    font-size: 12px
}

.process-grid h3 {
    font-size: 34px;
    margin: 25px 0 10px
}

.process-grid p {
    color: #c7b5ac;
    font-size: 13px
}

.faq-wrap {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px
}

.faq-wrap h2 {
    font-size: 64px
}

.faq details {
    border-bottom: 1px solid #cbbdb4;
    padding: 22px 0
}

.faq summary {
    cursor: pointer;
    font: 500 24px var(--serif);
    list-style: none
}

.faq summary:after {
    content: '+';
    float: right;
    color: #a76043
}

.faq details[open] summary:after {
    content: '–'
}

.faq p {
    padding-right: 50px
}

.mini-cta {
    padding: 70px 0;
    background: #17100d
}

.mini-cta .shell {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mini-cta h2 {
    font-size: 54px
}

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

.pricing-grid article {
    border: 1px solid #cbbdb4;
    padding: 40px;
    background: #f7f1ec
}

.pricing-grid article.featured {
    background: #17100d;
    color: #fff;
    transform: translateY(-18px)
}

.pricing-grid h2 {
    font-size: 45px;
    margin: 18px 0
}

.pricing-grid .price {
    font: 400 24px var(--serif);
    color: #a76043
}

.pricing-grid ul {
    padding: 0;
    list-style: none;
    margin: 28px 0
}

.pricing-grid li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(120, 90, 75, .2)
}

.pricing-note {
    text-align: center;
    margin-top: 35px;
    font-size: 12px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px
}

.gallery-grid figure {
    margin: 0;
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    background: #17100d
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
    grid-column: span 8
}

.gallery-grid img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: .5s
}

.gallery-grid figure:nth-child(1) img,
.gallery-grid figure:nth-child(6) img {
    height: 430px
}

.gallery-grid figure:hover img {
    transform: scale(1.04)
}

.gallery-grid figcaption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px
}

.gallery-note {
    text-align: center;
    margin-top: 30px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr .65fr 1fr 1fr;
    gap: 55px
}

.footer-about p {
    max-width: 360px
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 25px
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid #3a2b25;
    border-radius: 50%;
    display: grid;
    place-items: center !important;
    margin: 0 !important;
    color: var(--copper) !important;
    font-size: 9px !important
}

/* ==========================================
   PERSONAX PAGE LOADER
========================================== */

.loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

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

    background: var(--bg, #0a0a0a);

    opacity: 1;
    visibility: visible;

    transition:
        opacity .55s ease,
        visibility .55s ease;
}


/* Loader Content */

.loader-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: min(280px, 70vw);
}


/* Logo */

.loader-logo {
    display: block;

    width: 210px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    opacity: 0;

    transform: translateY(8px) scale(.96);

    animation: personaxLogoReveal .8s ease forwards;
}


/* Loading Line */

.loader-line {
    position: relative;

    display: block;

    width: 150px;
    height: 1px;

    margin-top: 25px;

    overflow: hidden;

    background: rgba(255, 255, 255, .12);
}


.loader-line::after {
    content: "";

    position: absolute;
    top: 0;
    left: -60%;

    width: 60%;
    height: 100%;

    background: var(--copper, #b88959);

    animation: personaxLoadingLine 1.25s ease-in-out infinite;
}


/* Logo Animation */

@keyframes personaxLogoReveal {

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}


/* Line Animation */

@keyframes personaxLoadingLine {

    0% {
        left: -60%;
    }

    50% {
        left: 45%;
    }

    100% {
        left: 110%;
    }

}


/* Hide Loader */

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Mobile */

@media (max-width: 600px) {

    .loader-logo-wrap {
        width: 65vw;
    }

    .loader-logo {
        width: 175px;
    }

    .loader-line {
        width: 120px;
        margin-top: 20px;
    }

}

.loader>span {
    position: absolute;
    width: 150px;
    height: 1px;
    background: #211713;
    top: 58%
}

.loader>span:after {
    content: '';
    display: block;
    height: 1px;
    background: var(--copper);
    animation: load 1.2s infinite
}

@keyframes load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@media(max-width:900px) {
    .hero-copy h1 {
        font-size: 72px
    }

    .price-teasers,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-wrap {
        grid-template-columns: 1fr
    }

    .gallery-grid figure,
    .gallery-grid figure:nth-child(1),
    .gallery-grid figure:nth-child(6) {
        grid-column: span 6
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .pricing-grid article.featured {
        transform: none
    }
}

@media(max-width:600px) {
    .hero-slider {
        min-height: 650px
    }

    .hero-copy h1 {
        font-size: 54px;
        letter-spacing: -2px
    }

    .hero-facts {
        display: grid
    }

    .price-teasers,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid figure,
    .gallery-grid figure:nth-child(1),
    .gallery-grid figure:nth-child(6) {
        grid-column: 1/-1
    }

    .gallery-grid img,
    .gallery-grid figure:nth-child(1) img,
    .gallery-grid figure:nth-child(6) img {
        height: 280px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .mini-cta .shell {
        display: block
    }

    .mini-cta .btn {
        margin-top: 10px
    }
}

/* =====================================
   Footer Social Icons
===================================== */

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.socials a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.7;
}

.socials a:hover {
    background: var(--copper);
    color: #fff;
    border-color: var(--copper);
    transform: translateY(-3px);
}

.socials a:hover svg {

    color: #000;

}

.socials .youtube-play {
    fill: #111;
    stroke: none;
}

.socials a:hover .youtube-play {
    fill: var(--copper);
}

/* =====================================
   Floating Contact Actions
===================================== */

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.floating-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .3s ease,
        visibility .3s ease;
}

.floating-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--copper);
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
    fill: #fff;
}

.whatsapp-btn svg {
    background: #25D366;
    fill: #fff;
}

/* Call */
.call-btn {
    background: #111;
}

/* Scroll Top */
.scroll-top-btn {
    background: var(--copper);
    border: 1px solid rgba(200, 189, 189, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-top-btn svg {
    fill: #111;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tooltip */

.floating-tooltip {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%) translateX(5px);

    background: #111;
    color: var(--copper);

    padding: 7px 11px;
    border-radius: 5px;

    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .25s ease;
}

.floating-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);

    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #111;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* =====================================
   Mobile
===================================== */

@media (max-width: 767px) {

    .floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 9px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    .floating-tooltip {
        display: none;
    }
}

/* ==================================================
   PERSONAX PREMIUM TOP BAR
================================================== */

.personax-topbar {
    position: relative;
    z-index: 1001;
    width: 100%;
    background: var(--copper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.personax-topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LEFT MESSAGE */

.personax-topbar-message {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: var(--bg);
}

.personax-topbar-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;

    border-radius: 50%;
    background: #c7a86b;

    box-shadow: 0 0 0 4px rgba(199, 168, 107, 0.12);
}


/* RIGHT CONTACT AREA */

.personax-topbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.personax-topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--bg);
    text-decoration: none;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.personax-topbar-contact a:hover {
    color: var(--text);
}

.personax-topbar-contact svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
    flex: 0 0 auto;
}


/* DIVIDER */

.personax-topbar-divider {
    display: block;

    width: 1px;
    height: 13px;

    background: rgba(255, 255, 255, 0.16);
}


/* WHATSAPP */

.personax-topbar-contact .personax-topbar-whatsapp {
    color: #c7a86b;
    font-weight: 500;
}

.personax-topbar-contact .personax-topbar-whatsapp:hover {
    color: #fff;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

    .personax-topbar-message {
        display: none;
    }

    .personax-topbar-inner {
        justify-content: flex-end;
    }
}


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

@media (max-width: 767px) {

    .personax-topbar-inner {
        min-height: 38px;
        justify-content: center;
    }

    .personax-topbar-contact {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    /* Hide email to prevent overcrowding */
    .personax-topbar-contact a:first-child {
        display: none;
    }

    /* First divider belongs to hidden email */
    .personax-topbar-contact a:first-child+.personax-topbar-divider {
        display: none;
    }

    .personax-topbar-contact a {
        font-size: 10px;
    }

    .personax-topbar-contact svg {
        width: 13px;
        height: 13px;
    }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 420px) {

    .personax-topbar-contact {
        gap: 11px;
    }

    .personax-topbar-divider {
        height: 12px;
    }

    .personax-topbar-contact a {
        font-size: 9.5px;
    }
}






/* =========================================================
   PERSONAX JOURNAL
   PREMIUM LIGHT / WHITE DESIGN
========================================================= */

.journal-intro,
.journal-section {
    --journal-bg: #f8f6f2;
    --journal-white: #ffffff;
    --journal-dark: #171311;
    --journal-text: #5f5752;
    --journal-muted: #9a918b;
    --journal-line: #ded9d4;
    --journal-copper: #a66f54;
}


/* =========================================================
   JOURNAL INTRO
========================================================= */

.journal-intro {
    position: relative;
    overflow: hidden;

    padding: 60px 0px;

    background: var(--journal-bg);
}


/* Very subtle decorative background */

.journal-intro::before {
    content: "JOURNAL";

    position: absolute;

    right: -25px;
    top: 10px;

    color: rgba(20, 17, 15, 0.025);

    font-family: var(--serif);
    font-size: clamp(100px, 15vw, 220px);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -8px;

    pointer-events: none;
}


.journal-intro-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(300px, .85fr);

    align-items: end;

    gap: 90px;
}


/* Eyebrow */

.journal-intro .eyebrow,
.journal-section .eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--journal-copper);

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2.7px;

    text-transform: uppercase;
}


.journal-intro .eyebrow::before,
.journal-section .eyebrow::before {
    content: "";

    display: block;

    width: 34px;
    height: 1px;

    background: var(--journal-copper);
}


/* Main Heading */

.journal-intro h2 {
    max-width: 700px;

    margin: 0;

    color: var(--journal-dark);

    font-family: var(--serif);

    font-size: clamp(30px, 6vw, 55px);

    font-weight: bold;

    line-height: .98;

    letter-spacing: -2px;
}


.journal-intro h2 em {
    display: block;

    margin-top: 8px;

    color: var(--journal-copper);

    font-weight: 400;
}


/* Right Copy */

.journal-intro-copy {
    position: relative;

    padding-left: 32px;

    border-left: 1px solid var(--journal-line);
}


.journal-intro-copy::before {
    content: "";

    position: absolute;

    left: -2px;
    top: 0;

    width: 3px;
    height: 42px;

    background: var(--journal-copper);
}


.journal-intro-copy p {
    margin: 0 0 18px;

    color: var(--journal-text);

    font-family: var(--sans);

    font-size: 14px;

    line-height: 1.9;
}


.journal-intro-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   JOURNAL SECTION
========================================================= */

.journal-section {
    position: relative;

    padding: 60px 0px;

    background: #ffffff;

    border-top: 1px solid #ebe7e3;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.journal-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


.journal-heading h2 {
    /* max-width: 760px; */

    margin: 0;

    color: var(--journal-dark);

    font-family: var(--serif);

    font-size: clamp(30px, 5.2vw, 55px);

    font-weight: bold;

    line-height: 1;

    letter-spacing: -1.5px;
}


.journal-heading h2 em {
    color: var(--journal-copper);

    font-weight: 400;
}


/* =========================================================
   BLOG GRID
========================================================= */

.journal-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* =========================================================
   JOURNAL CARD
========================================================= */

.journal-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: var(--journal-white);

    border: 1px solid #e7e2dd;

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


.journal-card:hover {
    transform: translateY(-8px);

    border-color: rgba(166, 111, 84, .38);

    box-shadow:
        0 25px 60px rgba(31, 23, 19, .10);
}


/* =========================================================
   IMAGE
========================================================= */

.journal-card-image {
    position: relative;

    display: block;

    height: 315px;

    overflow: hidden;

    background: #e9e4df;
}


.journal-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 45%,
            rgba(0, 0, 0, .38) 100%);

    transition: background .4s ease;
}


.journal-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

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


.journal-card:hover .journal-card-image img {
    transform: scale(1.055);
}


/* =========================================================
   ARTICLE NUMBER
========================================================= */

.journal-number {
    position: absolute;

    z-index: 4;

    left: 20px;
    bottom: 18px;

    display: flex;

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

    width: 48px;
    height: 48px;

    background: rgba(255, 255, 255, .95);

    color: var(--journal-dark);

    font-family: var(--serif);

    font-size: 17px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .12);

    transition:
        background .3s ease,
        color .3s ease;
}


.journal-card:hover .journal-number {
    background: var(--journal-copper);

    color: #fff;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.journal-card-content {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 31px 29px 32px;
}


/* Meta */

.journal-card-meta {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: var(--journal-copper);

    font-family: var(--sans);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.journal-card-meta i {
    display: block;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--journal-copper);
}


/* Title */

.journal-card h3 {
    margin: 0 0 17px;

    font-family: var(--serif);

    font-size: clamp(27px, 2.4vw, 35px);

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -.5px;
}


.journal-card h3 a {
    color: var(--journal-dark);

    text-decoration: none;

    transition: color .25s ease;
}


.journal-card h3 a:hover {
    color: var(--journal-copper);
}


/* Description */

.journal-card-content>p {
    margin: 0 0 25px;

    color: var(--journal-text);

    font-family: var(--sans);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   READ ARTICLE
========================================================= */

.journal-read {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    margin-top: auto;

    padding-bottom: 6px;

    color: var(--journal-dark);

    font-family: var(--sans);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.7px;

    text-decoration: none;

    text-transform: uppercase;
}


.journal-read::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 1px;

    background: var(--journal-copper);

    transition: width .3s ease;
}


.journal-read span {
    color: var(--journal-copper);

    font-size: 14px;

    transition: transform .3s ease;
}


.journal-read:hover {
    color: var(--journal-copper);
}


.journal-read:hover::after {
    width: 100%;
}


.journal-read:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   DIFFERENT CARD HEIGHT / EDITORIAL EFFECT
========================================================= */

/* .journal-card:nth-child(2) .journal-card-image {
    height: 365px;
} */


/* .journal-card:nth-child(2) {
    margin-top: 35px;
} */


/* .journal-card:nth-child(3) .journal-card-image {
    height: 335px;
} */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .journal-intro {
        padding: 40px 40px;
    }


    .journal-intro-grid {
        grid-template-columns: 1fr 1fr;

        gap: 55px;
    }


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


    .journal-card:nth-child(2) {
        margin-top: 0;
    }


    .journal-card-image,
    .journal-card:nth-child(2) .journal-card-image,
    .journal-card:nth-child(3) .journal-card-image {
        height: 320px;
    }

}


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

@media (max-width: 767px) {

    /* Intro */

    .journal-intro {
        padding: 30px 0px;
    }


    .journal-intro::before {
        top: 25px;
        right: -10px;

        font-size: 90px;

        letter-spacing: -3px;
    }


    .journal-intro-grid {
        grid-template-columns: 1fr;

        gap: 37px;
    }


    .journal-intro h2 {
        font-size: 45px;

        letter-spacing: -1px;
    }


    .journal-intro-copy {
        padding-left: 21px;
    }


    .journal-intro-copy p {
        font-size: 13px;

        line-height: 1.8;
    }


    /* Blog */

    .journal-section {
        padding: 30px 0px;
    }


    .journal-heading {
        margin-bottom: 35px;
    }


    .journal-heading h2 {
        font-size: 42px;

        line-height: 1.02;
    }


    .journal-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .journal-card,
    .journal-card:nth-child(2) {
        margin-top: 0;
    }


    .journal-card-image,
    .journal-card:nth-child(2) .journal-card-image,
    .journal-card:nth-child(3) .journal-card-image {
        height: 290px;
    }


    .journal-card-content {
        padding: 27px 23px 29px;
    }


    .journal-card h3 {
        font-size: 30px;
    }


    .journal-card-content>p {
        font-size: 12px;

        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .journal-intro h2 {
        font-size: 39px;
    }


    .journal-heading h2 {
        font-size: 37px;
    }


    .journal-card-image,
    .journal-card:nth-child(2) .journal-card-image,
    .journal-card:nth-child(3) .journal-card-image {
        height: 255px;
    }


    .journal-number {
        left: 15px;
        bottom: 15px;

        width: 43px;
        height: 43px;

        font-size: 15px;
    }

}

/* =========================================================
   BLOG INFORMATION BAR
========================================================= */


.blog-detail-info-bar {
    position: relative;
    z-index: 10;

    background: #100f0e;

    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.blog-detail-info-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 27px;
}


.blog-info-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.blog-info-item small {
    color: rgba(255, 255, 255, .35);

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.blog-info-item strong {
    color: #f4efeb;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .3px;
}


.blog-info-divider {
    width: 1px;
    height: 30px;

    background: rgba(255, 255, 255, .1);
}


.blog-info-back {
    margin-left: auto;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--copper);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: color .25s ease;
}


.blog-info-back:hover {
    color: #fff;
}



/* =========================================================
   PERSONAX JOURNAL - ARTICLE READING EXPERIENCE
========================================================= */

.px-article-section {
    position: relative;
    padding: 60px 0px;
    overflow: visible;
    background:
        radial-gradient(circle at 85% 15%,
            rgba(181, 125, 94, .07),
            transparent 24%),
        #f3eee8;
    color: #1b1715;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.px-article-shell {
    display: grid;
    grid-template-columns: 190px minmax(0, 780px);
    justify-content: center;
    gap: 85px;
}


/* =========================================================
   LEFT SIDEBAR
========================================================= */

.px-article-aside {
    position: relative;
}


.px-article-aside-sticky {
    position: sticky;
    top: 115px;
}


.px-aside-eyebrow {
    display: block;
    margin-bottom: 9px;

    color: #a56f53;

    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


.px-aside-top h4 {
    margin: 0;

    color: #201a17;

    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}


.px-aside-rule {
    width: 100%;
    height: 1px;

    margin: 24px 0;

    background: rgba(30, 22, 18, .12);
}


/* Meta */

.px-aside-meta {
    display: flex;
    flex-direction: column;
    gap: 19px;
}


.px-aside-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.px-aside-meta span {
    color: #9b8e87;

    font-family: var(--sans);
    font-size: 7px;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.px-aside-meta strong {
    color: #413833;

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
}


/* =========================================================
   SHARE
========================================================= */

.px-aside-share {
    margin-top: 34px;
    padding-top: 24px;

    border-top: 1px solid rgba(30, 22, 18, .1);
}


.px-aside-share>span {
    display: block;

    margin-bottom: 12px;

    color: #9b8e87;

    font-size: 7px;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.px-share-icons {
    display: flex;
    gap: 8px;
}


.px-share-icons a {
    width: 36px;
    height: 36px;

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

    border: 1px solid rgba(30, 22, 18, .15);
    border-radius: 50%;

    color: #3c312c;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.px-share-icons svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
}


.px-share-icons a:hover {
    transform: translateY(-3px);

    border-color: #171311;

    background: #171311;

    color: #fff;
}


/* Back */

.px-back-journal {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 35px;

    color: #9f6a50;

    font-family: var(--sans);
    font-size: 8px;

    letter-spacing: 1.6px;
    text-transform: uppercase;

    transition: color .25s ease;
}


.px-back-journal span {
    font-size: 14px;
}


.px-back-journal:hover {
    color: #171311;
}


/* =========================================================
   MAIN ARTICLE
========================================================= */

.px-article-content {
    position: relative;
    width: 100%;
    max-width: 780px;
}


/* =========================================================
   ARTICLE OPENING
========================================================= */

.px-article-opening {
    padding-bottom: 53px;
    margin-bottom: 20px;

    border-bottom: 1px solid rgba(32, 23, 19, .12);
}


.px-opening-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;
}


.px-opening-label span {
    width: 37px;
    height: 1px;

    background: #a96f52;
}


.px-opening-label small {
    color: #a16b50;

    font-size: 8px;

    letter-spacing: 2.6px;
    text-transform: uppercase;
}


.px-opening-copy {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}


.px-dropcap {
    flex: 0 0 auto;

    margin-top: -7px;

    color: #a66e52;

    font-family: var(--serif);
    font-size: 94px;

    line-height: .78;
}


.px-opening-copy p {
    margin: 0;

    color: #332c28;

    font-family: var(--serif);
    font-size: clamp(22px, 2.3vw, 28px);
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   ARTICLE SECTIONS
========================================================= */

.px-article-sections {
    position: relative;
}


.px-content-block {
    position: relative;

    display: grid;
    grid-template-columns: 50px 1fr;

    gap: 25px;

    padding: 54px 0;

    border-bottom: 1px solid rgba(32, 23, 19, .1);
}


.px-content-number {
    padding-top: 7px;

    color: #b37a5d;

    font-family: var(--sans);
    font-size: 9px;

    letter-spacing: 2px;
}


.px-content-inner h2 {
    max-width: 660px;

    margin: 0 0 22px;

    color: #1a1614;

    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.6px;
}


.px-content-inner p {
    max-width: 670px;

    margin: 0;

    color: #655a54;

    font-family: var(--sans);
    font-size: 15px;

    line-height: 1.95;
}


/* =========================================================
   EDITORIAL QUOTE
========================================================= */

.px-editorial-quote {
    position: relative;

    margin: 70px 0;

    padding: 60px 58px 52px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #181412,
            #0d0b0a);

    border: 0;
    border-left: 3px solid #ad7659;

    color: #fff;
}


.px-quote-x {
    position: absolute;

    right: -23px;
    bottom: -100px;

    color: rgba(192, 129, 96, .07);

    font-family: var(--serif);
    font-size: 280px;

    line-height: 1;

    pointer-events: none;
}


.px-quote-mark {
    position: absolute;

    top: 10px;
    left: 28px;

    color: rgba(193, 130, 97, .3);

    font-family: var(--serif);
    font-size: 105px;

    line-height: 1;
}


.px-editorial-quote p {
    position: relative;
    z-index: 2;

    max-width: 620px;

    margin: 0;

    color: #f6f0ec;

    font-family: var(--serif);
    font-size: clamp(28px, 3.3vw, 39px);

    line-height: 1.35;
}


.px-editorial-quote footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 31px;

    color: #b87b5d;

    font-family: var(--sans);
    font-size: 7px;

    letter-spacing: 3px;
}


.px-editorial-quote footer span {
    width: 34px;
    height: 1px;

    background: #b87b5d;
}


/* =========================================================
   PERSONAX TAKEAWAY
========================================================= */

.px-takeaway {
    display: grid;
    grid-template-columns: 80px 1fr;

    margin: 65px 0 10px;

    overflow: hidden;

    border: 1px solid rgba(44, 31, 24, .12);

    background: #ebe3dc;
}


.px-takeaway-label {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #a66e52;
}


.px-takeaway-label span {
    color: #fff;

    font-family: var(--serif);
    font-size: 22px;

    transform: rotate(-90deg);
}


.px-takeaway-content {
    padding: 34px 38px 37px;
}


.px-takeaway-content small {
    color: #9e684e;

    font-size: 7px;

    letter-spacing: 2.5px;
}


.px-takeaway-content h3 {
    margin: 11px 0 13px;

    color: #1c1715;

    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;

    line-height: 1.05;
}


.px-takeaway-content p {
    margin: 0;

    color: #665b55;

    font-size: 13px;

    line-height: 1.8;
}


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

.px-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 60px;
    padding-top: 27px;

    border-top: 1px solid rgba(32, 23, 19, .12);
}


.px-article-footer>div {
    display: flex;
    align-items: center;
    gap: 13px;
}


.px-footer-line {
    width: 42px;
    height: 1px;

    background: #a86f53;
}


.px-article-footer small {
    color: #998a82;

    font-size: 7px;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.px-article-footer>a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #9f694f;

    font-size: 8px;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.px-article-footer>a span {
    font-size: 14px;

    transition: transform .25s ease;
}


.px-article-footer>a:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   RELATED JOURNAL
========================================================= */

.px-related-section {
    position: relative;

    padding: 60px 0px;

    overflow: hidden;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(181, 120, 88, .09),
            transparent 25%),
        #090807;
}


.px-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}


.px-related-head h2 {
    margin: 12px 0 0;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 500;

    line-height: .95;
}


.px-related-head h2 em {
    color: var(--copper);

    font-weight: 400;
}


.px-related-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(190, 128, 96, .35);

    color: var(--copper);

    font-size: 8px;

    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.px-related-view-all span {
    font-size: 15px;

    transition: transform .25s ease;
}


.px-related-view-all:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   RELATED GRID
========================================================= */

.px-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


.px-related-card {
    display: grid;
    grid-template-columns: 46% 54%;

    min-height: 330px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

    background: #100e0d;

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


.px-related-card:hover {
    transform: translateY(-7px);

    border-color: rgba(187, 126, 95, .35);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}


/* Image */

.px-related-image {
    position: relative;

    display: block;

    min-height: 330px;

    overflow: hidden;
}


.px-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .75s ease;
}


.px-related-card:hover .px-related-image img {
    transform: scale(1.06);
}


.px-related-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .6));
}


.px-related-category {
    position: absolute;

    left: 16px;
    bottom: 16px;

    z-index: 3;

    padding: 8px 11px;

    background: rgba(10, 9, 8, .86);

    color: #c58a6c;

    font-size: 7px;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.px-related-arrow {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    width: 37px;
    height: 37px;

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

    border-radius: 50%;

    background: rgba(10, 9, 8, .72);

    color: #fff;

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease;
}


.px-related-card:hover .px-related-arrow {
    background: var(--copper);

    color: #111;
}


/* Related Content */

.px-related-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 34px;
}


.px-related-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #bd8061;

    font-size: 7px;

    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.px-related-meta i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: currentColor;
}


.px-related-content h3 {
    margin: 17px 0 15px;

    font-family: var(--serif);
    font-size: clamp(26px, 2.5vw, 33px);
    font-weight: 500;

    line-height: 1.04;
}


.px-related-content h3 a {
    color: #f6f0ed;

    transition: color .25s ease;
}


.px-related-content h3 a:hover {
    color: var(--copper);
}


.px-related-content p {
    margin: 0;

    color: #958985;

    font-size: 11px;

    line-height: 1.75;
}


.px-read-article {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 21px;

    color: #be8061;

    font-size: 8px;

    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.px-read-article span {
    font-size: 14px;

    transition: transform .25s ease;
}


.px-read-article:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .px-article-shell {
        grid-template-columns: 150px minmax(0, 680px);
        gap: 50px;
    }


    .px-related-grid {
        grid-template-columns: 1fr;
    }


    .px-related-card {
        max-width: 850px;
    }

}


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

@media (max-width: 767px) {

    .px-article-section {
        padding: 30px 0px;
    }


    .px-article-shell {
        display: block;
    }


    /* Mobile Article Info */

    .px-article-aside {
        margin-bottom: 45px;
        padding-bottom: 28px;

        border-bottom: 1px solid rgba(30, 22, 18, .12);
    }


    .px-article-aside-sticky {
        position: static;
    }


    .px-aside-rule {
        margin: 17px 0;
    }


    .px-aside-meta {
        flex-direction: row;
        gap: 35px;
    }


    .px-aside-share {
        margin-top: 20px;
        padding-top: 20px;
    }


    .px-back-journal {
        margin-top: 22px;
    }


    /* Opening */

    .px-article-opening {
        padding-bottom: 40px;
    }


    .px-opening-copy {
        gap: 11px;
    }


    .px-dropcap {
        font-size: 70px;
    }


    .px-opening-copy p {
        font-size: 21px;
        line-height: 1.5;
    }


    /* Sections */

    .px-content-block {
        grid-template-columns: 1fr;

        gap: 11px;

        padding: 43px 0;
    }


    .px-content-number {
        padding-top: 0;
    }


    .px-content-inner h2 {
        margin-bottom: 16px;

        font-size: 34px;
    }


    .px-content-inner p {
        font-size: 14px;
        line-height: 1.85;
    }


    /* Quote */

    .px-editorial-quote {
        margin: 50px 0;

        padding: 47px 27px 37px;
    }


    .px-editorial-quote p {
        font-size: 27px;
    }


    .px-quote-x {
        font-size: 210px;
    }


    /* Takeaway */

    .px-takeaway {
        grid-template-columns: 1fr;
    }


    .px-takeaway-label {
        min-height: 52px;

        justify-content: flex-start;

        padding: 0 24px;
    }


    .px-takeaway-label span {
        transform: none;

        font-size: 18px;
    }


    .px-takeaway-content {
        padding: 28px 24px 31px;
    }


    .px-takeaway-content h3 {
        font-size: 27px;
    }


    /* Footer */

    .px-article-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }


    /* Related */

    .px-related-section {
        padding: 30px 0px;
    }


    .px-related-head {
        display: block;

        margin-bottom: 35px;
    }


    .px-related-view-all {
        margin-top: 25px;
    }


    .px-related-card {
        display: block;

        min-height: 0;
    }


    .px-related-image {
        min-height: 260px;
        height: 260px;
    }


    .px-related-content {
        padding: 27px 24px 31px;
    }


    .px-related-content h3 {
        font-size: 29px;
    }

}


/* =========================================================
   PROGRAM DETAILS - PREMIUM DESIGN
========================================================= */

.pd-overview,
.pd-learning,
.pd-outcomes,
.pd-audience-section,
.pd-faq-section {
    --pd-dark: #171311;
    --pd-text: #625853;
    --pd-muted: #968a84;
    --pd-copper: #aa7257;
    --pd-cream: #f5f1ec;
    --pd-line: rgba(31, 23, 19, .12);
}


/* =========================================================
   OVERVIEW
========================================================= */

.pd-overview {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #f5f1ec;
}


.pd-overview::after {
    content: "PX";

    position: absolute;
    right: -30px;
    bottom: -65px;

    color: rgba(20, 16, 14, .025);

    font-family: var(--serif);
    font-size: 260px;
    line-height: 1;

    pointer-events: none;
}


.pd-overview-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}


.pd-overview-heading h2 {
    max-width: 480px;

    margin: 17px 0 30px;

    color: var(--pd-dark);

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .98;
}


.pd-overview-line {
    width: 70px;
    height: 1px;

    background: var(--pd-copper);
}


.pd-overview-lead {
    margin: 0 0 28px;

    color: #2c2521;

    font-family: var(--serif);
    font-size: clamp(25px, 2.4vw, 32px);

    line-height: 1.45;
}


.pd-overview-content>p:not(.pd-overview-lead) {
    max-width: 690px;

    color: var(--pd-text);

    font-size: 14px;

    line-height: 1.9;
}


.pd-overview-signature {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}


.pd-overview-signature span {
    width: 48px;
    height: 1px;

    background: var(--pd-copper);
}


.pd-overview-signature small {
    color: var(--pd-copper);

    font-size: 10px;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.pd-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}


.pd-section-head h2 {
    margin: 13px 0 0;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .98;
}


.pd-section-head h2 em {
    color: #a96f53;

    font-weight: 400;
}


.pd-section-head>p {
    max-width: 390px;

    margin: 0;

    color: #766a64;

    font-size: 13px;

    line-height: 1.8;
}

.f-dark {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

/* =========================================================
   LEARNING CARDS
========================================================= */

.pd-learning {
    padding: 60px 0px;

    background: #fff;
}


.pd-learning-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    border-top: 1px solid #ded9d5;
    border-left: 1px solid #ded9d5;
}


.pd-learning-card {
    position: relative;

    min-height: 350px;

    display: flex;
    flex-direction: column;

    padding: 32px 29px;

    border-right: 1px solid #ded9d5;
    border-bottom: 1px solid #ded9d5;

    background: #fff;

    transition:
        background .35s ease,
        transform .35s ease,
        color .35s ease;
}


.pd-learning-card:hover {
    z-index: 2;

    background: #a96f53;

    transform: translateY(-6px);
}


.pd-learning-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.pd-learning-number {
    color: #a96f53;

    font-size: 9px;

    letter-spacing: 2px;
}


.pd-learning-arrow {
    color: #b6aaa3;

    font-size: 18px;

    transition: transform .3s ease;
}


.pd-learning-card h3 {
    margin: auto 0 20px;

    color: #1a1614;

    font-family: var(--serif);
    font-size: 31px;
    font-weight: bold;

    line-height: 1.05;
}


.pd-learning-card p {
    margin: 0;

    color: #70645e;

    font-size: 12px;

    line-height: 1.8;
}


.pd-learning-bottom {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    color: #a99d96;

    font-size: 10px;

    letter-spacing: 2px;
}


.pd-learning-bottom span {
    width: 25px;
    height: 1px;

    background: currentColor;
}


.pd-learning-card:hover .pd-learning-number,
.pd-learning-card:hover .pd-learning-arrow,
.pd-learning-card:hover h3,
.pd-learning-card:hover p,
.pd-learning-card:hover .pd-learning-bottom {
    color: #fff;
}


.pd-learning-card:hover .pd-learning-arrow {
    transform: translate(4px, 4px);
}


/* =========================================================
   OUTCOMES
========================================================= */

.pd-outcomes {
    padding: 60px 0;

    background: #eee7e0;
}


.pd-outcomes-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;

    gap: 100px;
}


.pd-outcomes-intro {
    max-width: 470px;
}


.pd-outcomes-intro h2 {
    margin: 16px 0 25px;

    color: #191513;

    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 65px);
    font-weight: 500;

    line-height: .98;
}


.pd-outcomes-intro h2 em {
    display: block;

    color: #a76e52;

    font-weight: 400;
}


.pd-outcomes-intro>p {
    color: #6c605a;

    font-size: 13px;

    line-height: 1.9;
}


.pd-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(164, 105, 78, .35);

    color: #9f684e;

    font-size: 10px;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.pd-text-link span {
    font-size: 15px;

    transition: transform .25s ease;
}


.pd-text-link:hover span {
    transform: translate(3px, -3px);
}


/* Outcome rows */

.pd-outcome-list {
    border-top: 1px solid rgba(31, 23, 19, .14);
}


.pd-outcome-item {
    display: grid;
    grid-template-columns: 65px 1fr;

    gap: 22px;

    padding: 28px 0;

    border-bottom: 1px solid rgba(31, 23, 19, .14);
}


.pd-outcome-item>span {
    padding-top: 5px;

    color: #a86f53;

    font-size: 9px;

    letter-spacing: 2px;
}


.pd-outcome-item h3 {
    margin: 0 0 8px;

    color: #1c1715;

    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}


.pd-outcome-item p {
    max-width: 530px;

    margin: 0;

    color: #71655f;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   JOURNEY
========================================================= */

.pd-journey {
    position: relative;

    padding: 60px 0px;

    overflow: hidden;

    background:
        radial-gradient(circle at 75% 25%,
            rgba(175, 113, 81, .11),
            transparent 28%),
        #0c0a09;
}


.pd-section-head-light h2 {
    color: #fff;
}


.pd-section-head-light>p {
    color: #958985;
}


.pd-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
}


.pd-journey-item {
    position: relative;

    min-height: 370px;

    display: flex;
    flex-direction: column;

    padding: 30px 27px;

    overflow: hidden;

    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);

    transition: background .35s ease;
}


.pd-journey-item:hover {
    background: rgba(255, 255, 255, .035);
}


.pd-journey-number {
    color: #b6795b;

    font-size: 8px;

    letter-spacing: 2px;
}


.pd-journey-icon {
    width: 67px;
    height: 67px;

    margin-top: 45px;

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

    border: 1px solid rgba(183, 120, 89, .45);
    border-radius: 50%;
}


.pd-journey-icon span {
    color: #bc7d5e;

    font-family: var(--serif);
    font-size: 17px;
}


.pd-journey-item h3 {
    margin: auto 0 12px;

    color: #fff;

    font-family: var(--serif);
    font-size: 45px;
    font-weight: bold;
}


.pd-journey-item p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.75;
}


.pd-journey-item small {
    margin-top: 20px;

    color: #b7785a;

    font-size: 10px;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   PERSONAX EXPERIENCE
========================================================= */

.pd-experience {
    padding: 60px 0;

    background: #fff;
}


.pd-experience-box {
    position: relative;

    display: grid;
    grid-template-columns: 210px 1fr;

    min-height: 420px;

    overflow: hidden;

    background: #171311;
}


.pd-experience-x {
    position: absolute;

    right: -35px;
    bottom: -115px;

    color: rgba(180, 116, 84, .08);

    font-family: var(--serif);
    font-size: 330px;

    line-height: 1;
}


.pd-experience-label {
    position: relative;
    z-index: 2;

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

    gap: 18px;

    border-right: 1px solid rgba(255, 255, 255, .1);

    background: #a96f53;
}


.pd-experience-label>span {
    color: #fff;

    font-family: var(--serif);
    font-size: 50px;
}


.pd-experience-label small {
    color: rgba(255, 255, 255, .75);

    font-size: 9px;

    letter-spacing: 2px;
}


.pd-experience-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 65px 70px;
}


.pd-experience-content h2 {
    margin: 13px 0 20px;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: 500;

    line-height: .95;
}


.pd-experience-content h2 em {
    color: #bd7e5e;

    font-weight: 400;
}


.pd-experience-content>p {
    max-width: 680px;

    color: #9f9490;

    font-size: 14px;

    line-height: 1.85;
}


.pd-experience-features {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


.pd-experience-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(255, 255, 255, .1);

    color: #d8cfca;

    font-size: 11px;

    letter-spacing: .5px;
}


.pd-experience-features i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #bd7e5e;
}


/* =========================================================
   AUDIENCE
========================================================= */

.pd-audience-section {
    padding: 60px 0;

    background: #f5f1ec;
}


.pd-audience-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;

    gap: 90px;
}


.pd-audience-heading h2 {
    max-width: 480px;

    margin: 15px 0 0;

    color: #1a1614;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .98;
}


.pd-audience-heading h2 em {
    color: #a86f53;

    font-weight: 400;
}


.pd-audience-content>p {
    max-width: 600px;

    margin: 0 0 32px;

    color: #6c615b;

    font-size: 14px;

    line-height: 1.85;
}


.pd-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(30, 22, 18, .13);
    border-left: 1px solid rgba(30, 22, 18, .13);
}


.pd-audience-grid>div {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px;

    border-right: 1px solid rgba(30, 22, 18, .13);
    border-bottom: 1px solid rgba(30, 22, 18, .13);

    color: #29221e;

    font-family: var(--serif);
    font-size: 20px;

    transition:
        background .3s ease,
        color .3s ease;
}


.pd-audience-grid>div:hover {
    background: #a96f53;

    color: #fff;
}


.pd-audience-grid span {
    color: #aa7257;

    font-family: var(--sans);
    font-size: 7px;

    letter-spacing: 1px;
}


.pd-audience-grid>div:hover span {
    color: rgba(255, 255, 255, .7);
}


/* =========================================================
   FORMAT STRIP
========================================================= */

.pd-format-strip {
    background: #fff;

    border-top: 1px solid #e4ded9;
    border-bottom: 1px solid #e4ded9;
}


.pd-format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.pd-format-item {
    min-height: 190px;

    padding: 35px 28px;

    border-right: 1px solid #e4ded9;
}


.pd-format-item:first-child {
    border-left: 1px solid #e4ded9;
}


.pd-format-item small {
    color: #a76e52;

    font-size: 10px;

    letter-spacing: 2px;
}


.pd-format-item strong {
    display: block;

    margin: 20px 0 11px;

    color: #1b1715;

    font-family: var(--serif);
    font-size: 30px;
    font-weight: bold;
}


.pd-format-item p {
    margin: 0;

    color: #81756e;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FAQ
========================================================= */

.pd-faq-section {
    padding: 60px 0;

    background: #f3eee8;
}


.pd-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;

    gap: 100px;
}


.pd-faq-heading-sticky {
    position: sticky;
    top: 120px;
}


.pd-faq-heading h2 {
    margin: 14px 0 22px;

    color: #1a1614;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .95;
}


.pd-faq-heading h2 em {
    display: block;

    color: #a86f53;

    font-weight: 400;
}


.pd-faq-heading p {
    max-width: 390px;

    color: #71655f;

    font-size: 14px;

    line-height: 1.8;
}


/* FAQ Items */

.pd-faq {
    border-top: 1px solid rgba(30, 22, 18, .14);
}


.pd-faq details {
    border-bottom: 1px solid rgba(30, 22, 18, .14);
}


.pd-faq summary {
    position: relative;

    min-height: 92px;

    display: grid;
    grid-template-columns: 48px 1fr 28px;

    align-items: center;

    gap: 18px;

    cursor: pointer;

    list-style: none;
}


.pd-faq summary::-webkit-details-marker {
    display: none;
}


.pd-faq-number {
    color: #aa7257;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.pd-faq summary strong {
    color: #241e1b;

    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}


/* Plus icon */

.pd-faq summary i {
    position: relative;

    width: 28px;
    height: 28px;

    border: 1px solid rgba(30, 22, 18, .16);
    border-radius: 50%;
}


.pd-faq summary i::before,
.pd-faq summary i::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 10px;
    height: 1px;

    background: #9e684e;

    transform: translate(-50%, -50%);

    transition: transform .25s ease;
}


.pd-faq summary i::after {
    transform:
        translate(-50%, -50%) rotate(90deg);
}


.pd-faq details[open] summary i {
    background: #a96f53;

    border-color: #a96f53;
}


.pd-faq details[open] summary i::before,
.pd-faq details[open] summary i::after {
    background: #fff;
}


.pd-faq details[open] summary i::after {
    transform:
        translate(-50%, -50%) rotate(0);
}


/* Answer */

.pd-faq-answer {
    padding:
        0 55px 30px 66px;
}


.pd-faq-answer p {
    max-width: 620px;

    margin: 0;

    color: #71655f;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   FINAL CTA
========================================================= */

.pd-final-cta {
    position: relative;

    padding: 60px 0;

    overflow: hidden;

    background: #171311;
}


.pd-final-x {
    position: absolute;

    right: 4%;
    top: -90px;

    color: rgba(178, 115, 84, .08);

    font-family: var(--serif);
    font-size: 280px;

    line-height: 1;
}


.pd-final-cta-inner {
    position: relative;
    z-index: 2;

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

    gap: 60px;
}


.pd-final-cta small {
    color: #b97a5c;

    font-size: 8px;

    letter-spacing: 3px;
}


.pd-final-cta h2 {
    max-width: 720px;

    margin: 13px 0 0;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .98;
}


.pd-final-cta h2 em {
    color: #bc7d5e;

    font-weight: 400;
}


.pd-final-actions {
    flex: 0 0 auto;

    display: flex;

    gap: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .pd-overview-grid,
    .pd-outcomes-grid,
    .pd-audience-layout,
    .pd-faq-layout {
        gap: 55px;
    }


    .pd-journey-grid,
    .pd-format-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .pd-experience-box {
        grid-template-columns: 150px 1fr;
    }


    .pd-experience-content {
        padding: 55px 45px;
    }

}


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

@media (max-width: 767px) {

    .pd-overview,
    .pd-learning,
    .pd-outcomes,
    .pd-journey,
    .pd-experience,
    .pd-audience-section,
    .pd-faq-section {
        padding: 30px 0;
    }


    .pd-overview-grid,
    .pd-outcomes-grid,
    .pd-audience-layout,
    .pd-faq-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .pd-section-head {
        display: block;

        margin-bottom: 35px;
    }


    .pd-section-head>p {
        margin-top: 20px;
    }


    /* Learning */

    .pd-learning-grid {
        grid-template-columns: 1fr;
    }


    .pd-learning-card {
        min-height: 290px;
    }


    /* Journey */

    .pd-journey-grid {
        grid-template-columns: 1fr;
    }


    .pd-journey-item {
        min-height: 300px;
    }


    .pd-journey-icon {
        margin-top: 30px;
    }


    /* Experience */

    .pd-experience-box {
        grid-template-columns: 1fr;
    }


    .pd-experience-label {
        min-height: 90px;

        flex-direction: row;

        border-right: 0;
    }


    .pd-experience-label>span {
        font-size: 30px;
    }


    .pd-experience-content {
        padding: 42px 25px;
    }


    /* Audience */

    .pd-audience-grid {
        grid-template-columns: 1fr;
    }


    /* Format */

    .pd-format-grid {
        grid-template-columns: 1fr;
    }


    .pd-format-item {
        min-height: auto;

        border-left: 1px solid #e4ded9;

        border-bottom: 1px solid #e4ded9;
    }


    /* FAQ */

    .pd-faq-heading-sticky {
        position: static;
    }


    .pd-faq summary {
        min-height: 85px;

        grid-template-columns: 35px 1fr 28px;

        gap: 10px;
    }


    .pd-faq summary strong {
        font-size: 18px;
    }


    .pd-faq-answer {
        padding:
            0 38px 27px 45px;
    }


    /* CTA */

    .pd-final-cta {
        padding: 30px 0;
    }


    .pd-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 35px;
    }


    .pd-final-actions {
        width: 100%;

        flex-wrap: wrap;
    }

}


/* =========================================================
   PERSONAX - DESIGNED FOR REAL LIFE
========================================================= */

.px-audience-section {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
    background: #f5f1ec;
}


/* Decorative background word */

.px-audience-bg-text {
    position: absolute;
    right: -25px;
    top: 20px;

    color: rgba(24, 19, 16, .025);

    font-family: var(--serif);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -8px;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.px-audience-head {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.15fr .85fr;

    align-items: end;

    gap: 90px;

    margin-bottom: 60px;
}


.px-audience-title h2 {
    max-width: 720px;

    margin: 15px 0 0;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(28px, 5.6vw, 55px);
    font-weight: bold;

    line-height: .96;
    letter-spacing: -1.8px;
}


.px-audience-title h2 em {
    display: block;

    margin-top: 7px;

    color: #a96f53;

    font-weight: 400;
}


/* Right introduction */

.px-audience-intro {
    max-width: 450px;

    padding-left: 30px;

    border-left: 1px solid rgba(30, 22, 18, .13);
}


.px-audience-intro p {
    margin: 0;

    color: #6d625c;

    font-size: 14px;

    line-height: 1.9;
}


.px-audience-signature {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 24px;
}


.px-audience-signature span {
    width: 38px;
    height: 1px;

    background: #a96f53;
}


.px-audience-signature small {
    color: #a96f53;

    font-size: 7px;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


/* =========================================================
   AUDIENCE CARDS
========================================================= */

.px-audience-cards {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(31, 23, 19, .13);
    border-left: 1px solid rgba(31, 23, 19, .13);
}


/* Individual card */

.px-audience-card {
    position: relative;

    min-height: 350px;

    display: flex;
    flex-direction: column;

    padding: 27px 25px 29px;

    overflow: hidden;

    border-right: 1px solid rgba(31, 23, 19, .13);
    border-bottom: 1px solid rgba(31, 23, 19, .13);

    background: rgba(255, 255, 255, .25);

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


/* Subtle X inside card */

.px-audience-card::before {
    content: "X";

    position: absolute;

    right: -17px;
    bottom: -65px;

    color: rgba(255, 255, 255, 0);

    font-family: var(--serif);
    font-size: 170px;

    line-height: 1;

    transition: color .35s ease;

    pointer-events: none;
}


.px-audience-card:hover {
    z-index: 3;

    background: #171311;

    transform: translateY(-7px);

    box-shadow:
        0 25px 50px
        rgba(30, 22, 18, .13);
}


.px-audience-card:hover::before {
    color: rgba(181, 119, 87, .08);
}


/* =========================================================
   CARD TOP
========================================================= */

.px-audience-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.px-audience-number {
    color: #a96f53;

    font-family: var(--sans);
    font-size: 8px;

    letter-spacing: 2px;
}


.px-audience-arrow {
    width: 34px;
    height: 34px;

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

    border: 1px solid rgba(30, 22, 18, .14);
    border-radius: 50%;

    color: #9d918a;

    font-size: 14px;

    transition:
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.px-audience-card-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}


.px-audience-card-content small {
    display: block;

    margin-bottom: 13px;

    color: #a96f53;

    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.px-audience-card-content h3 {
    margin: 0 0 17px;

    color: #1c1715;

    font-family: var(--serif);
    font-size: clamp(26px, 2.3vw, 34px);
    font-weight: 500;

    line-height: 1.02;

    transition: color .3s ease;
}


.px-audience-card-content p {
    margin: 0;

    color: #746962;

    font-family: var(--sans);
    font-size: 15px;

    line-height: 1.5;

    transition: color .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.px-audience-card:hover
.px-audience-card-content h3 {
    color: #fff;
}


.px-audience-card:hover
.px-audience-card-content p {
    color: #a99d97;
}


.px-audience-card:hover
.px-audience-arrow {
    color: #c18465;

    border-color: rgba(193, 132, 101, .45);

    transform: translate(3px, -3px);
}


/* =========================================================
   LAST CARD
========================================================= */

.px-audience-card-wide {
    grid-column: span 2;
}


.px-audience-card-wide
.px-audience-card-content {
    max-width: 480px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .px-audience-head {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }


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


    .px-audience-card-wide {
        grid-column: span 2;
    }

}


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

@media (max-width: 767px) {

    .px-audience-section {
        padding: 30px 0px;
    }


    .px-audience-bg-text {
        top: 30px;
        right: -10px;

        font-size: 85px;

        letter-spacing: -3px;
    }


    .px-audience-head {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 40px;
    }


    .px-audience-title h2 {
        font-size: 43px;

        letter-spacing: -1px;
    }


    .px-audience-intro {
        padding-left: 20px;
    }


    .px-audience-cards {
        grid-template-columns: 1fr;
    }


    .px-audience-card,
    .px-audience-card-wide {
        grid-column: auto;

        min-height: 280px;

        padding: 24px 22px;
    }


    .px-audience-card-content h3 {
        font-size: 30px;
    }


    .px-audience-card-content p {
        max-width: 420px;

        font-size: 13px;
    }

}

/* =========================================================
   HOME - ABOUT PERSONAX
========================================================= */

.home-about {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: #f4efe9;
}


.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 95px;
}


/* =========================================================
   IMAGE
========================================================= */

.home-about-visual {
    position: relative;
    min-height: 600px;
}


.home-about-image-wrap {
    position: relative;

    width: calc(100% - 55px);
    height: 500px;

    overflow: hidden;

    background: #d9d0c8;
}


.home-about-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}


.home-about-visual:hover
.home-about-image-wrap img {
    transform: scale(1.035);
}


.home-about-image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.35) 100%
        );
}


/* Badge */

.home-about-badge {
    position: absolute;
    left: 28px;
    bottom: 27px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 13px;

    color: #fff;
}


.home-about-badge > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,.45);

    font-family: var(--serif);
    font-size: 18px;
}


.home-about-badge small {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Floating Quote */

.home-about-quote {
    position: absolute;

    right: 0;
    bottom: 35px;

    z-index: 5;

    width: 270px;

    padding: 30px 27px;

    background: #171311;

    box-shadow: 0 25px 55px rgba(0,0,0,.18);
}


.home-about-quote-mark {
    display: block;

    height: 35px;

    color: #b97b5c;

    font-family: var(--serif);
    font-size: 60px;

    line-height: .8;
}

.home-about-quote p cite {
    display: block;
    color: var(--copper);
    font: 10px var(--sans);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px
}



.home-about-quote p {
    margin: 12px 0 0;

    color: #f6f0ec;

    font-family: var(--serif);
    font-size: 20px;

    line-height: 1.4;
}


.home-about-index {
    position: absolute;

    top: 15px;
    right: 0;

    writing-mode: vertical-rl;

    color: #a96f53;

    font-size: 13px;

    letter-spacing: 4px;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.home-about-content {
    max-width: 650px;
}


.home-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;

    color: #a66e52;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.home-about-eyebrow::before {
    content: "";

    width: 40px;
    height: 1px;

    background: #a66e52;
}


.home-about-content h2 {
    margin: 0 0 30px;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(50px, 5.5vw, 72px);
    font-weight: 500;

    line-height: .96;
    letter-spacing: -1.5px;
}


.home-about-content h2 em {
    color: #a96f53;
    font-weight: 400;
}


.home-about-lead {
    margin: 0 0 22px;

    color: #302824;

    font-family: var(--serif);
    font-size: 22px;

    line-height: 1.5;
}


.home-about-content > p:not(.home-about-lead) {
    margin: 0 0 17px;

    color: #675d57;

    font-size: 15px;

    line-height: 1.85;
}


/* Principles */

.home-about-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 35px;

    border-top: 1px solid rgba(32,23,19,.14);
    border-bottom: 1px solid rgba(32,23,19,.14);
}


.home-about-principles > div {
    padding: 24px 18px 24px 0;
}


.home-about-principles > div + div {
    padding-left: 20px;

    border-left: 1px solid rgba(32,23,19,.14);
}


.home-about-principles span {
    display: block;

    margin-bottom: 12px;

    color: #a96f53;

    font-size: 12px;
}


.home-about-principles strong {
    display: block;

    margin-bottom: 8px;

    color: #1d1816;

    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
}


.home-about-principles p {
    margin: 0;

    color: #776c66;

    font-size: 12px;

    line-height: 1.6;
}


/* Link */

.home-about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 33px;
    padding-bottom: 7px;

    border-bottom: 1px solid #a96f53;

    color: #27201d;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.home-about-link span {
    color: #a96f53;

    font-size: 18px;

    transition: transform .25s ease;
}


.home-about-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================================
   DARK HOME ENQUIRY
========================================================= */

.home-enquiry {
    position: relative;

    padding: 60px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(176, 112, 81, .12),
            transparent 27%
        ),
        #0c0a09;
}


.home-enquiry-x {
    position: absolute;

    left: -70px;
    bottom: -180px;

    color: rgba(184, 119, 87, .055);

    font-family: var(--serif);
    font-size: 500px;

    line-height: 1;

    pointer-events: none;
}


.home-enquiry-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


/* Left */

.home-enquiry-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 22px;

    color: #bd7d5e;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.home-enquiry-eyebrow::before {
    content: "";

    width: 40px;
    height: 1px;

    background: #bd7d5e;
}


.home-enquiry-content h2 {
    max-width: 650px;

    margin: 0 0 27px;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(28px, 5.5vw, 55px);
    font-weight: bold;

    line-height: .97;
}


.home-enquiry-content h2 em {
  
    color: #bd7d5e;

    font-weight: 400;
}


.home-enquiry-content > p {
    max-width: 570px;

    margin: 0;

    color: #aca09a;

    font-size: 15px;

    line-height: 1.85;
}


.home-enquiry-points {
    margin-top: 38px;

    border-top: 1px solid rgba(255,255,255,.11);
}


.home-enquiry-points > div {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(255,255,255,.11);

    color: #e7dfdb;

    font-family: var(--serif);
    font-size: 17px;
}


.home-enquiry-points span {
    color: #bc7c5d;

    font-family: var(--sans);
    font-size: 12px;
}


/* =========================================================
   FORM PANEL
========================================================= */

.home-enquiry-form-wrap {
    position: relative;

    padding: 45px;

    border: 1px solid rgba(255,255,255,.11);

    background: rgba(255,255,255,.035);

    backdrop-filter: blur(8px);
}


.home-enquiry-form-wrap::before {
    content: "";

    position: absolute;

    top: -1px;
    left: -1px;

    width: 85px;
    height: 3px;

    background: #b97859;
}


.home-enquiry-form-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.home-enquiry-form-head span {
    color: #bd7d5e;

    font-family: var(--serif);
    font-size: 22px;
}


.home-enquiry-form-head p {
    margin: 0;

    color: #9d918b;

    font-size: 13px;
}


/* Fields */

.home-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.home-form-field {
    margin-bottom: 22px;
}


.home-form-field label {
    display: block;

    margin-bottom: 9px;

    color: #d8cfca;

    font-size: 13px;
    font-weight: 500;
}


.home-form-field input,
.home-form-field select,
.home-form-field textarea {
    width: 100%;

    padding: 15px 0;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.17);
    border-radius: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: var(--sans);
    font-size: 14px;

    transition: border-color .25s ease;
}


.home-form-field textarea {
    min-height: 100px;

    resize: vertical;
}


.home-form-field input::placeholder,
.home-form-field textarea::placeholder {
    color: #756c68;
}


.home-form-field input:focus,
.home-form-field select:focus,
.home-form-field textarea:focus {
    border-color: #b97859;
}


.home-form-field select {
    cursor: pointer;
}


.home-form-field select option {
    background: #171311;

    color: #fff;
}


/* Submit */

.home-form-submit {
    width: 100%;

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

    margin-top: 10px;

    padding: 17px 20px;

    border: 1px solid #b97859;

    background: #b97859;

    color: #fff;

    cursor: pointer;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease;
}


.home-form-submit span {
    font-size: 18px;

    transition: transform .25s ease;
}


.home-form-submit:hover {
    background: transparent;

    color: #c98665;
}


.home-form-submit:hover span {
    transform: translate(4px, -4px);
}

/* =========================================================
   HOME FAQ
========================================================= */

.home-faq-section {
    padding: 60px 0;

    background: #f4efe9;
}


.home-faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}


.home-faq-sticky {
    position: sticky;
    top: 120px;
}


.home-faq-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 20px;

    color: #a96f53;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.home-faq-eyebrow::before {
    content: "";

    width: 40px;
    height: 1px;

    background: #a96f53;
}


.home-faq-intro h2 {
    max-width: 500px;

    margin: 0 0 25px;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .97;
}


.home-faq-intro h2 em {

    color: #a96f53;

    font-weight: 400;
}


.home-faq-intro p {
    max-width: 430px;

    margin: 0;

    color: #6d625c;

    font-size: 16px;

    line-height: 1.85;
}


.home-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;
    padding-bottom: 7px;

    border-bottom: 1px solid #a96f53;

    color: #28211e;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .8px;
    text-transform: uppercase;
}


.home-faq-contact span {
    color: #a96f53;

    font-size: 18px;

    transition: transform .25s ease;
}


.home-faq-contact:hover span {
    transform: translate(4px, -4px);
}


/* =========================================================
   FAQ ITEMS
========================================================= */

.home-faq {
    border-top: 1px solid rgba(32,23,19,.15);
}


.home-faq details {
    border-bottom: 1px solid rgba(32,23,19,.15);
}


.home-faq summary {
    min-height: 100px;

    display: grid;
    grid-template-columns: 50px 1fr 38px;

    align-items: center;

    gap: 18px;

    cursor: pointer;

    list-style: none;
}


.home-faq summary::-webkit-details-marker {
    display: none;
}


.home-faq-number {
    color: #a96f53;

    font-size: 12px;

    letter-spacing: 1px;
}


.home-faq summary strong {
    color: #211b18;

    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;

    line-height: 1.35;
}


/* Plus */

.home-faq summary i {
    position: relative;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(32,23,19,.18);
    border-radius: 50%;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.home-faq summary i::before,
.home-faq summary i::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 11px;
    height: 1px;

    background: #a96f53;

    transform: translate(-50%, -50%);

    transition: transform .25s ease;
}


.home-faq summary i::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


.home-faq details[open]
summary i {
    border-color: #a96f53;

    background: #a96f53;
}


.home-faq details[open]
summary i::before,
.home-faq details[open]
summary i::after {
    background: #fff;
}


.home-faq details[open]
summary i::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/* Answer */

.home-faq-answer {
    padding:
        0
        65px
        34px
        68px;
}


.home-faq-answer p {
    max-width: 650px;

    margin: 0;

    color: #6c615b;

    font-size: 15px;

    line-height: 1.85;
}

/* =========================================================
   HOME NEW SECTIONS - RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .home-about-grid,
    .home-enquiry-grid,
    .home-faq-layout {
        gap: 55px;
    }

    .home-about-visual {
        min-height: 560px;
    }

    .home-about-image-wrap {
        height: 520px;
    }

}


@media (max-width: 767px) {

    .home-about,
    .home-enquiry,
    .home-faq-section {
        padding: 30px 0;
    }


    /* ABOUT */

    .home-about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .home-about-visual {
        min-height: auto;

        padding-bottom: 65px;
    }


    .home-about-image-wrap {
        width: calc(100% - 25px);
        height: 470px;
    }


    .home-about-quote {
        right: 0;
        bottom: 0;

        width: 250px;
    }


    .home-about-index {
        display: none;
    }


    .home-about-content h2 {
        font-size: 45px;
    }


    .home-about-lead {
        font-size: 20px;
    }


    .home-about-principles {
        grid-template-columns: 1fr;
    }


    .home-about-principles > div {
        padding: 20px 0;
    }


    .home-about-principles > div + div {
        padding-left: 0;

        border-left: 0;
        border-top: 1px solid rgba(32,23,19,.12);
    }


    /* FORM */

    .home-enquiry-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .home-enquiry-content h2 {
        font-size: 44px;
    }


    .home-enquiry-form-wrap {
        padding: 30px 23px;
    }


    .home-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .home-enquiry-form-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    /* FAQ */

    .home-faq-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .home-faq-sticky {
        position: static;
    }


    .home-faq-intro h2 {
        font-size: 44px;
    }


    .home-faq summary {
        min-height: 90px;

        grid-template-columns: 32px 1fr 34px;

        gap: 10px;
    }


    .home-faq summary strong {
        font-size: 19px;
    }


    .home-faq-answer {
        padding:
            0
            42px
            28px
            42px;
    }

}


@media (max-width: 480px) {

    .home-about-image-wrap {
        height: 390px;
    }


    .home-about-quote {
        width: 225px;

        padding: 23px;
    }


    .home-about-quote p {
        font-size: 18px;
    }


    .home-about-content h2,
    .home-enquiry-content h2,
    .home-faq-intro h2 {
        font-size: 39px;
    }


    .home-faq summary strong {
        font-size: 18px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-intro,
.contact-main,
.contact-pathways,
.contact-next,
.contact-faq-section {
    --contact-dark: #171311;
    --contact-black: #0c0a09;
    --contact-copper: #ae7356;
    --contact-cream: #f4efe9;
    --contact-text: #6b605a;
    --contact-line: rgba(35, 26, 21, .14);
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    position: relative;

    padding: 60px 0;

    background: #f4efe9;
}


.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: end;

    gap: 100px;
}


.contact-intro h2 {
    max-width: 720px;

    margin: 16px 0 0;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(28px, 5.3vw, 55px);
    font-weight: bold;

    line-height: .98;
}


.contact-intro h2 em {
    /* display: block; */

    margin-top: 5px;

    color: var(--contact-copper);

    /* font-weight: 400; */
}


.contact-intro-copy {
    padding-left: 30px;

    border-left: 1px solid var(--contact-line);
}


.contact-intro-copy p {
    margin: 0 0 16px;

    color: var(--contact-text);

    font-size: 15px;

    line-height: 1.85;
}


.contact-intro-signature {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 26px;

    color: var(--contact-copper);

    font-size: 12px;

    letter-spacing: 1.4px;
}


.contact-intro-signature span {
    width: 42px;
    height: 1px;

    background: var(--contact-copper);
}


/* =========================================================
   MAIN CONTACT
========================================================= */

.contact-main {
    position: relative;

    padding: 60px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 13% 30%,
            rgba(180, 113, 80, .12),
            transparent 27%
        ),
        #0c0a09;
}


.contact-main-x {
    position: absolute;

    left: -90px;
    bottom: -220px;

    color: rgba(181, 115, 83, .055);

    font-family: var(--serif);
    font-size: 520px;

    line-height: 1;

    pointer-events: none;
}


.contact-main-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .82fr 1.18fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT CONTACT INFO
========================================================= */

.contact-section-label {
    margin-bottom: 22px;

    color: var(--contact-copper);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


.contact-main-info h2 {
    max-width: 530px;

    margin: 0 0 25px;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 67px);
    font-weight: 500;

    line-height: .95;
}


.contact-main-info h2 em {
    display: block;

    color: #bc7d5e;

    font-weight: 400;
}


.contact-main-lead {
    max-width: 530px;

    margin: 0;

    color: #a79b95;

    font-size: 15px;

    line-height: 1.85;
}


/* Contact rows */

.contact-detail-list {
    margin-top: 45px;

    border-top: 1px solid rgba(255,255,255,.11);
}


.contact-detail-item {
    display: grid;
    grid-template-columns: 38px 1fr 30px;

    align-items: center;

    gap: 15px;

    min-height: 92px;

    border-bottom: 1px solid rgba(255,255,255,.11);

    text-decoration: none;
}


.contact-detail-number {
    color: #b97859;

    font-size: 12px;
}


.contact-detail-item small {
    display: block;

    margin-bottom: 5px;

    color: #807672;

    font-size: 12px;

    text-transform: uppercase;
}


.contact-detail-item strong {
    color: #e8dfda;

    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
}


.contact-detail-item i {
    color: #b97859;

    font-size: 18px;
    font-style: normal;

    transition: transform .25s ease;
}


.contact-detail-item:hover i {
    transform: translate(4px, -4px);
}


/* Social */

.contact-social-area {
    margin-top: 38px;
}


.contact-social-area > small {
    display: block;

    margin-bottom: 14px;

    color: #766d69;

    font-size: 12px;

    letter-spacing: 1.5px;
}


.contact-social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}


.contact-social-links a {
    color: #d7cdc8;

    font-size: 14px;

    text-decoration: none;
}


.contact-social-links a:hover {
    color: #bd7d5e;
}


/* =========================================================
   FORM PANEL
========================================================= */

.contact-form-panel {
    position: relative;

    padding: 48px;

    border: 1px solid rgba(255,255,255,.11);

    background: rgba(255,255,255,.035);

    backdrop-filter: blur(10px);
}


.contact-form-panel::before {
    content: "";

    position: absolute;

    left: -1px;
    top: -1px;

    width: 105px;
    height: 3px;

    background: #b97859;
}


.contact-form-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
    padding-bottom: 28px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.contact-form-top span {
    color: #b97859;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


.contact-form-top h3 {
    max-width: 480px;

    margin: 10px 0 0;

    color: #fff;

    font-family: var(--serif);
    font-size: 35px;
    font-weight: 500;

    line-height: 1.1;
}


.contact-form-px {
    color: rgba(185,120,89,.5);

    font-family: var(--serif);
    font-size: 35px;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.contact-field {
    margin-bottom: 24px;
}


.contact-field label {
    display: block;

    margin-bottom: 10px;

    color: #d9cfca;

    font-size: 13px;
    font-weight: 500;
}


.contact-field label > span {
    color: #bc7c5d;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding: 14px 0;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.17);
    border-radius: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: var(--sans);
    font-size: 14px;

    transition: border-color .25s ease;
}


.contact-field textarea {
    min-height: 120px;

    resize: vertical;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #766c67;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #b97859;
}


.contact-field select option {
    background: #171311;

    color: #fff;
}


/* =========================================================
   ENQUIRY CHOICE
========================================================= */

.contact-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}


.contact-choice {
    position: relative;

    margin: 0 !important;

    cursor: pointer;
}


.contact-choice input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


.contact-choice > span {
    min-height: 50px;

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

    padding: 10px;

    border: 1px solid rgba(255,255,255,.12);

    color: #aaa09a !important;

    font-size: 13px;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}


.contact-choice:hover > span {
    border-color: rgba(185,120,89,.6);

    color: #fff !important;
}


.contact-choice input:checked + span {
    border-color: #b97859;

    background: #b97859;

    color: #fff !important;
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 8px;
}


.contact-form-bottom > p {
    max-width: 340px;

    margin: 0;

    color: #776e69;

    font-size: 12px;

    line-height: 1.6;
}


.contact-submit-btn {
    min-width: 190px;
    min-height: 54px;

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

    gap: 25px;

    padding: 0 19px;

    border: 1px solid #b97859;

    background: #b97859;

    color: #fff;

    cursor: pointer;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;

    transition:
        background .25s ease,
        color .25s ease;
}


.contact-submit-btn i {
    font-size: 18px;
    font-style: normal;

    transition: transform .25s ease;
}


.contact-submit-btn:hover {
    background: transparent;

    color: #c88463;
}


.contact-submit-btn:hover i {
    transform: translate(4px, -4px);
}


/* =========================================================
   SUCCESS
========================================================= */

.contact-success {
    display: flex;

    gap: 15px;

    margin-bottom: 30px;
    padding: 17px;

    border: 1px solid rgba(185,120,89,.35);

    background: rgba(185,120,89,.09);
}


.contact-success-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

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

    border-radius: 50%;

    background: #b97859;

    color: #fff;
}


.contact-success strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 14px;
}


.contact-success p {
    margin: 0;

    color: #a99e98;

    font-size: 13px;
}


/* =========================================================
   PATHWAYS
========================================================= */

.contact-pathways {
    padding: 60px 0px;

    background: #f4efe9;
}


.contact-pathways-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}


.contact-pathways-head h2 {
    max-width: 700px;

    margin: 15px 0 0;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 55px);
    font-weight: bold;

    line-height: .97;
}


.contact-pathways-head h2 em {
    /* display: block; */

    color: #a96f53;

    font-weight: 400;
}


.contact-pathways-head > p {
    margin: 0;

    color: #6e625c;

    font-size: 15px;

    line-height: 1.85;
}


/* Cards */

.contact-pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--contact-line);
    border-left: 1px solid var(--contact-line);
}


.contact-pathway-card {
    min-height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;

    border-right: 1px solid var(--contact-line);
    border-bottom: 1px solid var(--contact-line);

    background: rgba(255,255,255,.35);

    transition:
        transform .35s ease,
        background .35s ease;
}


.contact-pathway-card:hover {
    position: relative;
    z-index: 2;

    transform: translateY(-7px);

    background: #fff;
}


.contact-pathway-number {
    color: #a96f53;

    font-size: 12px;
}


.contact-pathway-card small {
    color: #a96f53;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


.contact-pathway-card h3 {
    max-width: 300px;

    margin: 13px 0 18px;

    color: #1c1715;

    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;

    line-height: 1.05;
}


.contact-pathway-card p {
    color: #6f645e;

    font-size: 14px;

    line-height: 1.75;
}


.contact-pathway-card a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #9e684e;

    font-size: 13px;
    font-weight: 600;
}


.contact-pathway-card a span {
    font-size: 17px;
}


/* Dark third card */

.contact-pathway-dark {
    background: #171311;
}


.contact-pathway-dark:hover {
    background: #211a17;
}


.contact-pathway-dark h3 {
    color: #fff;
}


.contact-pathway-dark p {
    color: #a99d97;
}


/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.contact-next {
    padding: 60px 0;

    background: #fff;
}


.contact-next-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}


.contact-next-heading h2 {
    margin: 15px 0 0;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 67px);
    font-weight: 500;

    line-height: .95;
}


.contact-next-heading h2 em {
    display: block;

    color: #a96f53;

    font-weight: 400;
}


.contact-next-steps {
    border-top: 1px solid var(--contact-line);
}


.contact-next-item {
    display: grid;
    grid-template-columns: 65px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--contact-line);
}


.contact-next-item > span {
    padding-top: 4px;

    color: #a96f53;

    font-size: 12px;
}


.contact-next-item h3 {
    margin: 0 0 7px;

    color: #211b18;

    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
}


.contact-next-item p {
    margin: 0;

    color: #70655f;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT FAQ
========================================================= */

.contact-faq-section {
    padding: 60px 0;

    background: #f4efe9;
}


.contact-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;

    gap: 100px;
}


.contact-faq-intro h2 {
    max-width: 440px;

    margin: 15px 0 20px;

    color: #181412;

    font-family: var(--serif);
    font-size: clamp(46px, 5vw, 64px);
    font-weight: 500;

    line-height: .96;
}


.contact-faq-intro h2 em {
    display: block;

    color: #a96f53;

    font-weight: 400;
}


.contact-faq-intro p {
    max-width: 400px;

    color: #6e625c;

    font-size: 15px;

    line-height: 1.8;
}


/* FAQ */

.contact-faq {
    border-top: 1px solid var(--contact-line);
}


.contact-faq details {
    border-bottom: 1px solid var(--contact-line);
}


.contact-faq summary {
    min-height: 94px;

    display: grid;
    grid-template-columns: 45px 1fr 36px;

    align-items: center;

    gap: 15px;

    cursor: pointer;

    list-style: none;
}


.contact-faq summary::-webkit-details-marker {
    display: none;
}


.contact-faq summary > span {
    color: #a96f53;

    font-size: 12px;
}


.contact-faq summary strong {
    color: #211b18;

    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}


.contact-faq summary i {
    position: relative;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(35,26,21,.18);
    border-radius: 50%;
}


.contact-faq summary i::before,
.contact-faq summary i::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 11px;
    height: 1px;

    background: #a96f53;

    transform: translate(-50%, -50%);
}


.contact-faq summary i::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    transition: transform .25s ease;
}


.contact-faq details[open]
summary i {
    background: #a96f53;

    border-color: #a96f53;
}


.contact-faq details[open]
summary i::before,
.contact-faq details[open]
summary i::after {
    background: #fff;
}


.contact-faq details[open]
summary i::after {
    transform:
        translate(-50%, -50%)
        rotate(0);
}


.contact-faq-answer {
    padding:
        0
        50px
        30px
        60px;
}


.contact-faq-answer p {
    max-width: 620px;

    margin: 0;

    color: #6d625c;

    font-size: 14px;

    line-height: 1.8;
}


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

@media (max-width: 1050px) {

    .contact-intro-grid,
    .contact-main-grid,
    .contact-pathways-head,
    .contact-next-grid,
    .contact-faq-layout {
        gap: 55px;
    }


    .contact-main-grid {
        grid-template-columns: .9fr 1.1fr;
    }


    .contact-form-panel {
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .contact-intro,
    .contact-main,
    .contact-pathways,
    .contact-next,
    .contact-faq-section {
        padding: 30px 0;
    }


    .contact-intro-grid,
    .contact-main-grid,
    .contact-pathways-head,
    .contact-next-grid,
    .contact-faq-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-intro h2,
    .contact-main-info h2,
    .contact-pathways-head h2,
    .contact-next-heading h2,
    .contact-faq-intro h2 {
        font-size: 43px;
    }


    .contact-intro-copy {
        padding-left: 20px;
    }


    /* Form */

    .contact-form-panel {
        padding: 30px 22px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form-top h3 {
        font-size: 30px;
    }


    .contact-choice-grid {
        grid-template-columns: 1fr;
    }


    .contact-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }


    .contact-submit-btn {
        width: 100%;
    }


    /* Pathways */

    .contact-pathways-grid {
        grid-template-columns: 1fr;
    }


    .contact-pathway-card {
        min-height: 340px;
    }


    /* FAQ */

    .contact-faq summary {
        grid-template-columns: 30px 1fr 34px;

        gap: 10px;
    }


    .contact-faq summary strong {
        font-size: 18px;
    }


    .contact-faq-answer {
        padding:
            0
            42px
            28px
            40px;
    }

}