/* ==============================================================
CUSTOM.CSS
The Witch Of The Crossroads
Psychic Readings • Spiritual Work • Conscious Evolution
Reusable Simple Site Custom Layer
============================================================== */


/*--------------------------------------------------------------
# Shared / Utility
--------------------------------------------------------------*/

.site-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-eyebrow::after,
.section-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.65;
}

.site-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.site-text-link::after {
    content: "→";
    font-size: 15px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.site-text-link:hover {
    color: var(--accent-color);
}

.site-text-link:hover::after {
    transform: translateX(4px);
}

.site-image-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-image-panel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--light-background-color);
    border: 1px solid var(--border-color);
}

.site-image-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.site-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 110px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--dark-color);
    overflow: hidden;
}

.site-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(111, 69, 168, 0.22) 0%,
            rgba(111, 69, 168, 0.05) 28%,
            transparent 50%
        ),
        linear-gradient(
            90deg,
            rgba(7, 4, 11, 0.96) 0%,
            rgba(10, 6, 15, 0.88) 30%,
            rgba(18, 9, 28, 0.67) 50%,
            rgba(16, 8, 25, 0.32) 72%,
            rgba(9, 7, 13, 0.12) 100%
        );

    z-index: 1;
}

.site-hero .container {
    position: relative;
    z-index: 2;
}

.site-hero-content {
    max-width: 650px;
}

.site-hero-content h1 {
    max-width: 640px;
    margin: 0 0 24px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.site-hero-content h1 em {
    color: var(--gold-color);
    font-style: italic;
    font-weight: 400;
}

.site-hero-content p {
    max-width: 520px;
    margin: 0;
    color: rgba(240, 233, 245, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.site-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.site-hero-actions .site-btn {
    min-width: 145px;
}

.site-hero .site-btn {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--dark-color);
}

.site-hero .site-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.site-hero .site-btn-outline {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border-color: transparent;
    color: #ffffff;
}

.site-hero .site-btn-outline::after {
    content: "→";
    margin-left: 4px;
    font-size: 15px;
    font-weight: 400;
}

.site-hero .site-btn-outline:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--gold-color);
}

.site-btn-dark {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--dark-color);
}

.site-btn-dark:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}


/*--------------------------------------------------------------
# Psychic Homepage Hero
--------------------------------------------------------------*/

.psychic-home-hero {
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(181, 140, 255, 0.17),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #08050d 0%,
            #13091d 47%,
            #261039 100%
        );
}

.psychic-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;

    background-image:
        radial-gradient(circle at 15% 24%, rgba(255,255,255,0.42) 0 1px, transparent 1.5px),
        radial-gradient(circle at 67% 19%, rgba(208,170,99,0.40) 0 1px, transparent 1.5px),
        radial-gradient(circle at 82% 66%, rgba(255,255,255,0.30) 0 1px, transparent 1.5px),
        radial-gradient(circle at 42% 72%, rgba(181,140,255,0.38) 0 1px, transparent 1.5px);

    background-size:
        180px 180px,
        230px 230px,
        270px 270px,
        210px 210px;
}


/*--------------------------------------------------------------
# Benefits / Why Choose
--------------------------------------------------------------*/

.site-benefits,
.site-why {
    padding: 0;
    background-color: var(--dark-secondary-color);
    border-top: 1px solid rgba(208, 170, 99, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.site-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.site-benefit-item,
.site-why-card {
    position: relative;
    height: 100%;
    padding: 38px 22px;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--border-color);
    border-radius: 0;
    text-align: center;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.site-benefit-item:hover,
.site-why-card:hover {
    background-color: rgba(181, 140, 255, 0.035);
}

.site-benefit-item:last-child,
.site-why-card:last-child {
    border-right: 0;
}

.site-benefit-icon,
.site-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--gold-color);
    background: rgba(208, 170, 99, 0.04);
    border: 1px solid rgba(208, 170, 99, 0.22);
    border-radius: 50%;
}

.site-benefit-icon i,
.site-why-icon i {
    font-size: 20px;
    font-weight: 400;
}

.site-benefit-item h3,
.site-why-card h3 {
    margin: 0 0 9px;
    color: var(--heading-color);
    font-family: var(--nav-font);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.site-benefit-item p,
.site-why-card p {
    max-width: 155px;
    margin: 0 auto;
    color: var(--muted-color);
    font-size: 11px;
    line-height: 1.65;
}

.site-why-number {
    display: none;
}

.site-why > .container {
    max-width: 1320px;
}


/*--------------------------------------------------------------
# Homepage Intro / About Split
--------------------------------------------------------------*/

.site-intro,
.site-about {
    padding: 0;
    background-color: var(--background-color);
}

.site-intro-row,
.site-about-row {
    min-height: 500px;
}

.site-intro-content,
.site-about-content {
    padding: 80px 70px 80px 0;
}

.site-intro h2,
.site-about h2 {
    max-width: 520px;
    margin: 0 0 22px;
    color: var(--heading-color);
    font-size: 44px;
    line-height: 1.05;
    font-weight: 500;
}

.site-intro-lead,
.site-about-lead {
    max-width: 540px;
    margin-bottom: 18px;
    color: #e8dfec;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.site-intro p,
.site-about p {
    max-width: 560px;
    margin-bottom: 16px;
    color: var(--default-color);
}

.site-intro-image,
.site-about-image {
    min-height: 500px;
}

.site-intro-image img,
.site-about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}


/*--------------------------------------------------------------
# Psychic Intro Symbol Panel
--------------------------------------------------------------*/

.psychic-intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 55px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(111, 69, 168, 0.30) 0%,
            rgba(43, 23, 60, 0.24) 36%,
            rgba(9, 7, 13, 0) 66%
        ),
        linear-gradient(
            145deg,
            #130c1b 0%,
            #1c1029 50%,
            #0c0811 100%
        );

    border: 1px solid var(--border-color);
}

