/* =========================
   ZUXAR — Global
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f7f5ef;
    color: #10234c;
    font-family: Arial, Helvetica, sans-serif;
}

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


/* =========================
   Header
========================= */

.site-header {
    width: 100%;
    min-height: 90px;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #073c91;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    font-size: 36px;
}

.brand-name {
    font-family: Georgia, serif;
    font-size: 30px;
    letter-spacing: 3px;
}

.brand-tagline {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 2px;
    opacity: .8;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.main-nav a {
    font-size: 12px;
    letter-spacing: .5px;
    color: white;
    opacity: .9;
}

.main-nav a:hover {
    opacity: 1;
}


/* =========================
   Hero
========================= */

.hero {
    min-height: 620px;
    padding: 90px 8%;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 65, .82) 0%,
            rgba(3, 35, 105, .55) 38%,
            rgba(3, 35, 105, .10) 68%,
            rgba(3, 35, 105, 0) 100%
        ),
        url("../images/hyperjump-hero2.png");

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

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

.eyebrow {
    margin: 0 0 20px;
    font-size: 12px;
    letter-spacing: 3px;
    opacity: .8;
}

.hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 8vw, 105px);
    font-weight: normal;
    line-height: .95;

    letter-spacing: 3px;

    text-shadow: 0 3px 15px rgba(0,0,0,.25);
}

.hero h2 {
    margin: 22px 0;

    font-family: Georgia, serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: normal;
    letter-spacing: 12px;
}

.hero-subtitle {
    margin: 28px 0 35px;

    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    min-width: 210px;
    padding: 17px 25px;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 6px;

    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;

    transition: .25s;
}

.btn-primary {
    border-color: #4925c7;
    background: linear-gradient(135deg, #5532d8, #173d9e);
}

.btn-secondary {
    background: rgba(255,255,255,.06);
}

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


/* =========================
   Discover
========================= */

.discover {
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 5% 90px;
}

.discover > h2 {
    margin: 0 0 25px;

    text-align: center;

    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 5px;
}

.filters {
    margin-bottom: 35px;

    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filters button {
    padding: 8px 18px;

    border: 0;
    border-radius: 20px;

    background: transparent;
    color: #17295b;

    font-size: 11px;
    letter-spacing: .5px;

    cursor: pointer;
}




.filters button.active {
    background: #4a2bb8;
    color: white;
}

.filters button {
    transition: background .25s ease,
                color .25s ease,
                transform .2s ease;
}

.filters button:hover {
    transform: translateY(-1px);
}



/* =========================
   Cards
========================= */

.card-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 18px;
}

.card {
    min-height: 270px;
    padding: 30px;

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

    border-radius: 14px;

    background:
        linear-gradient(
            160deg,
            #1266b7,
            #082b67
        );

    color: white;

    box-shadow:
        0 8px 25px rgba(9, 38, 87, .15);
}

.card h3 {
    margin: 0 0 8px;

    font-family: Georgia, serif;
    font-size: 25px;
}

.card p {
    margin: 0;

    max-width: 300px;

    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.45;

    opacity: .9;
}


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

@media (max-width: 900px) {

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

    .main-nav {
        justify-content: flex-start;
        gap: 15px;
    }

    .hero {
        min-height: 570px;
        padding: 70px 6%;
    }

    .hero h2 {
        letter-spacing: 7px;
    }
}

@media (max-width: 600px) {

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        width: 100%;
    }

    .discover {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================
   Jennifer Feature Card
========================= */

.card-jennifer {
    position: relative;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #082b67;
}

.card-jennifer .card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease;
}

.card-jennifer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 24, 67, 0.02) 25%,
            rgba(4, 24, 67, 0.25) 55%,
            rgba(4, 24, 67, 0.92) 100%
        );
}

.card-jennifer .card-overlay {
    position: relative;
    z-index: 2;
    min-height: 420px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.card-category {
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: .8;
}

.card-jennifer h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 30px;
}

.card-jennifer p {
    margin: 0 0 18px;
    max-width: 300px;
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
}

.card-link {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: .85;
}

.card-jennifer:hover .card-image {
    transform: scale(1.035);
}

/* =====================================
   Feature Card - Jennifer
===================================== */

.feature-card {
    min-height: 300px;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;

    background: #ffffff;
    border-radius: 14px;

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

    color: #10234c;
}

.feature-card-image {
    min-height: 300px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;

    transition: transform .4s ease;
}

