/* ============================================================
   JEEVA NADI MINISTRIES
   REFORMATION DAY 2026
   PREMIUM EDITORIAL EVENT DESIGN

   VISUAL LANGUAGE
   ------------------------------------------------------------
   • Historic European editorial aesthetic
   • Burgundy / parchment / antique gold
   • Cinematic image treatment
   • Architectural framing
   • Layered typography
   • Soft paper atmosphere
   • Elegant hover interactions
   • Scroll-reveal-ready composition
   • Fully responsive
   • NO JAVASCRIPT REQUIRED
============================================================ */


/* ============================================================
   DESIGN TOKENS
============================================================ */

:root {

    --r-bg: #f6f2e8;
    --r-bg-light: #fbf9f3;
    --r-bg-dark: #e9e1d1;
    --r-paper: #fffdf8;

    --r-burgundy: #641c28;
    --r-burgundy-dark: #3d1018;
    --r-burgundy-deep: #2b0a10;
    --r-burgundy-soft: #853945;

    --r-gold: #ae8438;
    --r-gold-light: #d6b76d;
    --r-gold-pale: #ead7a4;
    --r-gold-dark: #7e5b20;

    --r-ink: #29231e;
    --r-text: #514941;
    --r-muted: #7b7368;

    --r-white: #ffffff;

    --r-border: rgba(62, 43, 26, 0.14);
    --r-border-light: rgba(255, 255, 255, 0.18);

    --r-shadow:
        0 35px 90px rgba(48, 31, 18, 0.14);

    --r-shadow-small:
        0 15px 45px rgba(48, 31, 18, 0.10);

    --r-ease:
        cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ============================================================
   RESET
============================================================ */

.reformation-page,
.reformation-page *,
.reformation-page *::before,
.reformation-page *::after {
    box-sizing: border-box;
}

.reformation-page {
    position: relative;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    background: var(--r-bg);
    color: var(--r-ink);

    font-family: "Poppins", sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.reformation-page a {
    color: inherit;
}


/* ============================================================
   PAPER ATMOSPHERE
============================================================ */

.reformation-page::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.11;

    background-image:
        radial-gradient(
            rgba(70, 49, 27, 0.22) 0.5px,
            transparent 0.5px
        );

    background-size: 8px 8px;

    mix-blend-mode: multiply;
}


/* ============================================================
   TYPOGRAPHY
============================================================ */

.reformation-page h1,
.reformation-page h2,
.reformation-page h3,
.reformation-page strong {
    font-family: "Cinzel", serif;
}

.reformation-page p {
    font-family: "Poppins", sans-serif;
}


/* ============================================================
   GLOBAL ANIMATIONS
============================================================ */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes scaleReveal {

    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


@keyframes floating {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-18px);
    }
}


@keyframes pulseRing {

    0% {
        box-shadow:
            0 0 0 0 rgba(214, 183, 109, 0.28);
    }

    70% {
        box-shadow:
            0 0 0 13px rgba(214, 183, 109, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(214, 183, 109, 0);
    }
}


/* ============================================================
   HEADER
============================================================ */

.reformation-header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    background:
        linear-gradient(
            to bottom,
            rgba(26, 8, 12, 0.94),
            rgba(26, 8, 12, 0.52),
            transparent
        );

    animation:
        fadeIn 1s ease both;
}


.reformation-nav {
    width: min(1360px, 100%);
    margin: 0 auto;

    padding: 22px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================================
   BRAND
============================================================ */

.reformation-brand {
    display: flex;
    align-items: center;
    gap: 13px;

    color: #ffffff;
    text-decoration: none;

    transition:
        transform 0.45s var(--r-ease);
}

.reformation-brand:hover {
    transform: translateX(5px);
}


.brand-cross {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--r-gold-light);

    color: var(--r-gold-light);

    font-size: 18px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s var(--r-ease);
}

.reformation-brand:hover .brand-cross {
    background: var(--r-gold-light);
    color: var(--r-burgundy-dark);

    transform: rotate(45deg);

    box-shadow:
        0 0 30px rgba(214, 183, 109, 0.28);
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    font-size: 14px;
    letter-spacing: 3px;
}


.brand-text small {
    margin-top: 3px;

    color: var(--r-gold-light);

    font-family: "Poppins", sans-serif;
    font-size: 7px;

    letter-spacing: 2px;
}


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

.reformation-menu {
    display: flex;
    align-items: center;
    gap: 31px;
}


.reformation-menu a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    transition:
        color 0.3s ease;
}


.reformation-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--r-gold-light);

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform 0.45s var(--r-ease);
}


.reformation-menu a:hover,
.reformation-menu a.active {
    color: #ffffff;
}


.reformation-menu a:hover::after,
.reformation-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


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

.reformation-hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--r-burgundy-deep);

    isolation: isolate;
}

/* ============================================================
   SECTION HISTORY (below hero)
============================================================ */

.section-history {
    background-color: #0b1a3a; /* deep navy */
    color: #f5f5f5; /* light text */
    padding: 120px 60px;
}