.psychic-intro-visual::before,
.psychic-intro-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.psychic-intro-visual::before {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(208, 170, 99, 0.17);
}

.psychic-intro-visual::after {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(181, 140, 255, 0.16);
}

.psychic-symbol-panel {
    position: relative;
    z-index: 2;
    max-width: 360px;
    text-align: center;
}

.psychic-symbol-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    color: var(--gold-color);
    border: 1px solid rgba(208, 170, 99, 0.38);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(181, 140, 255, 0.10);
}

.psychic-symbol-icon i {
    font-size: 34px;
}

.psychic-symbol-panel span {
    display: block;
    margin-bottom: 13px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.psychic-symbol-panel h3 {
    margin: 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.25;
}


/*--------------------------------------------------------------
# Feature Panel
--------------------------------------------------------------*/

.site-feature-panel {
    height: 100%;
    padding: 36px 0;
    background-color: transparent;
    border: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

.site-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    background: transparent;
    border: 1px solid rgba(208, 170, 99, 0.26);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-feature-icon i {
    font-size: 21px;
}

.site-feature-panel h3 {
    margin-bottom: 13px;
    font-size: 27px;
    line-height: 1.15;
}

.site-feature-panel p {
    margin-bottom: 20px;
}

.site-feature-points {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.site-feature-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--default-color);
}

.site-feature-point i {
    margin-top: 3px;
    color: var(--gold-color);
    font-size: 15px;
}


/*--------------------------------------------------------------
# Featured Portfolio / Reusable Showcase
--------------------------------------------------------------*/

.site-portfolio {
    background-color: var(--background-color);
}

.site-portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.site-portfolio-header h2 {
    margin: 0;
    font-size: 39px;
    line-height: 1.1;
}

.site-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.site-portfolio-link::after {
    content: "→";
    font-size: 17px;
    font-weight: 400;
}

.site-portfolio-link:hover {
    color: var(--accent-color);
}

.site-project-card {
    display: block;
    color: inherit;
}

.site-project-image {
    position: relative;
    aspect-ratio: 1 / 1.03;
    margin-bottom: 14px;
    overflow: hidden;
    background-color: var(--light-background-color);
    border: 1px solid var(--border-color);
}

.site-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.site-project-card:hover .site-project-image img {
    transform: scale(1.025);
}

.site-project-card h3 {
    margin: 0 0 3px;
    color: var(--heading-color);
    font-family: var(--default-font);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.site-project-card span {
    color: var(--muted-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.site-gallery {
    background-color: var(--background-color);
}

.site-gallery-item {
    margin-bottom: 34px;
}

.site-gallery-image {
    position: relative;
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
    overflow: hidden;
    background-color: var(--light-background-color);
    border: 1px solid var(--border-color);
}

.site-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.site-gallery-item:hover .site-gallery-image img {
    transform: scale(1.025);
}

.site-gallery-item h3 {
    margin: 0 0 4px;
    font-size: 21px;
}

.site-gallery-item p {
    margin: 0;
    color: var(--muted-color);
    font-size: 13px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.site-services {
    background-color: var(--light-background-color);
}

.site-service-card {
    position: relative;
    height: 100%;
    padding: 32px 26px;
    overflow: hidden;

    background-color: rgba(23, 16, 32, 0.72);

    border: 1px solid var(--border-color);
    border-radius: 0;

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

.site-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-color);
    transition: width 0.35s ease;
}

.site-service-card:hover {
    background-color: var(--surface-color);
    border-color: rgba(208, 170, 99, 0.40);
    transform: translateY(-2px);
    box-shadow: none;
}

.site-service-card:hover::before {
    width: 100%;
}

.site-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    background-color: rgba(208, 170, 99, 0.04);
    border: 1px solid rgba(208, 170, 99, 0.27);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-service-icon i {
    font-size: 20px;
}

.site-service-card h3 {
    margin-bottom: 12px;
    color: var(--heading-color);
    font-size: 25px;
    line-height: 1.15;
}

.site-service-card p {
    margin-bottom: 18px;
    color: var(--default-color);
    font-size: 14px;
}

.site-service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-service-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
    color: var(--default-color);
    font-size: 13px;
}

.site-service-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 50%;
}


/*--------------------------------------------------------------
# Psychic Spiritual Work Preview
--------------------------------------------------------------*/

.psychic-spiritual-preview {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(111, 69, 168, 0.10),
            transparent 40%
        ),
        var(--background-color);
}


/*--------------------------------------------------------------
# Services Intro
--------------------------------------------------------------*/

.site-services-intro {
    background-color: var(--background-color);
}

.site-services-intro h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.08;
}

.site-services-lead {
    margin-bottom: 16px;
    color: #e8dfec;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}


/*--------------------------------------------------------------
# Service Groups
--------------------------------------------------------------*/

.site-service-group {
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
}

.site-service-group-heading {
    position: sticky;
    top: 95px;
}

.site-service-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid rgba(208, 170, 99, 0.28);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-service-group-icon i {
    font-size: 21px;
}

.site-service-group-heading h2 {
    margin-bottom: 15px;
    font-size: 34px;
    line-height: 1.12;
}

.site-service-group-heading p {
    margin-bottom: 0;
    color: var(--default-color);
    font-size: 14px;
}


/*--------------------------------------------------------------
# Process / Approach
--------------------------------------------------------------*/

.site-process {
    background-color: var(--dark-secondary-color);
    text-align: center;
}

.site-process-heading {
    max-width: 670px;
    margin: 0 auto 48px;
}

.site-process-heading h2 {
    margin: 0;
    color: var(--heading-color);
    font-size: 40px;
    line-height: 1.05;
}

.site-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.site-process-grid::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(208, 170, 99, 0.22);
}