.feature-card-content {
    padding: 30px 28px;

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

.feature-card-category {
    margin-bottom: 10px;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;

    color: #5532d8;
}

.feature-card h3 {
    margin: 0 0 16px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: normal;
}

.feature-card p {
    margin: 0 0 30px;

    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.55;

    color: #1e2943;
}

.feature-card-link {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid #e6e3dc;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: .7px;

    color: #5532d8;
}

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


/* iPad / narrower screens */

@media (max-width: 900px) {

    .feature-card {
        grid-template-columns: 58% 42%;
    }

    .feature-card-content {
        padding: 24px 22px;
    }

    .feature-card h3 {
        font-size: 24px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-card-image {
        min-height: 320px;
    }

    .feature-card-content {
        min-height: 220px;
    }
}

/* Jennifer card layout fix */

.feature-card-jennifer {
    width: 100%;
    height: 320px;
    min-height: 320px;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
    background: #fff;
}

.feature-card-jennifer .feature-card-image {
    width: 100%;
    height: 320px;
    min-height: 0;
    overflow: hidden;
}

.feature-card-jennifer .feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
}

.feature-card-jennifer .feature-card-content {
    height: 320px;
    padding: 26px 24px;
    background: #fff;
    color: #10234c;
    display: flex;
    flex-direction: column;
}

.feature-card-jennifer .feature-card-link {
    margin-top: auto;
}


/* Discover cards - final desktop/tablet proportions */

.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.feature-card-jennifer {
    grid-template-columns: 52% 48%;
}

.feature-card-jennifer .feature-card-content {
    padding: 26px 28px;
}

.feature-card-jennifer h3 {
    font-size: 24px;
    white-space: nowrap;
}

.feature-card-jennifer p {
    font-size: 14px;
    line-height: 1.5;
}

/* ==============================
   Character Page
============================== */

.character-page {
    background: #f7f5ef;
    color: #10234c;
}


/* Hero */

.character-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 5%;

    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 70px;
    align-items: center;
}

.character-hero-image {
    overflow: hidden;
    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(10, 35, 90, .16);
}

.character-hero-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.character-hero-content {
    max-width: 620px;
}

.character-label,
.section-label {
    display: block;

    margin-bottom: 16px;

    color: #5630c7;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.character-hero h1 {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 100px);
    font-weight: normal;
    line-height: .95;
    letter-spacing: 3px;
}

.character-subtitle {
    max-width: 520px;

    margin: 0 0 42px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.55;
}


/* Basic information */

.character-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    overflow: hidden;

    border: 1px solid rgba(16, 35, 76, .12);
    border-radius: 12px;

    background: rgba(16, 35, 76, .12);
}

.character-meta div {
    padding: 24px;

    background: white;
}

.character-meta span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #6d6d7a;
}

.character-meta strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: normal;
}


/* Main content */

.character-section {
    max-width: 1100px;

    margin: 0 auto;
    padding: 50px 7%;

    border-top: 1px solid rgba(16, 35, 76, .10);
}

.character-section h2 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: normal;
}

.character-section p {
    max-width: 800px;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.8;

    color: #283653;
}

.character-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.character-section-grid p {
    font-size: 17px;
}


/* Quote */

.character-quote {
    padding: 90px 8%;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #082b68,
            #125eb5
        );
}

.character-quote p {
    max-width: 900px;
    margin: 0 auto;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.4;
}


/* Gallery */

.character-gallery {
    margin-top: 35px;

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

.character-gallery img,
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;

    border-radius: 14px;
}

.character-gallery img {
    object-fit: cover;

    box-shadow:
        0 12px 30px rgba(10, 35, 90, .12);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #1266b7,
            #073e89
        );

    color: white;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* Back */

.character-back {
    padding: 20px 7% 90px;

    text-align: center;
}

.character-back a {
    display: inline-block;

    padding: 15px 25px;

    border: 1px solid rgba(16, 35, 76, .18);
    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.character-back a:hover {
    transform: translateY(-2px);

    background: #10234c;
    color: white;
}


/* Tablet */

@media (max-width: 900px) {

    .character-hero {
        grid-template-columns: 1fr;
        gap: 40px;

        padding-top: 45px;
    }

    .character-hero-image {
        max-width: 650px;
    }

    .character-section-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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


/* Mobile */

@media (max-width: 600px) {

    .character-hero {
        padding: 30px 20px 55px;
    }

    .character-meta {
        grid-template-columns: 1fr;
    }

    .character-section {
        padding: 55px 20px;
    }

    .character-gallery {
        grid-template-columns: 1fr;
    }

    .character-subtitle {
        font-size: 20px;
    }

}



/* ========================================
   SANCTUARY — NINE ORDERS
======================================== */

.sanctuary-orders {
    padding-top: 90px;
    padding-bottom: 100px;
}

.sanctuary-orders > p {
    max-width: 850px;
    margin-bottom: 60px;
}

.orders-list {
    margin-top: 55px;
    border-top: 1px solid rgba(12, 42, 84, 0.18);
}

.order-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 35px;

    padding: 36px 0;

    border-bottom: 1px solid rgba(12, 42, 84, 0.18);
}

.order-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    color: #5a2bd6;
}

.order-label {
    display: block;

    margin-bottom: 8px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;

    color: #5a2bd6;
}

.order-item h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;

    color: #102d5c;
}

.order-item p {
    max-width: 760px;

    margin: 0;

    font-size: 18px;
    line-height: 1.7;
}