.section-history h2,
.section-history h3,
.section-history p {
    color: #f5f5f5;
}

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

.hero-bg {
    position: absolute;

    inset: -5%;

    z-index: -5;

    background:
        url("images/reformation.pic.jpg")
        center / cover no-repeat;

    opacity: 0.72;

    filter:
        saturate(0.72)
        sepia(0.08)
        contrast(1.08);

    animation:
        heroZoom 18s ease-in-out infinite alternate;
}


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

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(39, 8, 14, 0.97) 0%,
            rgba(56, 12, 19, 0.88) 32%,
            rgba(61, 14, 22, 0.53) 63%,
            rgba(39, 8, 14, 0.78) 100%
        ),

        linear-gradient(
            to bottom,
            rgba(20, 5, 8, 0.55),
            transparent 30%,
            rgba(20, 5, 8, 0.76)
        );
}


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

.hero-glow {
    position: absolute;

    inset: 0;

    z-index: -3;

    background:
        radial-gradient(
            circle at 72% 35%,
            rgba(218, 184, 101, 0.22),
            transparent 27%
        ),

        radial-gradient(
            circle at 40% 60%,
            rgba(255, 255, 255, 0.035),
            transparent 35%
        );
}


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

.hero-frame {
    position: absolute;

    inset: 28px;

    z-index: -1;

    border:
        1px solid rgba(235, 211, 151, 0.24);

    pointer-events: none;
}


.hero-frame::before,
.hero-frame::after {
    content: "";

    position: absolute;

    width: 95px;
    height: 95px;

    border-color:
        rgba(226, 194, 116, 0.72);
}


.hero-frame::before {
    top: -1px;
    left: -1px;

    border-top: 2px solid;
    border-left: 2px solid;
}


.hero-frame::after {
    right: -1px;
    bottom: -1px;

    border-right: 2px solid;
    border-bottom: 2px solid;
}


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

.hero-content {
    position: relative;
    z-index: 5;
    width: min(1260px, 100%);
    margin: 0 auto;
    padding: 160px 60px 23px; /* top | left/right | bottom */
    box-sizing: border-box;
}


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

.hero-overline {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--r-gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;

    animation:
        fadeUp 1s 0.1s var(--r-ease) both;
}


.hero-overline span {
    width: 44px;
    height: 1px;

    background: var(--r-gold-light);
}


/* ============================================================
   HERO HISTORY LABEL
============================================================ */

.hero-history-label {
    margin-top: 28px;

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

    color: rgba(255, 255, 255, 0.50);

    font-size: 8px;
    letter-spacing: 4px;

    animation:
        fadeUp 1s 0.2s var(--r-ease) both;
}


.hero-history-label i {
    width: 45px;
    height: 1px;

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

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

.hero-title {
    margin-top: 25px;

    animation:
        fadeUp 1.1s 0.3s var(--r-ease) both;
}


/* ---------- SMALL TITLE / OVERLINE ---------- */

.hero-title p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.61);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 7px;
    line-height: 1.4;
}


/* ---------- MAIN TITLE ---------- */

.hero-title h1 {
    width: 100%;
    max-width: 760px;

    margin: 0;

    color: #fff9ed;

    font-family: "Cinzel", serif;

    font-size: clamp(64px, 7vw, 110px);

    font-weight: 600;

    line-height: 0.88;

    letter-spacing: -3px;

    white-space: normal;

    overflow: visible;

    text-wrap: balance;
}


/* ---------- GOLD WORD ---------- */

.hero-title h1 em {
    color: var(--r-gold-light);

    font-style: normal;
}


/* ---------- OPTIONAL: KEEP EACH TITLE LINE CLEAN ---------- */

.hero-title h1 span {
    display: block;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .hero-title h1 {
        max-width: 680px;

        font-size: clamp(58px, 8vw, 88px);

        line-height: 0.9;

        letter-spacing: -2.5px;
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 650px) {

    .hero-title {
        margin-top: 20px;
    }

    .hero-title p {
        margin-bottom: 16px;

        font-size: 8px;

        letter-spacing: 5px;
    }

    .hero-title h1 {
        max-width: 100%;

        font-size: clamp(52px, 14vw, 72px);

        line-height: 0.92;

        letter-spacing: -2px;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 380px) {

    .hero-title h1 {
        font-size: 48px;

        line-height: 0.94;

        letter-spacing: -1.5px;
    }

}


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

.hero-date {
    margin-top: 38px;

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

    animation:
        fadeUp 1s 0.5s var(--r-ease) both;
}


.hero-date-number {
    color: var(--r-gold-light);

    font-family: "Cinzel", serif;

    font-size: 62px;

    line-height: 0.8;
}


.hero-date-text {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding-left: 20px;

    border-left:
        1px solid rgba(214, 183, 109, 0.5);
}


.hero-date-text span {
    color: rgba(255, 255, 255, 0.76);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;
}


.hero-date-text strong {
    color: rgba(255, 255, 255, 0.54);

    font-family: "Poppins", sans-serif;

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

    letter-spacing: 3px;
}


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

.hero-description {
    max-width: 570px;

    margin: 32px 0 0;

    color: rgba(255, 247, 234, 0.78);

    font-size: 14px;
    line-height: 2;

    animation:
        fadeUp 1s 0.65s var(--r-ease) both;
}


/* ============================================================
   DISCOVER
============================================================ */

.hero-discover {
    margin-top: 35px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: #ffffff;

    text-decoration: none;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    animation:
        fadeUp 1s 0.8s var(--r-ease) both;
}


.discover-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--r-gold-light);

    border-radius: 50%;

    color: var(--r-gold-light);

    font-size: 18px;

    transition:
        all 0.45s var(--r-ease);
}