.site-process-item {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.site-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background-color: var(--dark-secondary-color);
    border: 1px solid rgba(208, 170, 99, 0.32);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-process-icon i {
    font-size: 21px;
}

.site-process-number {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-process-item h3 {
    margin-bottom: 5px;
    color: var(--heading-color);
    font-family: var(--nav-font);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.site-process-item p {
    max-width: 155px;
    margin: 0 auto;
    color: var(--muted-color);
    font-size: 11px;
    line-height: 1.55;
}


/*--------------------------------------------------------------
# Catalogue / Spell Kit Reusable Grid
--------------------------------------------------------------*/

.site-catalogue {
    background-color: var(--light-background-color);
}

.site-catalogue-card {
    height: 100%;
}

.site-catalogue-image {
    aspect-ratio: 4 / 4.5;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}

.site-catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.site-catalogue-card:hover .site-catalogue-image img {
    transform: scale(1.025);
}

.site-catalogue-card h3 {
    margin-bottom: 3px;
    font-size: 21px;
}

.site-catalogue-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.site-catalogue-card p {
    margin-bottom: 8px;
    font-size: 13px;
}


/*--------------------------------------------------------------
# Psychic Spell Kits Preview
--------------------------------------------------------------*/

.psychic-kits-preview {
    background:
        linear-gradient(
            125deg,
            rgba(111, 69, 168, 0.06),
            transparent 40%
        ),
        var(--light-background-color);
}

.psychic-kits-preview h2 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-size: 42px;
    line-height: 1.08;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.site-testimonials {
    background-color: var(--dark-secondary-color);
}

.site-testimonial-card {
    position: relative;
    height: 100%;
    padding: 38px 32px;
    background-color: rgba(23, 16, 32, 0.58);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.site-testimonial-quote {
    margin-bottom: 16px;
    color: var(--gold-color);
}

.site-testimonial-quote i {
    font-size: 29px;
}

.site-testimonial-card p {
    margin-bottom: 24px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.55;
    font-style: italic;
}

.site-testimonial-author {
    display: flex;
    flex-direction: column;
}

.site-testimonial-author strong {
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.site-testimonial-author span {
    margin-top: 2px;
    color: var(--muted-color);
    font-size: 12px;
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.site-cta {
    position: relative;
    padding: 0;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(111, 69, 168, 0.22),
            transparent 35%
        ),
        var(--dark-color);
    overflow: hidden;
}

.site-cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    padding: 65px 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
}

.site-cta-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.site-cta-panel h2 {
    max-width: 470px;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 500;
}

.site-cta-panel h2 em {
    color: var(--gold-color);
    font-style: italic;
    font-weight: 400;
}

.site-cta-panel p {
    max-width: 450px;
    margin-bottom: 24px;
    color: rgba(238, 230, 243, 0.75);
}

.site-cta .site-btn {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--dark-color);
}

.site-cta .site-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}


/*--------------------------------------------------------------
# Psychic Homepage CTA
--------------------------------------------------------------*/

.psychic-home-cta {
    border-top: 1px solid rgba(208, 170, 99, 0.14);
}

.psychic-home-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(208, 170, 99, 0.08);
    border-radius: 50%;
    transform: translateY(-50%);
}


/*--------------------------------------------------------------
# Image CTA
--------------------------------------------------------------*/

.site-cta-image {
    position: relative;
    min-height: 330px;
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.site-cta-image::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 4, 11, 0.94) 0%,
        rgba(12, 6, 18, 0.79) 38%,
        rgba(21, 10, 31, 0.46) 70%,
        rgba(9, 7, 13, 0.20) 100%
    );
}

.site-cta-image .container {
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Comparison / Legacy Content
--------------------------------------------------------------*/

.site-comparison-card,
.site-solution-card,
.site-audience-card,
.site-value-card {
    height: 100%;
    padding: 30px;
    background-color: rgba(23, 16, 32, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.site-comparison-card:hover,
.site-solution-card:hover,
.site-audience-card:hover,
.site-value-card:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--surface-color);
    border-color: rgba(208, 170, 99, 0.42);
}

.site-comparison-card-accent {
    border-top: 2px solid var(--gold-color);
}

.site-comparison-icon,
.site-solution-icon,
.site-audience-icon,
.site-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    background: transparent;
    border: 1px solid rgba(208, 170, 99, 0.28);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-audience-icon {
    margin-left: auto;
    margin-right: auto;
}

.site-comparison-icon i,
.site-solution-icon i,
.site-audience-icon i,
.site-value-icon i {
    font-size: 20px;
}

.site-comparison-label {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-comparison-card h3,
.site-solution-card h3,
.site-audience-card h3,
.site-value-card h3 {
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 1.15;
}

.site-comparison-card p,
.site-solution-card p,
.site-audience-card p,
.site-value-card p {
    margin-bottom: 16px;
    font-size: 14px;
}

.site-comparison-card ul,
.site-solution-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-comparison-card li,
.site-solution-card li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
}

.site-comparison-card li::before,
.site-solution-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--gold-color);
    border-radius: 50%;
}

.site-comparison-card li i {
    display: none;
}

.site-comparison-message {
    max-width: 850px;
    margin: 40px auto 0;
    padding: 22px 26px;
    background-color: var(--surface-color);
    border-left: 2px solid var(--gold-color);
    border-radius: 0;
    text-align: left;
}

.site-comparison-message p {
    margin: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 19px;
    line-height: 1.55;
}


/*--------------------------------------------------------------
# Page Hero
--------------------------------------------------------------*/

.site-page-hero {
    position: relative;
    margin-bottom: 40px;
    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(111, 69, 168, 0.28),
            transparent 38%
        ),
        linear-gradient(
            110deg,
            #09060d 0%,
            #170c22 55%,
            #2a123c 100%
        );

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

    border-bottom: 1px solid rgba(208, 170, 99, 0.14);
    overflow: hidden;
}