/* FIRST ORDER — SPECIAL EMPHASIS */

.order-item:first-child {
    padding-top: 48px;
    padding-bottom: 48px;
}

.order-item:first-child .order-number {
    font-size: 56px;
}

.order-item:first-child h3 {
    font-size: 38px;
}


/* TABLET / MOBILE */

@media (max-width: 768px) {

    .sanctuary-orders {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .order-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;

        padding: 28px 0;
    }

    .order-number {
        font-size: 32px;
    }

    .order-item:first-child .order-number {
        font-size: 40px;
    }

    .order-item h3 {
        font-size: 25px;
    }

    .order-item:first-child h3 {
        font-size: 30px;
    }

    .order-item p {
        font-size: 16px;
    }
}

.breeze-life-image {
    width: 75%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 24px auto 32px;
}

.breeze-academy-image {
    width: 75%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 24px auto 32px;
}

/* Breeze Hill Academy — Six Paths */

.academy-paths {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 7%;
    border-top: 1px solid #d9d9d9;
}

.academy-paths h2 {
    margin: 18px 0 24px;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.08;
    color: #102a56;
}

.academy-paths-intro {
    max-width: 1000px;
    margin-bottom: 55px;
}

.academy-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
}

.academy-path {
    position: relative;
    min-height: 280px;
    padding: 42px 38px;
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.path-number {
    display: block;
    margin-bottom: 28px;
    font-size: 36px;
    color: #6337df;
}

.path-label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #6337df;
}

.academy-path h3 {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: #102a56;
}

.academy-path p {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
}

/* Tablet */

@media (max-width: 900px) {

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

}

/* Phone */

@media (max-width: 600px) {

    .academy-paths {
        padding: 65px 7%;
    }

    .academy-path-grid {
        grid-template-columns: 1fr;
    }

    .academy-path {
        min-height: auto;
        padding: 34px 28px;
    }

}


.breeze-workshop-image {
    width: 58%;
    max-width: 760px;
    height: auto;
    display: block;
    margin: 32px auto 36px;
}

.breeze-campus-image {
    width: 72%;
    max-width: 980px;
    height: auto;
    display: block;
    margin: 34px auto 38px;
}
.breeze-temple-image {
    width: 64%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 34px auto 38px;
}

.breeze-quote {
    max-width: 900px;
    margin: 55px auto 20px;
    padding: 32px 42px;
    border-left: 3px solid #6040e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.7;
    font-style: italic;
    color: #17315f;
}

/* Sacred Places */

.sacred-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 55px;
}

.sacred-place-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 26px;
}

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

.sacred-place-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: #102957;
    margin: 12px 0 16px;
}

.sacred-place-card p {
    line-height: 1.7;
}

/* iPad / smaller screens */

@media (max-width: 900px) {
    .sacred-places-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sacred-place-image {
        max-width: 620px;
    }
}


/* Twelve Temples */

.temple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.temple-card {
    display: block;
    padding: 30px 28px;
    border: 1px solid rgba(20, 45, 85, 0.16);
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.temple-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20, 45, 85, 0.08);
}

.temple-number {
    display: block;
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    color: #6540e8;
}

.temple-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: #102957;
}

.temple-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #243b63;
}

@media (max-width: 1000px) {
    .temple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .temple-grid {
        grid-template-columns: 1fr;
    }
}


/* Temple Emblems */


/*
.temple-emblem {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.temple-emblem img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


.twelve-temples-emblem {
    width: 200px;
    margin: 38px auto 46px;
}

.twelve-temples-emblem img {
    width: 100%;
    height: auto;
    display: block;
}*/







.temple-overview {
    margin: 30px auto 70px;
    text-align: center;
}

.temple-overview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Temple Emblems */

.temple-emblem {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.temple-emblem img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    display: block;
}

/* =========================================
   TEMPLE DETAIL PAGE
========================================= */

.temple-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 7% 0;
    color: #102d5b;
}


/* HERO */

.temple-detail-hero {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: center;
    padding: 70px 0 100px;
    border-bottom: 1px solid #d9d9d4;
}

.temple-detail-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.temple-detail-emblem img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.temple-detail-intro h1 {
    margin: 18px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 8vw, 108px);
    line-height: .92;
    font-weight: 400;
    color: #102d5b;
}

.temple-roman {
    display: block;
    margin-bottom: 18px;
    font-size: .42em;
    color: #6541e8;
}

.temple-detail-subtitle {
    max-width: 720px;
    margin: 0 0 42px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.5;
}


/* META */

.temple-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #d5d5d5;
    border-radius: 18px;
    overflow: hidden;
}

.temple-detail-meta div {
    padding: 26px 28px;
}

.temple-detail-meta div + div {
    border-left: 1px solid #d5d5d5;
}

.temple-detail-meta span {
    display: block;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #77717d;
}

.temple-detail-meta strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}


/* SECTIONS */