.hero-discover:hover .discover-icon {
    background: var(--r-gold-light);

    color: var(--r-burgundy-dark);

    transform:
        translateY(6px)
        scale(1.08);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.24);
}


/* ============================================================
   HERO SIDE LABEL
============================================================ */

.hero-side-label {
    position: absolute;

    right: 34px;
    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    color: rgba(255, 255, 255, 0.35);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 5px;
}


.hero-side-label strong {
    margin: 12px 0;

    color: var(--r-gold-light);

    font-size: 18px;
}

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

.hero-bottom {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    padding: 14px 8px 0;

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

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

    color: rgba(255, 255, 255, 0.52);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;

    z-index: 6;
}

/* ============================================================
   SECTION KICKER
============================================================ */

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--r-gold); /* changed from burgundy for better contrast */
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--r-gold);
}


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

.reformation-intro {
    max-width: 1180px;

    margin: 0 auto;

    padding: 145px 40px;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 55px;
}


.intro-index {
    padding-top: 7px;

    color: var(--r-gold);

    font-family: "Cinzel", serif;

    font-size: 21px;
}


.intro-content h2 {
    margin: 22px 0 38px;

    color: var(--r-ink);

    font-size:
        clamp(50px, 6vw, 78px);

    line-height: 0.94;

    font-weight: 600;
}


.intro-content h2 em {
    display: block;

    color: var(--r-burgundy);

    font-style: normal;
}


.intro-columns {
    max-width: 850px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;
}


.intro-columns p {
    margin: 0;

    color: var(--r-text);

    font-size: 13px;

    line-height: 2;
}


/* ============================================================
   HISTORY FEATURE
============================================================ */

.history-feature {
    max-width: 1320px;

    margin:
        0 auto 150px;

    padding:
        0 30px;

    display: grid;

    grid-template-columns:
        1.12fr 0.88fr;

    align-items: center;
}


.history-feature-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    box-shadow: var(--r-shadow);
}


.history-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s var(--r-ease),
        filter 0.8s ease;
}


.history-feature:hover .history-feature-image img {
    transform: scale(1.055);

    filter:
        saturate(1.08)
        contrast(1.04);
}


.image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(49, 12, 18, 0.82),
            transparent 65%
        );
}


.image-frame {
    position: absolute;

    inset: 17px;

    border:
        1px solid rgba(255, 255, 255, 0.44);

    pointer-events: none;

    transition:
        inset 0.6s var(--r-ease),
        border-color 0.4s ease;
}


.history-feature:hover .image-frame {
    inset: 11px;

    border-color:
        rgba(230, 204, 138, 0.72);
}


.image-label {
    position: absolute;

    left: 35px;
    bottom: 32px;

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

    gap: 15px;

    color: #ffffff;
}


.image-label span {
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;
}


.image-label strong {
    color: var(--r-gold-light);

    font-size: 52px;

    line-height: 0.8;
}


.history-feature-content {
    position: relative;

    padding: 80px 70px;

    background: var(--r-paper);

    box-shadow: var(--r-shadow-small);
}


.history-number {
    position: absolute;

    top: 30px;
    right: 45px;

    color:
        rgba(174, 132, 56, 0.13);

    font-family: "Cinzel", serif;

    font-size: 110px;

    line-height: 1;
}


.history-feature-content h2 {
    margin: 25px 0;

    color: var(--r-ink);

    font-size:
        clamp(48px, 5vw, 70px);

    line-height: 0.9;

    font-weight: 600;
}


.history-feature-content h2 em {
    color: var(--r-burgundy);

    font-style: normal;
}


.history-feature-content p {
    max-width: 500px;

    color: var(--r-text);

    font-size: 13px;

    line-height: 1.95;
}


.historical-rule {
    margin-top: 35px;

    display: flex;
    align-items: center;

    gap: 12px;
}


.historical-rule span {
    width: 30px;
    height: 1px;

    background: var(--r-gold);
}