.site-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.33;

    background-image:
        radial-gradient(circle at 18% 30%, rgba(255,255,255,0.50) 0 1px, transparent 1.5px),
        radial-gradient(circle at 62% 24%, rgba(208,170,99,0.44) 0 1px, transparent 1.5px),
        radial-gradient(circle at 88% 64%, rgba(181,140,255,0.46) 0 1px, transparent 1.5px);

    background-size:
        190px 190px,
        235px 235px,
        280px 280px;
}

.site-page-hero .container {
    position: relative;
    z-index: 2;
}

.site-page-hero h1 {
    max-width: 760px;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.06;
    font-weight: 500;
}

.site-page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(238, 230, 243, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.site-page-hero .section-eyebrow {
    color: var(--gold-color);
}


/*--------------------------------------------------------------
# Philosophy
--------------------------------------------------------------*/

.site-philosophy {
    background-color: var(--dark-secondary-color);
}

.site-philosophy h2 {
    margin-bottom: 20px;
    color: var(--heading-color);
    font-size: 40px;
    line-height: 1.08;
}

.site-philosophy p {
    margin-bottom: 16px;
    color: var(--default-color);
}


/*--------------------------------------------------------------
# Statement Panel
--------------------------------------------------------------*/

.site-statement-panel {
    position: relative;
    padding: 44px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(111, 69, 168, 0.16),
            transparent 40%
        ),
        var(--dark-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
}

.site-statement-panel::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(208, 170, 99, 0.12);
    border-radius: 50%;
    background: transparent;
}

.site-statement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    background-color: transparent;
    border: 1px solid rgba(208, 170, 99, 0.30);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-statement-icon i {
    font-size: 21px;
}

.site-statement-panel > span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.site-statement-panel blockquote {
    position: relative;
    margin: 0 0 20px;
    padding: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.35;
    font-style: normal;
    font-weight: 400;
}

.site-statement-panel p {
    position: relative;
    margin: 0;
    color: rgba(232, 223, 237, 0.70);
}

.site-statement-panel .site-text-link {
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Awakened Soul
--------------------------------------------------------------*/

.psychic-awakened-soul {
    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(208, 170, 99, 0.06),
            transparent 29%
        ),
        var(--background-color);
}

.psychic-awakened-soul h2 {
    margin-bottom: 18px;
    font-size: 43px;
    line-height: 1.08;
}

.psychic-course-symbol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    max-width: 390px;
    margin: 0 auto;
    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(111, 69, 168, 0.22) 0%,
            rgba(43, 23, 60, 0.12) 38%,
            rgba(9, 7, 13, 0) 68%
        );
}

.psychic-course-symbol::before,
.psychic-course-symbol::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.psychic-course-symbol::before {
    width: 82%;
    height: 82%;
    border: 1px solid rgba(208, 170, 99, 0.18);
}

.psychic-course-symbol::after {
    width: 62%;
    height: 62%;
    border: 1px solid rgba(181, 140, 255, 0.17);
}

.psychic-course-symbol i {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: var(--gold-color);
    font-size: 68px;
}

.psychic-course-symbol span {
    position: relative;
    z-index: 2;
    color: var(--gold-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Partners / Dark Information Section
--------------------------------------------------------------*/

.site-partners {
    background-color: var(--dark-color);
}

.site-partners .section-title h2 {
    color: #ffffff;
}

.site-partners .section-title p {
    color: rgba(232, 223, 237, 0.72);
}

.site-partner-card {
    height: 100%;
    padding: 30px;
    background-color: rgba(23, 16, 32, 0.48);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.site-partner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    background-color: transparent;
    border: 1px solid rgba(208, 170, 99, 0.28);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-partner-icon i {
    font-size: 20px;
}

.site-partner-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-partner-card h3 {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 25px;
}

.site-partner-card p {
    margin-bottom: 0;
    color: rgba(232, 223, 237, 0.68);
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.site-contact {
    background-color: var(--background-color);
}

.site-contact-intro h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.08;
}

.site-contact-lead {
    margin-bottom: 16px;
    color: #e8dfec;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.site-contact-intro p {
    margin-bottom: 16px;
}


/*--------------------------------------------------------------
# Contact Details
--------------------------------------------------------------*/

.site-contact-details {
    margin-top: 34px;
}

.site-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.site-contact-item:first-child {
    padding-top: 0;
}

.site-contact-item:last-child {
    border-bottom: 0;
}

.site-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background-color: transparent;
    border: 1px solid rgba(208, 170, 99, 0.27);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-contact-icon i {
    font-size: 17px;
}

.site-contact-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-color);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.site-contact-item a,
.site-contact-item p {
    margin: 0;
    color: var(--heading-color);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.site-contact-item a:hover {
    color: var(--gold-color);
}


/*--------------------------------------------------------------
# WhatsApp Contact Panel
--------------------------------------------------------------*/

.site-contact-whatsapp {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 22px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.site-contact-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background-color: #25d366;
    border-radius: 50%;
    color: #ffffff;
}

.site-contact-whatsapp-icon i {
    font-size: 21px;
}

.site-contact-whatsapp span {
    display: block;
    margin-bottom: 3px;
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
}

.site-contact-whatsapp p {
    margin-bottom: 3px;
    color: var(--default-color);
    font-size: 13px;
}


/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/

.site-contact-form {
    padding: 38px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
}

.site-contact-form-heading {
    margin-bottom: 26px;
}

.site-contact-form-heading h2 {
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 32px;
    line-height: 1.15;
}

.site-contact-form-heading p {
    margin-bottom: 0;
    color: var(--default-color);
}

.site-contact-form .form-control {
    min-height: 54px;
    color: var(--heading-color);
    background-color: #100b16;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.site-contact-form textarea.form-control {
    min-height: 150px;
}

.site-contact-form .form-control:focus {
    color: #ffffff;
    background-color: #100b16;
    border-color: var(--gold-color);
    box-shadow: none;
}

.site-contact-form .form-control::placeholder {
    color: transparent;
}

.site-contact-form .form-floating > label {
    color: var(--muted-color);
    font-size: 13px;
}

.site-contact-form .form-floating > .form-control:focus ~ label,
.site-contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.site-contact-form .form-floating > textarea.form-control:focus ~ label,
.site-contact-form .form-floating > textarea.form-control:not(:placeholder-shown) ~ label {
    color: var(--gold-color);
}


/*--------------------------------------------------------------
# Alerts
--------------------------------------------------------------*/

.alert-messages {
    margin-bottom: 22px;
}

.alert-messages .alert {
    border-radius: 0;
    font-size: 13px;
}


/*--------------------------------------------------------------
# reCAPTCHA
--------------------------------------------------------------*/

.site-contact-form .g-recaptcha {
    max-width: 100%;
    overflow: hidden;
}


/*--------------------------------------------------------------
# Contact Closing Section
--------------------------------------------------------------*/

.site-contact-closing {
    background-color: var(--dark-secondary-color);
}

.site-contact-closing h2 {
    margin-bottom: 14px;
    font-size: 38px;
    line-height: 1.1;
}

.site-contact-closing p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--default-color);
}


/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/

.site-thank-you {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
}

.site-thank-you-card {
    padding: 52px 44px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

.site-thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    background-color: transparent;
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    color: var(--gold-color);
}

.site-thank-you-icon i {
    font-size: 28px;
}

.site-thank-you-card h1 {
    margin-bottom: 18px;
    color: var(--heading-color);
    font-size: 42px;
    line-height: 1.1;
}

.site-thank-you-lead {
    color: #e8dfec;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.site-thank-you-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.site-thank-you-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}

.site-thank-you-contact span:first-child {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-color);
}

.site-thank-you-contact a {
    color: var(--gold-color);
    font-weight: 600;
}

.site-thank-you-contact a:hover {
    color: var(--accent-color);
}

.site-thank-you-divider {
    margin: 0 8px;
    color: var(--border-color);
}


/*--------------------------------------------------------------
# Design Plan / Generic Media Panels
--------------------------------------------------------------*/

.site-plan-panel {
    width: 100%;
    padding: 18px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}

.site-plan-panel-large {
    padding: 22px;
}

.site-plan-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    object-position: center;
}