.temple-content-section {
    padding: 100px 0;
    border-bottom: 1px solid #d9d9d4;
}

.temple-content-section h2,
.temple-two-column h2,
.temple-story-section h2 {
    margin: 18px 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
}

.temple-content-section p,
.temple-two-column p,
.temple-story-section p {
    max-width: 1000px;
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.75;
}


/* TWO COLUMN */

.temple-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    padding: 100px 0;
    border-bottom: 1px solid #d9d9d4;
}


/* LABEL */

.temple-page .section-label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .28em;
    color: #6541e8;
}


/* IMAGE PLACEHOLDER */

.temple-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 540px;
    margin-top: 50px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #f3eee4,
            #e8e0d1
        );
}

.temple-image-placeholder span {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: #847a68;
}


/* STORY */

.temple-story-section {
    padding: 100px 0 120px;
}


/* QUOTE */

.temple-quote {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 120px 12%;
    background:
        linear-gradient(
            115deg,
            #0d377c,
            #1260b5
        );
}

.temple-quote p {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.25;
    color: white;
}


/* BACK */

.temple-back {
    padding: 50px 0 80px;
    text-align: center;
}

.temple-back a {
    display: inline-block;
    padding: 17px 26px;
    border: 1px solid #cbc9c3;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    color: #102d5b;
}


/* TABLET */

