/* ========================================================= */
/*  WORSHIP TEST PAGE — Reimagined Design                     */
/*  Design Language: Mayflower Hills Baptist Church            */
/*  Fonts: desire (display), Open Sans (body), Merriweather   */
/*  Palette: #191A13 (charcoal), #F2F1EA (cream),             */
/*           #a20000 (accent red), #fff                        */
/* ========================================================= */

@import url("../fonts/fonts.css");

@font-face {
    font-family: 'desire';
    src: url('../fonts/desire.eot');
    src: url('../fonts/desire.woff2') format('woff2'),
        url('../fonts/desire.woff') format('woff'),
        url('../fonts/desire.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ---- RESET SCOPE ---- */
.worship-test-page *,
.worship-test-page *::before,
.worship-test-page *::after {
    box-sizing: border-box;
}

.worship-test-page {
    overflow-x: hidden;
}

/* ---- PLUGIN OVERRIDES ---- */
/* Hide the floating scroll/mouse indicator injected by plugins */
.worship-test-page .scroll-indicator,
.worship-test-page .scroll-down-indicator,
.worship-test-page .scrolldown,
.worship-test-page [class*="scroll-indicator"],
.worship-test-page [class*="scrollDown"],
.worship-test-page .tt-scroll-indicator {
    display: none !important;
}

/* Override bible auto-linker plugin (RefTagger / rtBibleRef) */
.worship-test-page a.rtBibleRef,
.worship-test-page a.rtBibleRef:hover,
.worship-test-page a.rtBibleRef:visited,
.worship-test-page .wt-hero a,
.worship-test-page .wt-hero a:visited,
.worship-test-page .wt-hero a:hover,
.worship-test-page .wt-pullquote a,
.worship-test-page .wt-pullquote a:visited,
.worship-test-page .wt-pullquote a:hover {
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Ensure cite links in pullquote match the muted style */
.worship-test-page .wt-pullquote cite a,
.worship-test-page .wt-pullquote cite a:visited,
.worship-test-page .wt-pullquote cite a:hover {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
}

/* Hero ref links specifically */
.worship-test-page .wt-hero__ref a,
.worship-test-page .wt-hero__ref a:visited,
.worship-test-page .wt-hero__ref a:hover {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
}

/* Hide RefTagger Logos Bible Software link icons */
.worship-test-page .lbsLink,
.worship-test-page sup.lbsBibleRef,
.worship-test-page img[src*="LibronixLink"],
.worship-test-page img[src*="logos"],
.worship-test-page .rtTooltip,
.worship-test-page [class*="reftagger"],
.worship-test-page [id*="reftagger"] {
    display: none !important;
}

/* General link override for all sections — ensure no blue links leak through */
.worship-test-page a:not(.btn):not(.sermon-card):not(.view-all-sermons-link):not(.wt-hero__scroll) {
    color: inherit;
    text-decoration: none;
}

.worship-test-page .wt-hero a:not(.wt-hero__scroll),
.worship-test-page .wt-times a:not(.btn),
.worship-test-page .wt-pullquote a,
.worship-test-page .wt-pastor a {
    color: inherit !important;
    text-decoration: none !important;
}


/* ========================================================= */
/*  GLOBAL ANIMATION BASE CLASSES                              */
/* ========================================================= */

.wt-about__col,
.wt-pastor__image-col,
.wt-pastor__text-col,
.wt-pullquote__inner,
.wt-sermons__header {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wt-about__col.wt-visible,
.wt-pastor__image-col.wt-visible,
.wt-pastor__text-col.wt-visible,
.wt-pullquote__inner.wt-visible,
.wt-sermons__header.wt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger adjacent columns */
.wt-about__col:nth-child(2) {
    transition-delay: 0.15s;
}

.wt-pastor__text-col {
    transition-delay: 0.2s;
}


/* ========================================================= */
/*  SECTION 1: CINEMATIC HERO                                 */
/* ========================================================= */

.wt-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Extra height for parallax room */
    background: url('../images/sunrise.jpg') no-repeat center center;
    background-size: cover;
    will-change: transform;
    z-index: 0;
}

.wt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(25, 26, 19, 0.45) 0%,
            rgba(25, 26, 19, 0.3) 40%,
            rgba(25, 26, 19, 0.65) 100%);
    z-index: 1;
}

.wt-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: opacity, transform;
}