.site-plan-feature {
    background-color: var(--background-color);
}

.site-plan-feature h2 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.08;
}


/*--------------------------------------------------------------
# Generic Portfolio Intro
--------------------------------------------------------------*/

.site-portfolio-intro {
    background-color: var(--background-color);
}

.site-portfolio-intro h2 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.1;
}

.site-portfolio-lead {
    margin-bottom: 15px;
    color: #e8dfec;
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.55;
}


/*--------------------------------------------------------------
# Project Showcase
--------------------------------------------------------------*/

.site-project-showcase {
    background-color: var(--background-color);
}

.site-project-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.site-project-heading h2,
.site-project-showcase h2 {
    margin-bottom: 14px;
    font-size: 39px;
    line-height: 1.1;
}

.site-project-heading p {
    max-width: 730px;
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Before / After Toggle
--------------------------------------------------------------*/

.site-project-toggle {
    display: inline-flex;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.site-project-toggle-btn {
    min-width: 110px;
    padding: 11px 24px;
    color: var(--heading-color);
    background-color: transparent;
    border: 0;
    border-right: 1px solid var(--border-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.site-project-toggle-btn:last-child {
    border-right: 0;
}

.site-project-toggle-btn:hover {
    color: var(--gold-color);
}

.site-project-toggle-btn.active {
    color: var(--dark-color);
    background-color: var(--gold-color);
}


/*--------------------------------------------------------------
# Project Views
--------------------------------------------------------------*/

.site-project-view {
    display: none;
}

.site-project-view.active {
    display: block;
}


/*--------------------------------------------------------------
# Main Project Images
--------------------------------------------------------------*/

.site-project-main-image {
    width: 100%;
    height: 650px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.site-project-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-gallery-main-image {
    transition: opacity 0.2s ease;
}


/*--------------------------------------------------------------
# Gallery Thumbnails
--------------------------------------------------------------*/

.site-project-thumbnail {
    display: block;
    width: 100%;
    height: 135px;
    padding: 0;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    overflow: hidden;
    transition: 0.3s;
}

.site-project-thumbnail:hover {
    opacity: 1;
}

.site-project-thumbnail.active {
    opacity: 1;
    border-color: var(--gold-color);
}

.site-project-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*--------------------------------------------------------------
# Single Image Projects
--------------------------------------------------------------*/

.site-single-project-image {
    width: 100%;
    height: 560px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.site-single-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*--------------------------------------------------------------
# Catalogue Intro
--------------------------------------------------------------*/

.site-catalogue-intro {
    background-color: var(--background-color);
}

.site-catalogue-intro h2 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.1;
}

.site-catalogue-lead {
    margin-bottom: 14px;
    color: #e8dfec;
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.55;
}


/*--------------------------------------------------------------
# Catalogue Content
--------------------------------------------------------------*/

.site-catalogue-content {
    text-align: center;
}

.site-catalogue-content h3 {
    margin-bottom: 3px;
    font-size: 22px;
    line-height: 1.2;
}

.site-catalogue-content span {
    display: block;
    color: var(--muted-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Catalogue Enquiry
--------------------------------------------------------------*/

.site-catalogue-enquiry {
    background-color: var(--background-color);
}

.site-catalogue-enquiry h2 {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
}

.site-catalogue-enquiry p {
    max-width: 650px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# Legacy Product Card
# Retained so old markup does not break
--------------------------------------------------------------*/

.adornar-product-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.adornar-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(208, 170, 99, 0.40);
}

.adornar-product-flip {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--light-background-color);
    perspective: 1200px;
    cursor: pointer;
    outline: none;
}

.adornar-product-flip:focus-visible {
    outline: 2px solid var(--gold-color);
    outline-offset: -2px;
}

.adornar-product-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s ease;
}

.adornar-product-flip:hover .adornar-product-flip-inner,
.adornar-product-flip.is-flipped .adornar-product-flip-inner {
    transform: rotateY(180deg);
}

.adornar-product-front,
.adornar-product-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.adornar-product-front {
    transform: rotateY(0deg);
}

.adornar-product-back {
    transform: rotateY(180deg);
}

.adornar-product-front img,
.adornar-product-back img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.adornar-product-flip-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;

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

    width: 38px;
    height: 38px;

    padding: 0;
    margin: 0;

    background-color: rgba(9, 7, 13, 0.90);

    border: 1px solid rgba(208, 170, 99, 0.35);
    border-radius: 50%;

    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);

    pointer-events: none;
}

.adornar-product-flip-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.adornar-product-flip-icon::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 2px;
    width: 11px;
    height: 2px;
    background-color: var(--gold-color);
}

.adornar-product-flip-icon::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 2px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--gold-color);
    border-right: 2px solid var(--gold-color);
    transform: rotate(45deg);
}