@media (max-width: 900px) {

    .temple-detail-hero {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .temple-detail-emblem img {
        max-width: 280px;
    }

    .temple-detail-meta {
        grid-template-columns: 1fr;
    }

    .temple-detail-meta div + div {
        border-left: 0;
        border-top: 1px solid #d5d5d5;
    }

    .temple-two-column {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* MOBILE */

@media (max-width: 620px) {

    .temple-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .temple-detail-hero {
        padding-top: 35px;
    }

    .temple-detail-emblem img {
        max-width: 220px;
    }

    .temple-content-section,
    .temple-two-column,
    .temple-story-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .temple-content-section p,
    .temple-two-column p,
    .temple-story-section p {
        font-size: 19px;
    }

    .temple-image-placeholder {
        min-height: 320px;
    }
}


/* =========================================
   ARKEION DETAIL PAGE - FIX
========================================= */

main.temple-page {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 70px 7% 0 !important;
    color: #102d5b;
}


/* HERO */

main.temple-page .temple-detail-hero {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 70px !important;
    align-items: center !important;
    
    padding: 40px 0 80px !important;
    
    border-bottom: 1px solid #d9d9d4;
}







main.temple-page .temple-detail-emblem {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

main.temple-page .temple-detail-emblem img {
    width: 250px !important;
    height: 250px !important;
    max-width: 250px !important;
    object-fit: contain !important;
    display: block !important;
}


/* INTRO */

main.temple-page .temple-detail-intro {
    min-width: 0;
}

main.temple-page .temple-detail-intro h1 {
    margin: 18px 0 20px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 82px !important;
    line-height: .95 !important;
    font-weight: 400 !important;
    color: #102d5b !important;
}

main.temple-page .temple-roman {
    display: block !important;
    margin-bottom: 14px !important;
    font-size: 34px !important;
    color: #6541e8 !important;
}

main.temple-page .temple-detail-subtitle {
    max-width: 720px;
    margin: 0 0 36px !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px !important;
    line-height: 1.5;
}


/* META */

main.temple-page .temple-detail-meta {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    border: 1px solid #d5d5d5 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

main.temple-page .temple-detail-meta > div {
    padding: 24px !important;
}

main.temple-page .temple-detail-meta > div + div {
    border-left: 1px solid #d5d5d5 !important;
}

main.temple-page .temple-detail-meta span {
    display: block !important;
    margin-bottom: 9px !important;
    font-family: Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    color: #77717d !important;
}

main.temple-page .temple-detail-meta strong {
    display: block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}


/* SECTION LABEL */

main.temple-page .section-label {
    display: block !important;
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .28em !important;
    color: #6541e8 !important;
}


/* CONTENT */

main.temple-page .temple-content-section {
    padding: 90px 0 !important;
    border-bottom: 1px solid #d9d9d4;
}

main.temple-page .temple-two-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    padding: 90px 0 !important;
    border-bottom: 1px solid #d9d9d4;
}

main.temple-page .temple-content-section h2,
main.temple-page .temple-two-column h2,
main.temple-page .temple-story-section h2 {
    margin: 16px 0 26px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 48px !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    color: #102d5b !important;
}

main.temple-page .temple-content-section p,
main.temple-page .temple-two-column p,
main.temple-page .temple-story-section p {
    max-width: 980px !important;
    margin: 0 0 18px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 21px !important;
    line-height: 1.7 !important;
    color: #102d5b !important;
}


/* IMAGE PLACEHOLDER */

main.temple-page .temple-image-placeholder {
    width: 100% !important;
    min-height: 440px !important;
    margin-top: 45px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f3eee4, #e8e0d1) !important;
}


/* STORY */

main.temple-page .temple-story-section {
    padding: 90px 0 110px !important;
}


/* QUOTE */

main.temple-page .temple-quote {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 100px 12% !important;
    background: linear-gradient(115deg, #0d377c, #1260b5) !important;
}

main.temple-page .temple-quote p {
    max-width: 1000px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 54px !important;
    line-height: 1.25 !important;
    color: white !important;
}


/* BACK */

main.temple-page .temple-back {
    padding: 50px 0 80px !important;
    text-align: center !important;
}

main.temple-page .temple-back a {
    display: inline-block !important;
    padding: 16px 24px !important;
    border: 1px solid #cbc9c3 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .14em !important;
    color: #102d5b !important;
}


/* TABLET */

@media (max-width: 900px) {

    main.temple-page .temple-detail-hero {
        grid-template-columns: 220px minmax(0, 1fr) !important;
        gap: 40px !important;
    }













    main.temple-page .temple-detail-emblem img {
        width: 210px !important;
        height: 210px !important;
        max-width: 210px !important;
    }

    main.temple-page .temple-detail-intro h1 {
        font-size: 64px !important;
    }

    main.temple-page .temple-two-column {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
}


/* MOBILE */

@media (max-width: 620px) {

    main.temple-page {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    main.temple-page .temple-detail-hero {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding-top: 35px !important;
    }

    main.temple-page .temple-detail-emblem img {
        width: 190px !important;
        height: 190px !important;
        max-width: 190px !important;
    }

    main.temple-page .temple-detail-meta {
        grid-template-columns: 1fr !important;
    }

    main.temple-page .temple-detail-meta > div + div {
        border-left: 0 !important;
        border-top: 1px solid #d5d5d5 !important;
    }

    main.temple-page .temple-detail-intro h1 {
        font-size: 52px !important;
    }

    main.temple-page .temple-content-section h2,
    main.temple-page .temple-two-column h2,
    main.temple-page .temple-story-section h2 {
        font-size: 38px !important;
    }

    main.temple-page .temple-content-section p,
    main.temple-page .temple-two-column p,
    main.temple-page .temple-story-section p {
        font-size: 18px !important;
    }
}

/* ========================================
   THE PATH OF THE TWELVE
======================================== */

.temple-path {
    padding: 110px 40px 120px;
    background: #f7f5ef;
    text-align: center;
}

.temple-path-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.temple-path .section-label {
    margin: 0 0 30px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: #6547f5;
}

.temple-path h2 {
    margin: 0;
    color: #0d3267;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.08;
}

.temple-path-ending {
    margin: 55px auto 0;
    color: #0d3267;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.6;
    font-style: italic;
}


/* iPad / Mobile */
@media (max-width: 768px) {

    .temple-path {
        padding: 80px 24px 90px;
    }

    .temple-path .section-label {
        font-size: 12px;
    }

    .temple-path-ending {
        margin-top: 40px;
    }
}

.elyrion-final-line {
  margin-top: 120px;
  padding: 120px 20px 160px;
  text-align: center;
}

.elyrion-final-line p {
  margin: 0;
  color: #123462;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1.35;
  font-weight: 400;
}



.temple-image {
    width: 100%;
    max-width: 760px;
    margin: 48px auto 0;
    border-radius: 24px;
    overflow: hidden;
}

.temple-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   STORIES PAGE
========================================================= */

.stories-page {
    background: #f7f5ef;
    color: #0e2d5c;
}


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

.stories-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 40px 100px;

    display: grid;
    grid-template-columns: minmax(360px, 520px) 1fr;
    gap: 78px;
    align-items: center;
}


.stories-hero-image {
    width: 100%;
}


.stories-hero-image img {
    display: block;
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;
    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 22px 45px rgba(12, 35, 67, 0.13);
}


.stories-label,
.section-label,
.story-era-label {
    display: block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28em;

    color: #6542e8;
}


.stories-hero-content h1 {
    margin: 28px 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 7vw, 108px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: 0.015em;

    color: #102f60;
}


.stories-tagline {
    max-width: 620px;

    margin: 0 0 50px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.55;

    color: #1c3966;
}


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

.stories-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(15, 46, 88, 0.22);
    border-radius: 16px;
    overflow: hidden;

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


.stories-meta > div {
    min-height: 125px;
    padding: 28px 30px;

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


.stories-meta > div + div {
    border-left: 1px solid rgba(15, 46, 88, 0.18);
}


.stories-meta span {
    margin-bottom: 12px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;

    color: #6d6a72;
}


.stories-meta strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;

    color: #102f60;
}


/* =========================================================
   TRILOGY
========================================================= */

.stories-trilogy {
    max-width: 1280px;
    margin: 0 auto;

    padding: 90px 40px 115px;

    border-top: 1px solid rgba(15, 46, 88, 0.14);
}


.stories-trilogy > h2,
.stories-begin h2 {
    margin: 28px 0 26px;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.05;

    color: #102f60;
}


.stories-intro {
    margin: 0 0 70px;
    max-width: 1000px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.65;

    color: #203c66;
}


/* =========================================================
   ERA ROWS
========================================================= */

.story-era {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 55px;

    padding: 55px 0 65px;

    border-top: 1px solid rgba(15, 46, 88, 0.18);
}


.story-era:last-child {
    border-bottom: 1px solid rgba(15, 46, 88, 0.18);
}


.story-era-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    line-height: 1;

    color: #653fe6;
}


.story-era-content h3 {
    margin: 20px 0 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3.8vw, 55px);
    line-height: 1.15;
    font-weight: 400;

    color: #102f60;
}


.story-era-content p {
    max-width: 950px;

    margin: 0 0 26px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.65;

    color: #263f68;
}


.story-era-link {
    display: inline-block;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: #173767;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}


.story-era-link:hover {
    color: #6542e8;
    transform: translateX(4px);
}


/* =========================================================
   BEGIN JOURNEY
========================================================= */

.stories-begin {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 120px;
}


.stories-begin > p {
    max-width: 780px;
    margin: 0 0 52px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.65;

    color: #263f68;
}


.stories-begin-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(15, 46, 88, 0.18);
    border-bottom: 1px solid rgba(15, 46, 88, 0.18);
}


.stories-begin-links a {
    padding: 35px 30px;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;

    color: #6542e8;

    transition: background 0.25s ease;
}


.stories-begin-links a + a {
    border-left: 1px solid rgba(15, 46, 88, 0.18);
}


.stories-begin-links a:hover {
    background: rgba(101, 66, 232, 0.045);
}


.stories-begin-links span {
    display: block;

    margin-top: 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: normal;

    color: #102f60;
}


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

.stories-quote {
    min-height: 410px;

    padding: 80px 12%;

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

    background:
        linear-gradient(
            115deg,
            #103976,
            #0f57a2
        );
}


.stories-quote blockquote {
    max-width: 1100px;
    margin: 0;

    text-align: center;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.28;
    font-weight: 400;

    color: #ffffff;
}


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

@media (max-width: 1000px) {

    .stories-hero {
        grid-template-columns: 1fr;
        gap: 55px;

        padding-top: 65px;
    }


    .stories-hero-image {
        max-width: 620px;
        margin: 0 auto;
    }


    .stories-meta {
        grid-template-columns: 1fr;
    }


    .stories-meta > div + div {
        border-left: 0;
        border-top: 1px solid rgba(15, 46, 88, 0.18);
    }


    .stories-meta > div {
        min-height: auto;
    }

}


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

@media (max-width: 700px) {

    .stories-hero,
    .stories-trilogy,
    .stories-begin {
        padding-left: 24px;
        padding-right: 24px;
    }


    .stories-hero {
        padding-top: 42px;
        padding-bottom: 70px;
    }


    .stories-hero-image img {
        border-radius: 18px;
    }


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


    .stories-tagline {
        font-size: 22px;
        line-height: 1.5;
    }


    .story-era {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 42px 0 50px;
    }


    .story-era-number {
        font-size: 44px;
    }


    .story-era-content h3 {
        margin-top: 15px;
        font-size: 36px;
    }


    .story-era-content p,
    .stories-intro,
    .stories-begin > p {
        font-size: 19px;
    }


    .stories-begin-links {
        grid-template-columns: 1fr;
    }


    .stories-begin-links a + a {
        border-left: 0;
        border-top: 1px solid rgba(15, 46, 88, 0.18);
    }


    .stories-quote {
        min-height: 320px;
        padding: 65px 28px;
    }


    .stories-quote blockquote {
        font-size: 36px;
    }

}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.stories-page,
.stories-page * {
    box-sizing: border-box;
}


.stories-page img {
    max-width: 100%;
}


html,
body {
    overflow-x: hidden;
}


/* =========================================================
   ERA STORY PAGES
========================================================= */

.era-page {
    background: #f7f5ef;
    color: #102f60;
}


/* HERO */

.era-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 105px;
}

.era-label,
.era-feature-label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: #6542e8;
}

.era-hero h1 {
    margin: 25px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 8vw, 120px);
    line-height: .95;
    font-weight: 400;
}

.era-chinese-title {
    margin: 0 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.era-hero-tagline {
    max-width: 840px;
    margin: 0 0 55px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.7vw, 38px);
    line-height: 1.5;
}

.era-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(16,47,96,.2);
    border-bottom: 1px solid rgba(16,47,96,.2);
}