.historical-rule strong {
    color: var(--r-gold-dark);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


/* ============================================================
   VISUAL HISTORY
============================================================ */

.visual-history {
    max-width: 1280px;

    margin: 0 auto;

    padding:
        40px 30px 150px;
}


.visual-heading {
    margin-bottom: 60px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
}


.visual-heading h2 {
    margin: 20px 0 0;

    color: var(--r-ink);

    font-size:
        clamp(48px, 5vw, 68px);

    line-height: 0.92;

    font-weight: 600;
}


.visual-heading h2 em {
    color: var(--r-burgundy);

    font-style: normal;
}


.visual-heading > p {
    max-width: 400px;

    margin: 0;

    color: var(--r-muted);

    font-size: 12px;

    line-height: 1.9;
}


/* ============================================================
   HISTORY GALLERY
============================================================ */

.history-gallery {
    position: relative;

    min-height: 720px;
}


.history-card {
    position: absolute;

    overflow: hidden;

    margin: 0;

    background: #222222;

    box-shadow: var(--r-shadow);
}


.history-card-main {
    top: 0;
    left: 0;

    width: 68%;
    height: 620px;
}


.history-card-secondary {
    right: 0;
    bottom: 0;

    width: 43%;
    height: 400px;

    border:
        9px solid var(--r-bg);
}


.history-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.1s var(--r-ease),
        filter 0.7s ease;
}


.history-card:hover img {
    transform: scale(1.07);

    filter:
        saturate(1.10)
        contrast(1.04);
}


.history-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(44, 10, 16, 0.90),
            rgba(44, 10, 16, 0.03) 68%
        );

    transition:
        opacity 0.5s ease;
}


.history-card:hover .history-card-overlay {
    opacity: 0.75;
}


.history-card::before {
    content: "";

    position: absolute;

    inset: 17px;

    z-index: 3;

    border:
        1px solid rgba(255, 255, 255, 0.38);

    pointer-events: none;

    transition:
        inset 0.6s var(--r-ease),
        border-color 0.5s ease;
}


.history-card:hover::before {
    inset: 11px;

    border-color:
        rgba(235, 207, 137, 0.78);
}


.history-card figcaption {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 30px;

    z-index: 5;

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

    gap: 15px;

    color: #ffffff;

    transition:
        transform 0.5s var(--r-ease);
}


.history-card:hover figcaption {
    transform: translateY(-8px);
}


.history-card figcaption > span {
    color: var(--r-gold-light);

    font-family: "Cinzel", serif;

    font-size: 34px;
}


.history-card figcaption strong {
    display: block;

    font-size: 18px;

    font-weight: 600;
}


.history-card figcaption small {
    display: block;

    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.65);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}


/* ============================================================
   WITTENBERG
============================================================ */

.wittenberg-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;

    background:
        var(--r-burgundy-dark);
}


.wittenberg-image {
    position: relative;

    min-height: 620px;

    overflow: hidden;
}


.wittenberg-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.3s var(--r-ease),
        filter 1s ease;
}


.wittenberg-section:hover .wittenberg-image img {
    transform: scale(1.055);

    filter:
        saturate(1.06)
        contrast(1.04);
}


.wittenberg-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 40%,
            rgba(43, 8, 14, 0.78)
        );
}


.wittenberg-image::after {
    content: "";

    position: absolute;

    inset: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    pointer-events: none;
}


.wittenberg-caption {
    position: absolute;

    left: 40px;
    bottom: 38px;

    z-index: 4;
}


.wittenberg-caption span {
    display: block;

    color:
        rgba(255, 255, 255, 0.65);

    font-family: "Poppins", sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;
}


.wittenberg-caption strong {
    display: block;

    margin-top: 5px;

    color: var(--r-gold-light);

    font-size: 46px;
}


.wittenberg-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 80px;

    color: #ffffff;
}


.wittenberg-content .section-kicker {
    color: var(--r-gold-light);
}


.wittenberg-content .section-kicker::before {
    background: var(--r-gold-light);
}


.wittenberg-content h2 {
    margin: 23px 0 28px;

    color: #fff8e9;

    font-size:
        clamp(46px, 5vw, 67px);

    line-height: 0.92;
}


.wittenberg-content h2 em {
    display: block;

    color: var(--r-gold-light);

    font-style: normal;
}


.wittenberg-content p {
    max-width: 500px;

    color:
        rgba(255, 248, 235, 0.70);

    font-size: 13px;

    line-height: 1.95;
}


.wittenberg-fact {
    margin-top: 35px;

    display: flex;
    align-items: center;

    gap: 17px;
}


.wittenberg-fact > span {
    color: var(--r-gold-light);

    font-family: "Cinzel", serif;

    font-size: 60px;

    line-height: 0.8;
}


.wittenberg-fact div {
    padding-left: 17px;

    border-left:
        1px solid rgba(214, 183, 109, 0.4);
}


.wittenberg-fact strong,
.wittenberg-fact small {
    display: block;
}


.wittenberg-fact strong {
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    letter-spacing: 3px;
}


.wittenberg-fact small {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.45);

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    letter-spacing: 2px;
}


/* ============================================================
   TIMELINE
============================================================ */

.timeline-section {
    padding: 145px 30px;

    background: var(--r-bg-dark);

    border-top:
        1px solid var(--r-border);

    border-bottom:
        1px solid var(--r-border);
}


.timeline-header {
    max-width: 1100px;

    margin: 0 auto;
}