.adornar-product-back-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(7, 4, 11, 0.88) 0%,
        rgba(14, 7, 21, 0.32) 55%,
        rgba(14, 7, 21, 0.04) 100%
    );

    pointer-events: none;
}

.adornar-product-back-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    color: #ffffff;
}

.adornar-product-back-label small {
    display: block;
    margin: 0 0 4px;
    padding: 0;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--nav-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.adornar-product-back-label strong {
    display: block;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
}

.adornar-product-details {
    padding: 17px 18px 19px;
    text-align: center;
    background-color: var(--surface-color);
}

.adornar-product-details h3 {
    margin: 0 0 3px;
    padding: 0;
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
}

.adornar-product-details p {
    margin: 0;
    padding: 0;
    color: var(--muted-color);
    font-family: var(--nav-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Page Hero Slider
--------------------------------------------------------------*/

.site-page-hero-slider {
    position: relative;
    min-height: 340px;
    margin-bottom: 40px;
    padding: 105px 0 95px;
    background-color: var(--dark-color);
    background-image: none;
    border-bottom: 1px solid rgba(208, 170, 99, 0.14);
    overflow: hidden;
}


/* Slides */

.site-page-hero-slider .site-page-hero-slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

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

    transform: translateX(100%);

    transition: transform 1.2s cubic-bezier(
        0.65,
        0,
        0.35,
        1
    );

    will-change: transform;
    pointer-events: none;
    z-index: 0;
}

.site-page-hero-slider .site-page-hero-slide.active {
    transform: translateX(0);
}

.site-page-hero-slider .site-page-hero-slide.slide-out {
    transform: translateX(-100%);
}


/* Slider Overlay */

.site-page-hero-slider-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(111, 69, 168, 0.20),
            transparent 38%
        ),
        linear-gradient(
            90deg,
            rgba(7, 4, 11, 0.90) 0%,
            rgba(13, 7, 20, 0.72) 45%,
            rgba(22, 10, 32, 0.52) 100%
        );

    pointer-events: none;
    z-index: 1;
}


/* Slider Content */

.site-page-hero-slider .container {
    position: relative;
    z-index: 2;
}

.site-page-hero-slider h1 {
    max-width: 760px;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.06;
    font-weight: 500;
}

.site-page-hero-slider p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(238, 230, 243, 0.84);
    font-size: 15px;
    line-height: 1.7;
}

.site-page-hero-slider .section-eyebrow {
    color: var(--gold-color);
}


/* Slider Dots */

.site-page-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transform: translateX(-50%);
}

.site-page-hero-dot {
    width: 7px;
    height: 7px;
    padding: 0;

    background-color: rgba(208, 170, 99, 0.35);

    border: 0;
    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.site-page-hero-dot:hover {
    background-color: rgba(208, 170, 99, 0.80);
}

.site-page-hero-dot.active {
    background-color: var(--gold-color);
    transform: scale(1.3);
}


/*--------------------------------------------------------------
# Portfolio Gallery Grid
--------------------------------------------------------------*/

.site-portfolio-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--light-background-color);
    border: 1px solid var(--border-color);
}

.site-portfolio-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.site-portfolio-gallery-item:hover img {
    transform: scale(1.025);
}

.site-portfolio-gallery-item-single {
    aspect-ratio: 16 / 10;
}


/*--------------------------------------------------------------
# Homepage Intro Duplicate Structural Rules
--------------------------------------------------------------*/

.site-intro-row {
    min-height: 500px;
}

.site-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 70px 60px 70px 0;
}

.site-intro-image {
    height: 100%;
    min-height: 500px;
}

.site-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.site-intro-content .site-btn {
    align-self: flex-start;
    width: auto;
}


/*--------------------------------------------------------------
# Newsletter Form Layout
--------------------------------------------------------------*/

.site-newsletter-form {
    max-width: 420px;
    margin-left: auto;
}

.site-newsletter-form .input-group {
    width: 100%;
}

.site-newsletter-form .form-control {
    min-height: 44px;
    font-size: 13px;
}

.site-newsletter-btn {
    min-width: 105px;
    min-height: 44px;
}


/*--------------------------------------------------------------
# Responsive - Large Tablet
--------------------------------------------------------------*/

@media (max-width: 1199px) {

    .site-hero {
        min-height: 560px;
        padding: 90px 0;
    }

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

    .site-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-benefit-item:nth-child(3),
    .site-why-card:nth-child(3) {
        border-right: 0;
    }

    .site-benefit-item:nth-child(-n+3),
    .site-why-card:nth-child(-n+3) {
        border-bottom: 1px solid var(--border-color);
    }

    .site-intro-content,
    .site-about-content {
        padding-right: 45px;
    }

    .site-process-item {
        padding: 0 12px;
    }
}