.era-meta > div {
    padding: 28px 26px;
}

.era-meta > div + div {
    border-left: 1px solid rgba(16,47,96,.16);
}

.era-meta span {
    display: block;
    margin-bottom: 10px;
    font: 700 11px Arial, sans-serif;
    letter-spacing: .2em;
    color: #77727b;
}

.era-meta strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
}


/* INTRO */

.era-intro {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    border-top: 1px solid rgba(16,47,96,.14);
}

.era-intro h2,
.era-themes h2,
.era-reading h2 {
    max-width: 900px;
    margin: 25px 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 400;
}

.era-intro p {
    max-width: 920px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.75;
}


/* FEATURE ROWS */

.era-feature {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;

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

    border-top: 1px solid rgba(16,47,96,.15);
}

.era-feature-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    color: #6542e8;
}

.era-feature-content {
    max-width: 950px;
}

.era-feature-content h2 {
    margin: 18px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.12;
    font-weight: 400;
}

.era-feature-content p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.7;
}

.era-feature-lead {
    font-size: 27px !important;
    line-height: 1.55 !important;
    color: #263f68;
}

.era-inline-quote {
    margin: 40px 0;
    padding-left: 28px;
    border-left: 3px solid #6542e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-style: italic;
}

.era-place-name {
    margin: 30px 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
}