.timeline-header h2 {
    margin: 20px 0 12px;

    color: var(--r-ink);

    font-size:
        clamp(52px, 6vw, 75px);

    line-height: 0.9;
}


.timeline-header h2 em {
    color: var(--r-burgundy);

    font-style: normal;
}


.timeline-header p {
    color: var(--r-muted);

    font-size: 12px;
}


.timeline {
    position: relative;

    max-width: 1100px;

    margin: 70px auto 0;
}


.timeline::before {
    content: "";

    position: absolute;

    left: 31px;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--r-gold),
            transparent
        );
}


.timeline-item {
    position: relative;

    min-height: 180px;

    display: grid;

    grid-template-columns: 64px 1fr;

    gap: 35px;
}


.timeline-marker {
    width: 63px;
    height: 63px;

    display: grid;
    place-items: center;

    z-index: 2;

    border:
        1px solid var(--r-gold);

    border-radius: 50%;

    background: var(--r-bg-dark);

    color: var(--r-burgundy);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s var(--r-ease),
        box-shadow 0.4s ease;
}


.timeline-item:hover .timeline-marker {
    background: var(--r-burgundy);

    color: #ffffff;

    transform: scale(1.10);

    box-shadow:
        0 12px 30px rgba(101, 29, 40, 0.20);
}


.timeline-content > span {
    color: var(--r-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}


.timeline-content h3 {
    margin: 9px 0;

    color: var(--r-ink);

    font-size: 29px;

    font-weight: 600;
}


.timeline-content p {
    max-width: 650px;

    color: var(--r-text);

    font-size: 12px;

    line-height: 1.9;
}


/* ============================================================
   FIVE SOLAS
============================================================ */

.solas-section {
    padding: 140px 30px;

    background: var(--r-paper);
}


.solas-heading {
    max-width: 1100px;

    margin: 0 auto;
}


.solas-heading h2 {
    margin: 20px 0;

    color: var(--r-ink);

    font-size:
        clamp(50px, 6vw, 72px);

    line-height: 0.9;
}


.solas-heading h2 em {
    color: var(--r-burgundy);

    font-style: normal;
}


.solas-heading p {
    max-width: 580px;

    color: var(--r-muted);

    font-size: 12px;

    line-height: 1.9;
}


.solas-grid {
    max-width: 1100px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top:
        1px solid var(--r-border);

    border-bottom:
        1px solid var(--r-border);
}


.sola-card {
    position: relative;

    min-height: 300px;

    padding: 38px 20px;

    text-align: center;

    border-left:
        1px solid var(--r-border);

    background: transparent;

    transition:
        background 0.45s ease,
        transform 0.45s var(--r-ease),
        box-shadow 0.45s ease;
}


.sola-card:last-child {
    border-right:
        1px solid var(--r-border);
}


.sola-card:hover {
    z-index: 3;

    background: #f4ecdd;

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(58, 39, 21, 0.12);
}


.sola-card > span {
    display: block;

    color: var(--r-gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


.sola-card strong {
    display: block;

    margin: 20px 0 7px;

    color: var(--r-burgundy);

    font-size: 18px;
}


.sola-card small {
    display: block;

    color: var(--r-muted);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 1px;
}


.sola-card p {
    max-width: 160px;

    margin: 27px auto 0;

    color: var(--r-text);

    font-size: 10px;

    line-height: 1.8;
}


/* ============================================================
   VENUE
============================================================ */

.venue-section {
    position: relative;

    width:
        min(1320px, calc(100% - 60px));

    margin:
        120px auto 150px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: stretch;

    overflow: hidden;

    background: var(--r-paper);

    border:
        1px solid rgba(54, 39, 27, 0.12);

    box-shadow:
        0 28px 75px rgba(32, 22, 18, 0.12);
}


/* ============================================================
   VENUE TOP ACCENT
============================================================ */

.venue-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    z-index: 10;

    background:
        linear-gradient(
            90deg,
            var(--r-burgundy-dark),
            var(--r-gold),
            var(--r-burgundy-dark)
        );
}


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

.venue-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    background: #3a1820;
}


.venue-image img {
    width: 100%;
    height: 100%;

    display: block;

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

    transition:
        transform 1.2s var(--r-ease),
        filter 0.8s ease;
}


.venue-section:hover .venue-image img {
    transform: scale(1.05);

    filter:
        saturate(1.08)
        contrast(1.04);
}


/* ============================================================
   VENUE IMAGE OVERLAY
============================================================ */

.venue-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(43, 10, 17, 0.92) 0%,
            rgba(43, 10, 17, 0.45) 35%,
            rgba(43, 10, 17, 0.06) 75%
        );
}


/* ============================================================
   VENUE FRAME
============================================================ */

.venue-frame {
    position: absolute;

    inset: 18px;

    z-index: 4;

    border:
        1px solid rgba(255, 239, 193, 0.62);

    pointer-events: none;

    transition:
        inset 0.6s var(--r-ease),
        border-color 0.5s ease;
}