.wt-hero__label {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.wt-hero__title,
.worship-test-page .wt-hero h1 {
    font-family: 'desire', serif !important;
    font-size: clamp(3rem, 8vw, 6.5rem) !important;
    font-weight: normal !important;
    color: #fff !important;
    line-height: 1 !important;
    margin: 0 0 30px 0 !important;
    letter-spacing: -1px !important;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.wt-hero__scripture {
    max-width: 520px;
    animation: heroFadeIn 1s ease-out 0.8s both;
}

.wt-hero__scripture p {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
    margin: 0 0 12px 0;
    font-style: italic;
    letter-spacing: 0.02em;
}

.wt-hero__ref {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wt-hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    color: #fff !important;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
    z-index: 10;
    padding: 10px;
    animation: heroFadeIn 1s ease-out 1.1s both;
}

.wt-hero__scroll svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    color: #fff !important;
    stroke: #fff !important;
}

.wt-hero__scroll:hover {
    opacity: 0.7;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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


/* ========================================================= */
/*  SECTION 2: WORSHIP ETHOS                                  */
/* ========================================================= */

.wt-about {
    background-color: #F2F1EA;
    padding: 120px 0 100px 0;
    position: relative;
}

/* Subtle top edge pattern */
.wt-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a20000, transparent);
    opacity: 0.4;
}

.wt-about__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.wt-about__header {
    text-align: center;
    margin-bottom: 80px;
}

.wt-about__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 18px;
}

.wt-about__title {
    font-family: 'desire', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.wt-about__divider {
    width: 60px;
    height: 2px;
    background: #a20000;
    margin: 0 auto;
}

.wt-about__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.wt-about__col h3 {
    font-family: 'desire', serif;
    font-size: 2rem;
    font-weight: normal;
    color: #191A13;
    margin: 0 0 20px 0;
    line-height: 1;
}

.wt-about__col p {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.75;
    margin: 0 0 20px 0;
    letter-spacing: normal;
}

.wt-about__col p:last-child {
    margin-bottom: 0;
}


/* ========================================================= */
/*  SECTION 4: PASTOR BIO                                     */
/* ========================================================= */

.wt-pastor {
    background-color: #fff;
    padding: 120px 0;
    position: relative;
}

.wt-pastor__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.wt-pastor__image-frame {
    position: relative;
}

/* Decorative corner accent */
.wt-pastor__image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 70px;
    height: 70px;
    border-top: 2px solid #a20000;
    border-left: 2px solid #a20000;
    z-index: 1;
    opacity: 0.5;
}

.wt-pastor__image-frame::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 70px;
    height: 70px;
    border-bottom: 2px solid #a20000;
    border-right: 2px solid #a20000;
    z-index: 1;
    opacity: 0.5;
}

.wt-pastor__photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.wt-pastor__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 14px;
}

.wt-pastor__name {
    font-family: 'desire', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.wt-pastor__divider {
    width: 50px;
    height: 2px;
    background: #a20000;
    margin-bottom: 30px;
}

.wt-pastor__text-col p {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.75;
    margin: 0 0 22px 0;
    letter-spacing: normal;
}

.wt-pastor__text-col p:last-child {
    margin-bottom: 0;
}


/* ========================================================= */
/*  SECTION 5: PULL QUOTE                                     */
/* ========================================================= */

.wt-pullquote {
    position: relative;
    background: url('../images/background-two.png') no-repeat center center fixed;
    background-size: cover;
    padding: 140px 0;
    overflow: hidden;
}

.wt-pullquote__overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 26, 19, 0.7);
    z-index: 0;
}

.wt-pullquote__inner {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.wt-pullquote blockquote {
    margin: 0;
    padding: 0;
}

.wt-pullquote blockquote p {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 300;
    color: #fff !important;
    line-height: 1.9;
    margin: 0 0 30px 0;
    font-style: italic;
    letter-spacing: 0.015em;
}

.wt-pullquote blockquote cite {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5) !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
}


/* ========================================================= */
/*  SECTION 6: SERMON ARCHIVE                                 */
/* ========================================================= */

.wt-sermons {
    background-color: #F2F1EA;
    padding: 100px 0 80px 0;
}

.wt-sermons__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wt-sermons__header {
    text-align: center;
    margin-bottom: 20px;
}

.wt-sermons__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 14px;
}

.wt-sermons__title {
    font-family: 'desire', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: normal;
    color: #191A13;
    margin: 0;
    line-height: 1.1;
}