.era-place-chinese {
    margin-top: 0 !important;
    font-size: 24px !important;
}


/* THEMES */

.era-themes {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 40px;
    border-top: 1px solid rgba(16,47,96,.15);
}

.era-theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    border-top: 1px solid rgba(16,47,96,.18);
}

.era-theme-grid > div {
    padding: 45px 35px;
    border-bottom: 1px solid rgba(16,47,96,.18);
}

.era-theme-grid > div:nth-child(even) {
    border-left: 1px solid rgba(16,47,96,.18);
}

.era-theme-grid span {
    color: #6542e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.era-theme-grid h3 {
    margin: 15px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
}

.era-theme-grid p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.65;
}


/* READING */

.era-reading {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 40px;
}

.era-reading > p {
    max-width: 750px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.65;
}

.era-volume {
    margin-top: 55px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 45px;
    padding: 45px 0;
    border-top: 1px solid rgba(16,47,96,.18);
    border-bottom: 1px solid rgba(16,47,96,.18);
}

.era-volume-number {
    font: 700 13px Arial, sans-serif;
    letter-spacing: .2em;
    color: #6542e8;
}

.era-volume-content h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
}

.era-volume-content p {
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.65;
}

.era-volume-content a {
    display: inline-block;
    margin-top: 15px;
    font: 700 12px Arial, sans-serif;
    letter-spacing: .18em;
    color: #173767;
    text-decoration: none;
}


/* QUOTE */

.era-quote {
    min-height: 400px;
    padding: 80px 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(115deg, #103976, #0f57a2);
}

.era-quote blockquote {
    max-width: 1050px;
    margin: 0;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.7vw, 65px);
    line-height: 1.3;
    color: #fff;
}


/* BACK */

.era-back {
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 40px 75px;
}

.era-back a {
    text-decoration: none;
    font: 700 12px Arial, sans-serif;
    letter-spacing: .18em;
    color: #173767;
}


/* MOBILE */

@media (max-width: 800px) {

    .era-hero,
    .era-intro,
    .era-feature,
    .era-themes,
    .era-reading,
    .era-back {
        padding-left: 24px;
        padding-right: 24px;
    }

    .era-meta {
        grid-template-columns: 1fr;
    }

    .era-meta > div + div {
        border-left: 0;
        border-top: 1px solid rgba(16,47,96,.16);
    }

    .era-feature {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .era-theme-grid {
        grid-template-columns: 1fr;
    }

    .era-theme-grid > div:nth-child(even) {
        border-left: 0;
    }

    .era-volume {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .era-intro p,
    .era-feature-content p {
        font-size: 19px;
    }

    .era-feature-lead {
        font-size: 23px !important;
    }
}

/* =========================================================
   OBJECTS COPYRIGHT & AI NOTICE
========================================================= */

.objects-rights {
    background: #f1eee6;
    border-top: 1px solid rgba(16, 47, 96, .16);
    color: #173767;
}

.objects-rights-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 75px;
}

.objects-rights h2 {
    margin: 20px 0 55px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 400;
}

.objects-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(16, 47, 96, .16);
    border-bottom: 1px solid rgba(16, 47, 96, .16);
}

.objects-rights-block {
    padding: 42px 36px;
}

.objects-rights-block + .objects-rights-block {
    border-left: 1px solid rgba(16, 47, 96, .16);
}

.objects-rights h3 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.objects-rights p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.75;
}

.objects-rights-cn {
    margin-top: 60px;
    max-width: 1000px;
}

.objects-rights-cn h3 {
    font-size: 30px;
}

.objects-rights-footer {
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 47, 96, .16);
}

.objects-rights-footer p {
    margin: 5px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 800px) {

    .objects-rights-inner {
        padding: 75px 24px 55px;
    }

    .objects-rights-grid {
        grid-template-columns: 1fr;
    }

    .objects-rights-block + .objects-rights-block {
        border-left: 0;
        border-top: 1px solid rgba(16, 47, 96, .16);
    }

    .objects-rights-block {
        padding: 34px 0;
    }

    .objects-rights p {
        font-size: 16px;
    }
}