.venue-section:hover .venue-frame {
    inset: 12px;

    border-color:
        rgba(255, 220, 145, 0.90);
}


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

.venue-image-caption {
    position: absolute;

    left: 38px;
    bottom: 38px;

    z-index: 5;
}


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

    margin-bottom: 7px;

    color:
        rgba(255, 248, 233, 0.78);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;
}


.venue-image-caption strong {
    display: block;

    color: var(--r-gold-light);

    font-size:
        clamp(58px, 6vw, 82px);

    line-height: 0.82;

    font-weight: 600;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.4);
}


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

    margin-top: 12px;

    color:
        rgba(255, 248, 233, 0.72);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;
}


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

.venue-content {
    position: relative;

    padding: 70px 65px;

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

    background: var(--r-paper);
}


/* ============================================================
   VENUE SIDE ACCENT
============================================================ */

.venue-content::before {
    content: "";

    position: absolute;

    left: 0;

    top: 70px;
    bottom: 70px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--r-gold),
            transparent
        );

    opacity: 0.7;
}


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

.venue-content h2 {
    margin: 20px 0 28px;

    color: #29241f;

    font-family: "Cinzel", serif;

    font-size:
        clamp(46px, 5vw, 68px);

    line-height: 0.92;

    letter-spacing: -1.5px;

    font-weight: 600;
}


.venue-content h2 em {
    display: block;

    color: var(--r-burgundy);

    font-style: normal;
}


/* ============================================================
   VENUE INTRO
============================================================ */

.venue-intro {
    max-width: 500px;

    margin-bottom: 8px;

    color: #5b544c;

    font-size: 12px;

    line-height: 1.9;
}


/* ============================================================
   VENUE DETAILS
============================================================ */

.venue-details {
    margin-top: 28px;

    border-top:
        1px solid rgba(54, 39, 27, 0.15);
}


.venue-detail {
    min-height: 58px;

    padding: 16px 0;

    display: grid;

    grid-template-columns:
        100px minmax(0, 1fr);

    align-items: center;

    gap: 20px;

    border-bottom:
        1px solid rgba(54, 39, 27, 0.11);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}


.venue-detail:hover {
    padding-left: 9px;

    background:
        rgba(174, 132, 53, 0.045);
}