/*--------------------------------------------------------------
# Responsive - Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {

    .site-hero {
        min-height: 540px;
        padding: 85px 0;
        background-position: 60% center;
    }

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

    .site-intro-row,
    .site-about-row {
        min-height: auto;
    }

    .site-intro-content,
    .site-about-content {
        padding: 60px 0;
    }

    .site-intro h2,
    .site-about h2,
    .site-philosophy h2,
    .site-services-intro h2,
    .site-contact-intro h2 {
        font-size: 36px;
    }

    .psychic-kits-preview h2,
    .psychic-awakened-soul h2 {
        font-size: 36px;
    }

    .site-intro-image,
    .site-about-image,
    .psychic-intro-visual {
        min-height: 420px;
    }

    .site-intro-image img,
    .site-about-image img {
        min-height: 420px;
    }

    .site-portfolio-header h2 {
        font-size: 35px;
    }

    .site-process-grid {
        grid-template-columns: repeat(5, minmax(145px, 1fr));
        overflow-x: auto;
        padding-bottom: 15px;
        scrollbar-width: thin;
    }

    .site-process-grid::before {
        left: 72px;
        right: 72px;
    }

    .site-process-item {
        min-width: 145px;
    }

    .site-service-group-heading {
        position: static;
    }

    .site-page-hero {
        padding: 85px 0 75px;
    }

    .site-page-hero h1 {
        font-size: 42px;
    }

    .site-statement-panel {
        padding: 36px;
    }

    .site-contact-form {
        padding: 32px;
    }

    .site-cta-panel h2 {
        font-size: 38px;
    }

    .site-plan-panel,
    .site-plan-panel-large {
        padding: 14px;
    }

    .site-plan-image {
        max-height: none;
    }

    .site-plan-feature h2 {
        font-size: 34px;
    }

    .site-project-heading h2,
    .site-project-showcase h2 {
        font-size: 34px;
    }

    .site-project-main-image {
        height: 520px;
    }

    .site-single-project-image {
        height: 480px;
    }

    .site-project-thumbnail {
        height: 110px;
    }

    .site-catalogue-intro h2 {
        font-size: 34px;
    }

    .site-catalogue-image {
        height: 340px;
    }

    .site-newsletter-form {
        max-width: 100%;
        margin-left: 0;
    }

    .site-page-hero-slider {
        min-height: 320px;
        padding: 85px 0 75px;
    }

    .site-page-hero-slider h1 {
        font-size: 42px;
    }
}


/*--------------------------------------------------------------
# Responsive - Mobile
--------------------------------------------------------------*/