.wt-sermons__link-row {
    text-align: right;
    margin-bottom: 20px;
}


/* ========================================================= */
/*  SECTION 3: BIBLICAL MUSIC — INTRO                         */
/* ========================================================= */

.wt-music {
    background-color: #fff;
    padding: 130px 0 110px 0;
    position: relative;
}

/* Decorative top-edge gradient */
.wt-music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a20000, transparent);
    opacity: 0.35;
}

.wt-music__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Intro Header ---- */
.wt-music__intro {
    text-align: center;
    margin-bottom: 100px;
}

.wt-music__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 18px;
}

.wt-music__main-title {
    font-family: 'desire', serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 28px 0;
    line-height: 1;
}

.wt-music__divider {
    width: 60px;
    height: 2px;
    background: #a20000;
    margin: 0 auto 36px auto;
}

.wt-music__lead {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.85;
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

/* ---- Roles sub-header ---- */
.wt-music__roles-header {
    text-align: center;
    margin-bottom: 60px;
}

.wt-music__section-heading {
    font-family: 'desire', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 14px 0;
    line-height: 1.15;
}

.wt-music__section-sub {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Role Cards ---- */
.wt-music__roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.wt-music__role-card {
    background: #F2F1EA;
    padding: 48px 36px 42px 36px;
    position: relative;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.wt-music__role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.wt-music__role-number {
    font-family: 'desire', serif;
    font-size: 2.6rem;
    color: #a20000;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.7;
}

.wt-music__role-title {
    font-family: 'desire', serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: #191A13;
    margin: 0 0 16px 0;
    line-height: 1;
}

.wt-music__role-line {
    width: 36px;
    height: 2px;
    background: #a20000;
    margin: 0 auto 20px auto;
    opacity: 0.5;
}

.wt-music__role-card p {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin: 0;
}


/* ========================================================= */
/*  SECTION 3B: DISTINCTIVE STANDARDS (dark cinematic)        */
/* ========================================================= */

.wt-standards {
    position: relative;
    background: url('../images/background-two.png') no-repeat center center fixed;
    background-size: cover;
    padding: 130px 0;
    overflow: hidden;
}

.wt-standards__overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 26, 19, 0.82);
    z-index: 0;
}

.wt-standards__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.wt-standards__header {
    text-align: center;
    margin-bottom: 70px;
}

.wt-standards__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(162, 0, 0, 0.85);
    display: block;
    margin-bottom: 16px;
}

.wt-standards__title {
    font-family: 'desire', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: normal;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.wt-standards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.wt-standards__item {
    text-align: center;
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    transition: border-color 0.4s ease,
                background 0.4s ease;
}

.wt-standards__item:hover {
    border-color: rgba(162, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.wt-standards__item h4 {
    font-family: 'desire', serif;
    font-size: 1.6rem;
    font-weight: normal;
    color: #fff !important;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.wt-standards__item p {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 0.98rem;
    color: #fff !important;
    line-height: 1.75;
    margin: 0;
}


/* ========================================================= */
/*  SECTION 3C: VOICE OF THE CHURCH                           */
/* ========================================================= */

.wt-voice {
    background-color: #F2F1EA;
    padding: 130px 0;
    position: relative;
}

.wt-voice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a20000, transparent);
    opacity: 0.3;
}

.wt-voice__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.wt-voice__content {
    text-align: center;
}

.wt-voice__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 16px;
}

.wt-voice__title {
    font-family: 'desire', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 28px 0;
    line-height: 1.05;
}

.wt-voice__divider {
    width: 60px;
    height: 2px;
    background: #a20000;
    margin: 0 auto 36px auto;
}

.wt-voice__text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: #333;
    line-height: 1.9;
    margin: 0 0 22px 0;
    font-style: italic;
    letter-spacing: 0.01em;
}

.wt-voice__text:last-child {
    margin-bottom: 0;
}


/* ========================================================= */
/*  SECTION 3D: LEADERSHIP                                    */
/* ========================================================= */

.wt-leadership {
    background-color: #fff;
    padding: 110px 0;
    position: relative;
}

.wt-leadership__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}

.wt-leadership__content {
    text-align: center;
}

.wt-leadership__eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a20000;
    display: block;
    margin-bottom: 16px;
}

.wt-leadership__title {
    font-family: 'desire', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: normal;
    color: #191A13;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.wt-leadership__divider {
    width: 50px;
    height: 2px;
    background: #a20000;
    margin: 0 auto 34px auto;
}