.venue-detail span {
    color: var(--r-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.venue-detail strong {
    max-width: 320px;

    color: #342d27;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.55;

    font-weight: 600;

    text-align: right;
}


/* ============================================================
   VENUE ADDRESS
============================================================ */

.venue-address {
    margin-top: 24px;

    padding-top: 20px;

    border-top:
        1px solid rgba(54, 39, 27, 0.12);
}


.venue-address > span {
    display: block;

    margin-bottom: 8px;

    color: var(--r-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.venue-address p {
    margin: 0;

    color: #625b52;

    font-size: 10px;

    line-height: 1.8;
}


/* ============================================================
   VENUE STATUS
============================================================ */

.venue-status {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #70685e;

    font-size: 9px;
    font-weight: 500;
}


.venue-status > span {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--r-gold);

    box-shadow:
        0 0 0 5px rgba(184, 142, 61, 0.12);

    animation:
        pulseRing 2s infinite;
}


/* ============================================================
   FINAL INVITATION
============================================================ */

.final-invitation {
    position: relative;

    min-height: 780px;

    padding: 140px 30px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    background:
        var(--r-burgundy-dark);

    isolation: isolate;
}


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

.final-bg {
    position: absolute;

    inset: 0;

    z-index: -3;

    background:
        radial-gradient(
            circle at center,
            rgba(213, 180, 100, 0.22),
            transparent 30%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(255, 255, 255, 0.05),
            transparent 25%
        );
}


/* ============================================================
   FINAL RINGS
============================================================ */

.final-ring {
    position: absolute;

    border:
        1px solid rgba(231, 205, 142, 0.13);

    border-radius: 50%;

    pointer-events: none;
}


.final-ring-one {
    width: 650px;
    height: 650px;

    animation:
        floating 9s ease-in-out infinite alternate;
}


.final-ring-two {
    width: 900px;
    height: 900px;
}


/* ============================================================
   FINAL CROSS
============================================================ */

.final-cross {
    width: 60px;
    height: 60px;

    margin-bottom: 25px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--r-gold-light);

    color: var(--r-gold-light);

    font-size: 23px;

    transition:
        transform 0.5s var(--r-ease),
        background 0.4s ease;
}


.final-invitation:hover .final-cross {
    transform: rotate(45deg);

    background:
        rgba(214, 183, 109, 0.10);
}


/* ============================================================
   FINAL KICKER
============================================================ */

.final-invitation .section-kicker {
    color: var(--r-gold-light);
}


.final-invitation .section-kicker::before {
    background: var(--r-gold-light);
}


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

.final-invitation h2 {
    position: relative;

    z-index: 2;

    margin: 25px 0;

    color: #fff8eb;

    font-size:
        clamp(64px, 8vw, 110px);

    line-height: 0.78;

    font-weight: 600;
}


.final-invitation h2 em {
    color: var(--r-gold-light);

    font-style: normal;
}


.final-invitation > p {
    max-width: 550px;

    color:
        rgba(255, 248, 235, 0.72);

    font-size: 13px;

    line-height: 1.95;
}


/* ============================================================
   FINAL DATE
============================================================ */

.final-date {
    margin-top: 34px;

    display: flex;
    align-items: center;

    gap: 17px;
}


.final-date > strong {
    color: var(--r-gold-light);

    font-size: 72px;

    line-height: 0.8;
}


.final-date div {
    padding-left: 17px;

    border-left:
        1px solid rgba(214, 183, 109, 0.45);

    text-align: left;
}


.final-date span,
.final-date small {
    display: block;
}


.final-date span {
    color:
        rgba(255, 255, 255, 0.75);

    font-family: "Poppins", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.final-date small {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.45);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


/* ============================================================
   FINAL LOCATION
============================================================ */

.final-location {
    margin-top: 30px;

    display: flex;
    align-items: center;

    gap: 15px;

    color: var(--r-gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.final-location i {
    width: 38px;
    height: 1px;

    background: var(--r-gold-light);
}


/* ============================================================
   FINAL INVITATION NOTE
============================================================ */

.final-invitation-note {
    margin-top: 42px;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #ffffff;

    font-family: "Cinzel", serif;

    font-size: 22px;
}


.final-invitation-note span {
    color: var(--r-gold-light);

    font-size: 10px;
}


/* ============================================================
   FINAL TIMING
============================================================ */

.final-timing {
    margin-top: 18px;

    padding: 11px 20px;

    border:
        1px solid rgba(230, 207, 148, 0.42);

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--r-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    transition:
        background 0.35s ease,
        transform 0.35s var(--r-ease),
        border-color 0.35s ease;
}


.final-timing:hover {
    background:
        rgba(230, 207, 148, 0.12);

    border-color:
        var(--r-gold-light);

    transform:
        translateY(-3px);
}


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

.reformation-footer {
    padding: 28px 45px;

    display: flex;
    justify-content: space-between;

    background: #ebe4d6;

    border-top:
        1px solid var(--r-border);

    color: var(--r-muted);

    font-size: 9px;

    letter-spacing: 1px;
}


.reformation-footer span:last-child {
    color: var(--r-burgundy);

    font-weight: 600;
}


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

@media (max-width: 1000px) {

    /* HEADER */

    .reformation-nav {
        padding: 20px 28px;
    }


    /* HERO */

    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-side-label {
        display: none;
    }

    .hero-bottom {
        left: 40px;
        right: 40px;
    }


    /* INTRO */

    .reformation-intro {
        padding-left: 35px;
        padding-right: 35px;
    }


    /* HISTORY */

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

    .history-feature-image {
        height: 560px;
    }

    .history-feature-content {
        z-index: 3;

        margin:
            -60px 35px 0;
    }


    /* VISUAL HISTORY */

    .history-gallery {
        min-height: 650px;
    }


    /* WITTENBERG */

    .wittenberg-section {
        grid-template-columns: 1fr;
    }

    .wittenberg-image {
        min-height: 500px;
    }


    /* SOLAS */

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

    .sola-card:nth-child(4),
    .sola-card:nth-child(5) {
        border-top:
            1px solid var(--r-border);
    }


    /* VENUE */

    .venue-section {
        grid-template-columns: 1fr;

        width:
            min(92%, 760px);

        margin:
            90px auto 110px;
    }

    .venue-image {
        height: 520px;
    }

    .venue-content {
        padding:
            60px 50px;
    }

    .venue-content::before {
        display: none;
    }


    /* FINAL */

    .final-invitation {
        min-height: 720px;
    }
}


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

@media (max-width: 650px) {

    /* HEADER */

    .reformation-header {
        background:
            linear-gradient(
                to bottom,
                rgba(30, 7, 11, 0.97),
                rgba(30, 7, 11, 0.78),
                transparent
            );
    }

    .reformation-nav {
        padding:
            16px 20px;
    }

    .reformation-menu {
        display: none;
    }

    .brand-cross {
        width: 37px;
        height: 37px;
    }

    .brand-text strong {
        font-size: 12px;
    }


    /* HERO */

    .reformation-hero {
        min-height: 850px;
    }

    .hero-bg {
        background-position:
            58% center;
    }

    .hero-frame {
        inset: 14px;
    }

    .hero-content {
        padding:
            145px 25px 110px;
    }

    .hero-overline {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero-title h1 {
        font-size: 66px;
        letter-spacing: -2px;
    }

    .hero-title p {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .hero-description {
        max-width: 500px;

        font-size: 12px;

        line-height: 1.9;
    }

    .hero-history-label {
        margin-top: 22px;
    }

    .hero-bottom {
        left: 25px;
        right: 25px;

        flex-direction: column;

        gap: 7px;

        font-size: 7px;
    }


    /* INTRO */

    .reformation-intro {
        padding:
            90px 25px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .intro-content h2 {
        font-size: 48px;
    }

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

        gap: 18px;
    }


    /* HISTORY FEATURE */

    .history-feature {
        padding: 0 20px;

        margin-bottom: 100px;
    }

    .history-feature-image {
        height: 390px;
    }

    .history-feature-content {
        margin:
            -35px 15px 0;

        padding:
            55px 30px;
    }

    .history-number {
        font-size: 75px;

        right: 25px;
    }

    .history-feature-content h2 {
        font-size: 45px;
    }


    /* VISUAL HISTORY */

    .visual-history {
        padding:
            30px 20px 100px;
    }

    .visual-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .visual-heading h2 {
        font-size: 47px;
    }

    .visual-heading > p {
        max-width: 100%;
    }

    .history-gallery {
        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 20px;
    }

    .history-card {
        position: relative;

        width: 100%;
    }

    .history-card-main {
        height: 390px;
    }

    .history-card-secondary {
        height: 310px;

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


    /* WITTENBERG */

    .wittenberg-image {
        min-height: 380px;
    }

    .wittenberg-content {
        padding:
            70px 25px;
    }

    .wittenberg-content h2 {
        font-size: 45px;
    }

    .wittenberg-caption {
        left: 27px;
        bottom: 27px;
    }


    /* TIMELINE */

    .timeline-section {
        padding:
            90px 25px;
    }

    .timeline-header h2 {
        font-size: 48px;
    }

    .timeline {
        margin-top: 55px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns:
            50px 1fr;

        gap: 20px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;

        font-size: 7px;
    }

    .timeline-content h3 {
        font-size: 25px;
    }

    .timeline-content p {
        font-size: 11px;
    }


    /* SOLAS */

    .solas-section {
        padding:
            90px 20px;
    }

    .solas-heading h2 {
        font-size: 47px;
    }

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

        margin-top: 45px;
    }

    .sola-card {
        min-height: 250px;

        padding:
            30px 13px;
    }

    .sola-card:nth-child(5) {
        grid-column:
            1 / -1;

        border-right:
            1px solid var(--r-border);
    }


    /* VENUE */

    .venue-section {
        width:
            calc(100% - 30px);

        margin:
            70px auto 100px;
    }

    .venue-image {
        height: 370px;
    }

    .venue-frame {
        inset: 12px;
    }

    .venue-image-caption {
        left: 27px;
        bottom: 27px;
    }

    .venue-image-caption span {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .venue-image-caption strong {
        font-size: 58px;
    }

    .venue-image-caption small {
        font-size: 7px;
        letter-spacing: 2.5px;
    }

    .venue-content {
        padding:
            55px 25px 45px;
    }

    .venue-content h2 {
        margin:
            16px 0 25px;

        font-size: 46px;

        letter-spacing: -1px;
    }

    .venue-intro {
        font-size: 11px;

        line-height: 1.8;
    }

    .venue-details {
        margin-top: 24px;
    }

    .venue-detail {
        grid-template-columns: 1fr;

        gap: 7px;

        padding:
            15px 0;
    }

    .venue-detail strong {
        max-width: none;

        text-align: left;

        font-size: 10px;
    }

    .venue-address p {
        font-size: 9px;

        line-height: 1.75;
    }


    /* FINAL INVITATION */

    .final-invitation {
        min-height: 720px;

        padding:
            100px 25px;
    }

    .final-cross {
        width: 52px;
        height: 52px;
    }

    .final-invitation h2 {
        font-size: 67px;
    }

    .final-invitation > p {
        font-size: 12px;
    }

    .final-location {
        flex-direction: column;

        gap: 10px;
    }

    .final-location i {
        width: 40px;
    }

    .final-invitation-note {
        font-size: 20px;
    }

    .final-date > strong {
        font-size: 62px;
    }

    .final-ring-one {
        width: 420px;
        height: 420px;
    }

    .final-ring-two {
        width: 590px;
        height: 590px;
    }


    /* FOOTER */

    .reformation-footer {
        padding:
            25px 20px;

        flex-direction: column;

        gap: 10px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
============================================================ */

@media (max-width: 380px) {

    .hero-title h1 {
        font-size: 57px;
    }

    .hero-date-number {
        font-size: 55px;
    }

    .hero-description {
        font-size: 11px;
    }

    .intro-content h2 {
        font-size: 42px;
    }

    .history-feature-content h2 {
        font-size: 41px;
    }

    .visual-heading h2 {
        font-size: 42px;
    }

    .timeline-header h2 {
        font-size: 42px;
    }

    .wittenberg-content h2 {
        font-size: 41px;
    }

    .venue-content h2 {
        font-size: 41px;
    }

    .venue-image-caption strong {
        font-size: 48px;
    }

    .final-invitation h2 {
        font-size: 59px;
    }

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

    .sola-card:nth-child(5) {
        grid-column: auto;
    }
}


/* ============================================================
   REDUCED MOTION
============================================================ */

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

    .reformation-page *,
    .reformation-page *::before,
    .reformation-page *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }
}