@media (max-width: 767px) {

    .site-hero {
        align-items: flex-end;
        min-height: 590px;
        padding: 80px 0 65px;
        background-position: center center;
    }

    .site-hero-overlay {
        background:
            radial-gradient(
                circle at 70% 20%,
                rgba(111, 69, 168, 0.22),
                transparent 40%
            ),
            linear-gradient(
                180deg,
                rgba(7, 4, 11, 0.38) 0%,
                rgba(10, 5, 15, 0.64) 35%,
                rgba(7, 4, 11, 0.96) 100%
            );
    }

    .site-hero-content {
        max-width: 100%;
    }

    .site-hero-content h1 {
        max-width: 420px;
        margin-bottom: 18px;
        font-size: 40px;
        line-height: 1.04;
        letter-spacing: -0.4px;
    }

    .site-hero-content p {
        max-width: 380px;
        font-size: 14px;
    }

    .site-hero-actions {
        gap: 16px;
        margin-top: 24px;
    }

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

    .site-benefit-item,
    .site-why-card {
        padding: 30px 18px;
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .site-benefit-item:nth-child(2n),
    .site-why-card:nth-child(2n) {
        border-right: 0;
    }

    .site-benefit-item:nth-last-child(-n+2),
    .site-why-card:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .site-benefit-item:nth-child(3),
    .site-why-card:nth-child(3) {
        border-right: 1px solid var(--border-color);
    }

    .site-intro-content,
    .site-about-content {
        padding: 50px 0;
    }

    .site-intro h2,
    .site-about h2,
    .site-philosophy h2,
    .site-services-intro h2,
    .site-contact-intro h2 {
        font-size: 32px;
    }

    .psychic-kits-preview h2,
    .psychic-awakened-soul h2 {
        font-size: 32px;
    }

    .site-intro-lead,
    .site-about-lead,
    .site-services-lead,
    .site-contact-lead {
        font-size: 16px;
    }

    .site-intro-image,
    .site-about-image,
    .psychic-intro-visual {
        min-height: 340px;
    }

    .site-intro-image img,
    .site-about-image img {
        min-height: 340px;
    }

    .psychic-intro-visual {
        padding: 35px 24px;
    }

    .psychic-intro-visual::before {
        width: 270px;
        height: 270px;
    }

    .psychic-intro-visual::after {
        width: 190px;
        height: 190px;
    }

    .psychic-symbol-panel h3 {
        font-size: 27px;
    }

    .psychic-course-symbol {
        max-width: 310px;
    }

    .psychic-course-symbol i {
        font-size: 56px;
    }

    .site-portfolio-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .site-portfolio-header h2 {
        font-size: 32px;
    }

    .site-project-image {
        aspect-ratio: 4 / 3;
    }

    .site-service-card,
    .site-comparison-card,
    .site-solution-card,
    .site-audience-card,
    .site-value-card,
    .site-testimonial-card {
        padding: 26px 22px;
    }

    .site-process {
        text-align: left;
    }

    .site-process-heading {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 34px;
    }

    .site-process-heading h2 {
        font-size: 32px;
    }

    .site-process-grid {
        display: block;
        overflow: visible;
    }

    .site-process-grid::before {
        top: 0;
        bottom: 0;
        left: 27px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .site-process-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        column-gap: 20px;
        min-width: 0;
        padding: 0 0 30px;
        text-align: left;
    }

    .site-process-item:last-child {
        padding-bottom: 0;
    }

    .site-process-icon {
        grid-column: 1;
        grid-row: 1 / span 4;
        margin: 0;
    }

    .site-process-number,
    .site-process-item h3,
    .site-process-item p {
        grid-column: 2;
    }

    .site-process-number {
        align-self: end;
    }

    .site-process-item p {
        max-width: 100%;
        margin: 0;
    }

    .site-cta-panel,
    .site-cta-image {
        min-height: 360px;
        padding: 65px 0;
    }

    .site-cta-panel h2 {
        font-size: 35px;
    }

    .psychic-home-cta::after {
        display: none;
    }

    .site-page-hero {
        margin-bottom: 30px;
        padding: 75px 0 65px;
    }

    .site-page-hero h1 {
        font-size: 36px;
    }

    .site-page-hero p {
        font-size: 14px;
    }

    .site-statement-panel {
        padding: 30px 24px;
    }

    .site-statement-panel blockquote {
        font-size: 24px;
    }

    .site-contact-form {
        padding: 25px 22px;
    }

    .site-contact-form-heading h2 {
        font-size: 28px;
    }

    .site-contact-closing h2 {
        font-size: 31px;
    }

    .site-thank-you-card {
        padding: 38px 24px;
    }

    .site-thank-you-card h1 {
        font-size: 34px;
    }

    .site-thank-you-actions {
        flex-direction: column;
    }

    .site-thank-you-actions .site-btn {
        width: 100%;
    }

    .site-plan-panel,
    .site-plan-panel-large {
        padding: 10px;
    }

    .site-plan-feature h2 {
        font-size: 30px;
    }

    .site-portfolio-intro h2,
    .site-project-heading h2,
    .site-project-showcase h2 {
        font-size: 30px;
    }

    .site-portfolio-lead {
        font-size: 18px;
    }

    .site-project-toggle {
        display: flex;
        width: 100%;
    }

    .site-project-toggle-btn {
        flex: 1;
        min-width: 0;
    }

    .site-project-main-image,
    .site-single-project-image {
        height: 400px;
    }

    .site-project-thumbnail {
        height: 90px;
    }

    .site-catalogue-intro h2,
    .site-catalogue-enquiry h2 {
        font-size: 30px;
    }

    .site-catalogue-lead {
        font-size: 18px;
    }

    .site-catalogue .row > [class*="col-"] {
        display: flex;
        justify-content: center;
    }

    .site-catalogue-card {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-catalogue-image {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: auto;
        min-height: 320px;

        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;

        padding: 12px;

        background-color: var(--surface-color);
        overflow: hidden;
    }

    .site-catalogue-image img {
        display: block;

        width: auto;
        max-width: 100%;

        height: auto;
        max-height: 420px;

        margin-left: auto;
        margin-right: auto;

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

    .site-catalogue-card:hover .site-catalogue-image img {
        transform: none;
    }

    .site-catalogue-content {
        width: 100%;
        text-align: center;
    }

    .adornar-product-card {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .adornar-product-flip {
        aspect-ratio: 1 / 1;
    }

    .site-page-hero-slider {
        min-height: 330px;
        margin-bottom: 30px;
        padding: 75px 0 70px;
    }

    .site-page-hero-slider .site-page-hero-slide {
        background-position: center center;
    }

    .site-page-hero-slider-overlay {
        background:
            linear-gradient(
                rgba(7, 4, 11, 0.72),
                rgba(13, 6, 20, 0.78)
            );
    }

    .site-page-hero-slider h1 {
        font-size: 36px;
    }

    .site-page-hero-slider p {
        font-size: 14px;
    }

    .site-page-hero-dots {
        bottom: 18px;
    }

    .site-portfolio-gallery-item,
    .site-portfolio-gallery-item-single {
        aspect-ratio: 4 / 3;
    }
}


/*--------------------------------------------------------------
# Responsive - Small Mobile
--------------------------------------------------------------*/

@media (max-width: 480px) {

    .site-hero {
        min-height: 565px;
        padding-bottom: 55px;
    }

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

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

    .site-hero-actions .site-btn:not(.site-btn-outline) {
        width: auto;
        min-width: 150px;
    }

    .site-benefit-item,
    .site-why-card {
        padding: 27px 14px;
    }

    .site-benefit-item p,
    .site-why-card p {
        font-size: 10px;
    }

    .site-page-hero h1 {
        font-size: 32px;
    }

    .site-cta-panel h2 {
        font-size: 32px;
    }

    .site-thank-you-divider {
        display: none;
    }

    .site-thank-you-contact a {
        display: block;
        margin-top: 4px;
    }

    .site-project-main-image,
    .site-single-project-image {
        height: 330px;
    }

    .site-project-thumbnail {
        height: 75px;
    }

    .site-catalogue-card {
        max-width: 360px;
    }

    .site-catalogue-image {
        min-height: 280px;
        padding: 10px;
    }

    .site-catalogue-image img {
        max-height: 360px;
    }

    .adornar-product-card {
        max-width: 360px;
    }

    .adornar-product-flip-badge {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .site-page-hero-slider {
        min-height: 330px;
    }

    .site-page-hero-slider h1 {
        font-size: 32px;
    }

    .psychic-symbol-panel h3 {
        font-size: 24px;
    }

    .psychic-symbol-icon {
        width: 70px;
        height: 70px;
    }

    .psychic-symbol-icon i {
        font-size: 29px;
    }
}


/*--------------------------------------------------------------
# Touch Devices
--------------------------------------------------------------*/

@media (hover: none) {

    .site-portfolio-gallery-item:hover img,
    .site-project-card:hover .site-project-image img,
    .site-gallery-item:hover .site-gallery-image img {
        transform: none;
    }
}


/*--------------------------------------------------------------
# Reduced Motion
--------------------------------------------------------------*/

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

    .adornar-product-card,
    .adornar-product-flip-inner,
    .site-page-hero-slider .site-page-hero-slide,
    .site-service-card,
    .site-project-image img,
    .site-gallery-image img,
    .site-portfolio-gallery-item img {
        transition: none;
    }
}