/* =========================================================
   HYPERJUMP OBJECT DETAIL PAGE
========================================================= */

.object-page {
    background: #f6f3ec;
    color: #153867;
}


/* ---------- HERO ---------- */

.object-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 52px 95px;
}

.object-label,
.object-page .section-label {
    display: block;
    margin-bottom: 22px;

    color: #6848f3;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;

    letter-spacing: .28em;
    text-transform: uppercase;
}

.object-hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(64px, 8vw, 118px);
    line-height: .98;

    font-weight: 400;
    color: #153867;
}

.object-chinese-name {
    margin: 22px 0 0;

    font-size: 32px;
    line-height: 1.35;
}

.object-tagline {
    max-width: 950px;

    margin: 58px 0 60px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.55;
}


/* ---------- META ---------- */

.object-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(21, 56, 103, .18);
    border-bottom: 1px solid rgba(21, 56, 103, .18);
}

.object-meta > div {
    padding: 32px 34px;
}

.object-meta > div + div {
    border-left: 1px solid rgba(21, 56, 103, .18);
}

.object-meta span {
    display: block;
    margin-bottom: 12px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: .2em;
    color: #6c6c78;
}

.object-meta strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}


/* ---------- COMMON SECTIONS ---------- */

.object-intro,
.object-plate,
.object-specifications,
.object-story,
.object-details,
.object-archive-note,
.object-back {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 52px;
    padding-right: 52px;
}

.object-intro,
.object-plate,
.object-specifications,
.object-story,
.object-details,
.object-archive-note {
    padding-top: 95px;
    padding-bottom: 95px;

    border-top: 1px solid rgba(21, 56, 103, .15);
}

.object-page h2 {
    max-width: 1150px;
    margin: 0 0 45px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 1.08;

    font-weight: 400;
    color: #153867;
}

.object-intro p,
.object-story p,
.object-archive-note p {
    max-width: 1050px;

    margin: 0 0 26px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.75;
}


/* ---------- ARCHIVE IMAGE ---------- */

.object-plate figure {
    margin: 0;
}

.object-plate img {
    display: block;

    width: min(100%, 1100px);
    height: auto;

    margin: 0 auto;

    border-radius: 12px;

    box-shadow:
        0 12px 32px rgba(30, 31, 36, .12);
}

.object-plate figcaption {
    max-width: 1100px;

    margin: 18px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    letter-spacing: .1em;
    color: #666;
}


/* ---------- SPECIFICATIONS ---------- */

.object-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(21, 56, 103, .17);
    border-left: 1px solid rgba(21, 56, 103, .17);
}

.object-spec-grid > div {
    min-height: 125px;

    padding: 26px 28px;

    border-right: 1px solid rgba(21, 56, 103, .17);
    border-bottom: 1px solid rgba(21, 56, 103, .17);
}

.object-spec-grid span {
    display: block;

    margin-bottom: 13px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .18em;
    color: #757580;
}

.object-spec-grid strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}


/* ---------- FEATURES ---------- */

.object-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(21, 56, 103, .17);
    border-left: 1px solid rgba(21, 56, 103, .17);
}

.object-detail-grid > div {
    min-height: 285px;

    padding: 52px 44px;

    border-right: 1px solid rgba(21, 56, 103, .17);
    border-bottom: 1px solid rgba(21, 56, 103, .17);
}

.object-detail-grid span {
    color: #6848f3;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.object-detail-grid h3 {
    margin: 24px 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
}

.object-detail-grid p {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.65;
}


/* ---------- ARCHIVE NOTE ---------- */

.object-archive-note {
    background: #f1eee6;
}

.object-copyright-short {
    margin-top: 42px !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;

    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ---------- BACK ---------- */

.object-back {
    padding-top: 45px;
    padding-bottom: 65px;
}

.object-back a {
    color: #153867;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: .14em;

    text-decoration: none;
}

.object-back a:hover {
    opacity: .6;
}


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

@media (max-width: 800px) {

    .object-hero {
        padding:
            80px 24px
            65px;
    }

    .object-meta {
        grid-template-columns: 1fr;
    }

    .object-meta > div + div {
        border-left: 0;
        border-top: 1px solid rgba(21, 56, 103, .18);
    }

    .object-intro,
    .object-plate,
    .object-specifications,
    .object-story,
    .object-details,
    .object-archive-note,
    .object-back {
        padding-left: 24px;
        padding-right: 24px;
    }

    .object-intro,
    .object-plate,
    .object-specifications,
    .object-story,
    .object-details,
    .object-archive-note {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .object-spec-grid,
    .object-detail-grid {
        grid-template-columns: 1fr;
    }

    .object-detail-grid > div {
        min-height: auto;
    }

    .object-intro p,
    .object-story p,
    .object-archive-note p {
        font-size: 18px;
    }

}