.wt-leadership__content p {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin: 0 0 22px 0;
    text-align: left;
}

.wt-leadership__content p:last-child {
    margin-bottom: 0;
}


/* ========================================================= */
/*  MUSIC SECTION — ANIMATION BASE                            */
/* ========================================================= */

.wt-music__anim {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wt-music__anim.wt-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered delays via data-delay attribute */
.wt-music__anim[data-delay="1"] {
    transition-delay: 0.15s;
}

.wt-music__anim[data-delay="2"] {
    transition-delay: 0.3s;
}

/* Intro elements get a staged cascade via CSS animation */
.wt-music__intro {
    animation: musicIntroReveal 1s ease-out 0.2s both;
}

.wt-music__roles-header {
    animation: musicIntroReveal 1s ease-out 0.4s both;
}

@keyframes musicIntroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================================= */
/*  RESPONSIVE BREAKPOINTS                                    */
/* ========================================================= */

/* ---- TABLET (1024px) ---- */
@media (max-width: 1024px) {
    .wt-about__columns {
        gap: 50px;
    }

    .wt-pastor__inner {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .wt-music__roles {
        gap: 30px;
    }

    .wt-standards__grid {
        gap: 30px;
    }
}


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

    .wt-hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .wt-hero__scripture p {
        font-size: 0.95rem;
    }

    /* About Section */
    .wt-about {
        padding: 80px 0 70px 0;
    }

    .wt-about__inner {
        padding: 0 25px;
    }

    .wt-about__header {
        margin-bottom: 50px;
    }

    .wt-about__columns {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Music Sections */
    .wt-music {
        padding: 80px 0 70px 0;
    }

    .wt-music__inner {
        padding: 0 25px;
    }

    .wt-music__intro {
        margin-bottom: 60px;
    }

    .wt-music__roles {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wt-music__role-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .wt-standards {
        padding: 80px 0;
    }

    .wt-standards__inner {
        padding: 0 25px;
    }

    .wt-standards__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wt-standards__item {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .wt-voice {
        padding: 80px 0;
    }

    .wt-voice__inner {
        padding: 0 25px;
    }

    .wt-leadership {
        padding: 70px 0;
    }

    .wt-leadership__inner {
        padding: 0 25px;
    }

    /* Pastor */
    .wt-pastor {
        padding: 80px 0;
    }

    .wt-pastor__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 25px;
    }

    .wt-pastor__image-frame {
        max-width: 350px;
        margin: 0 auto;
    }

    .wt-pastor__text-col {
        text-align: left;
    }

    .wt-pastor__name {
        text-align: center;
    }

    .wt-pastor__eyebrow {
        text-align: center;
    }

    .wt-pastor__divider {
        margin: 0 auto 30px auto;
    }

    /* Pull Quote */
    .wt-pullquote {
        padding: 80px 0;
    }

    .wt-pullquote__inner {
        padding: 0 25px;
    }

    .wt-pullquote blockquote p {
        font-size: 1.1rem;
    }

    /* Sermons */
    .wt-sermons {
        padding: 70px 0 50px 0;
    }
}


/* ---- SMALL MOBILE (480px) ---- */
@media (max-width: 480px) {

    .wt-hero__label {
        font-size: 0.7rem;
    }

    .wt-hero__title {
        font-size: 2.8rem;
    }

    .wt-about__title,
    .wt-sermons__title {
        font-size: 2.2rem;
    }

    .wt-about__col h3 {
        font-size: 1.6rem;
    }

    .wt-pastor__name {
        font-size: 1.8rem;
    }

    .wt-pullquote blockquote p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .wt-hero__scroll svg {
        width: 36px;
        height: 36px;
    }

    /* Music small mobile */
    .wt-music__main-title {
        font-size: 2.4rem;
    }

    .wt-music__section-heading {
        font-size: 1.6rem;
    }

    .wt-music__role-card {
        padding: 36px 24px 32px 24px;
    }

    .wt-music__role-number {
        font-size: 2rem;
    }

    .wt-music__role-title {
        font-size: 1.5rem;
    }

    .wt-standards__title {
        font-size: 1.8rem;
    }

    .wt-standards__item {
        padding: 30px 20px;
    }

    .wt-standards__item h4 {
        font-size: 1.3rem;
    }

    .wt-voice__title {
        font-size: 1.8rem;
    }

    .wt-leadership__title {
        font-size: 1.8rem;
    }
}