:root {
    --black: #0f0e0c;
    --black-soft: #171613;
    --panel: #1d1b18;
    --ivory: #f4efe5;
    --cream: #d9d1c3;
    --muted: #aaa294;
    --gold: #b9a271;
    --border: rgba(255,255,255,.11);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--black);
    color-scheme: dark;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--ivory);
    font-family: Georgia, "Times New Roman", serif;
    -webkit-font-smoothing: antialiased;
}

.hero {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 15%,
            #39342b 0,
            #1c1a17 42%,
            #0f0e0c 78%
        );
}

.hero-inner {
    width: min(100%, 1050px);
    padding: 70px 24px;
}

.eyebrow,
.small-heading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: .19em;
}

.eyebrow {
    color: var(--gold);
    font-size: 13px;
}

.hero h1 {
    margin: 20px 0 12px;
    font-size: clamp(50px, 8vw, 92px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.025em;
}

.dates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    color: var(--cream);
    font-size: clamp(17px, 2vw, 22px);
}

.date-divider {
    color: var(--gold);
    font-size: 8px;
}

.gold-rule {
    width: 76px;
    height: 1px;
    margin: 30px auto;
    background: var(--gold);
}

.hero h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
}

.service-info,
.location {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.8;
    font-size: 16px;
}

.service-info {
    color: var(--cream);
}

.location {
    color: var(--muted);
}

.separator {
    margin: 0 7px;
    color: var(--gold);
}

main {
    width: min(calc(100% - 36px), 1320px);
    margin: 0 auto;
}

.broadcast {
    padding: 62px 0 48px;
}

.broadcast-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.small-heading {
    color: var(--gold);
    font-size: 11px;
}

.broadcast-heading h2 {
    margin: 7px 0 0;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #747474;
}

.status-pill.live {
    color: #fff;
}

.status-pill.live .status-dot {
    background: #d84e43;
    box-shadow: 0 0 0 4px rgba(216,78,67,.14);
}

.broadcast-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, .8fr);
    gap: 22px;
    align-items: stretch;
}

.video-side,
.chat-side {
    min-width: 0;
}

.video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

#memorialVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.offline-screen {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            #29251e 0,
            #11100e 70%
        );
}

.offline-screen.hidden {
    display: none;
}

.offline-inner {
    width: min(90%, 560px);
    padding: 28px;
    text-align: center;
}

.initials {
    width: 72px;
    height: 72px;
    margin: 0 auto 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 23px;
}

.offline-inner h3 {
    margin: 0 0 12px;
    font-size: clamp(25px, 4vw, 38px);
    font-weight: 400;
}

.offline-inner p {
    max-width: 470px;
    margin: 0 auto;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

.watch-button {
    margin-top: 24px;
    padding: 13px 25px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    background: var(--gold);
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.video-info {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 17px;
    border: 1px solid var(--border);
    border-top: 0;
    background: var(--black-soft);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.video-info strong,
.video-info span {
    display: block;
}

.video-info span,
.viewer-count {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.chat-side {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    background: var(--black-soft);
}

.chat-title {
    padding: 20px 21px 8px;
}

.chat-title h3 {
    margin: 5px 0 0;
    font-size: 24px;
    font-weight: 400;
}

.chat-description {
    margin: 0;
    padding: 0 21px 17px;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

.chat-frame-container {
    flex: 1;
    min-height: 470px;
    border-top: 1px solid var(--border);
    background: #111;
}

.chat-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
}

.remembrance {
    max-width: 820px;
    margin: 18px auto 55px;
    padding: 28px 0;
    text-align: center;
}

.remembrance .gold-rule {
    margin-bottom: 34px;
}

.remembrance h2 {
    margin: 9px 0 0;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 400;
}

.remembrance p {
    margin: 22px auto 0;
    color: var(--cream);
    font-size: 18px;
    line-height: 1.8;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 36px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.detail {
    padding: 25px 20px;
    text-align: center;
}

.detail + .detail {
    border-left: 1px solid var(--border);
}

.detail span {
    display: block;
    margin-bottom: 9px;
    color: var(--gold);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.detail strong {
    font-size: 17px;
    font-weight: 400;
}

.privacy {
    margin: 0 0 58px;
    text-align: center;
    color: #777168;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 12px;
}

footer {
    padding: 34px 20px 45px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 12px;
}

.footer-initials {
    width: 43px;
    height: 43px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 14px;
}

@media (max-width: 900px) {

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

    .chat-frame-container,
    .chat-frame {
        height: 440px;
        min-height: 440px;
    }

    .broadcast-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .detail + .detail {
        border-left: 0;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 560px) {

    .hero {
        min-height: 410px;
    }

    .hero-inner {
        padding: 54px 18px;
    }

    .dates {
        gap: 8px;
        font-size: 16px;
    }

    .service-info {
        display: flex;
        flex-direction: column;
    }

    .service-info .separator {
        display: none;
    }

    main {
        width: calc(100% - 22px);
    }

    .broadcast {
        padding-top: 42px;
    }

    .video-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .chat-title {
        padding-top: 18px;
    }

    .remembrance p {
        font-size: 17px;
    }
}

.chat-name-gate {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    background:
        radial-gradient(
            circle at center,
            #29251e 0,
            #141310 72%
        );
}

.chat-name-gate[hidden] {
    display: none;
}

.chat-name-inner {
    width: 100%;
    max-width: 310px;
    text-align: center;
}

.small-initials {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    font-size: 16px;
}

.chat-name-inner h4 {
    margin: 0 0 10px;
    color: var(--ivory);
    font-size: 24px;
    font-weight: 400;
}

.chat-name-inner p {
    margin: 0 0 23px;
    color: var(--muted);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

.guest-name-label {
    display: block;
    margin-bottom: 7px;
    text-align: left;
    color: var(--gold);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.guest-name-input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 3px;
    outline: none;
    background: rgba(0,0,0,.28);
    color: #fff;
    font-size: 16px;
}

.guest-name-input:focus {
    border-color: var(--gold);
}

.guest-name-error {
    min-height: 20px;
    margin-top: 7px;
    color: #d99088;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 12px;
}

.join-chat-button {
    width: 100%;
    margin-top: 7px;
    padding: 13px 18px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    background: var(--gold);
    color: #11100e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.join-chat-button:hover {
    filter: brightness(1.07);
}


/* =========================================================
   RONALD KERR MEMORIAL
   HAWAIIAN SUNSET THEME
   ========================================================= */

:root {
    --black: #0b1d1c;
    --black-soft: #102826;
    --panel: #16312e;

    --ivory: #fff5e7;
    --cream: #f3dcc0;
    --muted: #bfb09c;

    --gold: #f2c45c;

    --coral: #ef7d67;
    --hibiscus: #d75c7d;
    --ocean: #3eb8b1;
    --ocean-soft: #74d2c9;
    --palm: #698e61;

    --border: rgba(255, 241, 218, .15);
}


/* Deep tropical evening background */

html,
body {
    background:
        linear-gradient(
            180deg,
            #091918 0%,
            #0d2422 45%,
            #091918 100%
        );
}


/* Hawaiian sunset glow behind memorial heading */

.hero {
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(239,125,103,.18),
            transparent 36%
        ),
        radial-gradient(
            circle at 82% 15%,
            rgba(62,184,177,.15),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #102725 0%,
            #0b1d1c 100%
        );
}


/* Main name retains dignity but feels warmer */

.hero h1 {
    color: var(--ivory);
    text-shadow:
        0 2px 22px rgba(0,0,0,.28);
}


/* Hawaiian sunset accent rule */

.gold-rule {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--ocean),
            var(--gold),
            var(--coral),
            var(--hibiscus),
            transparent
        );
}


/* Small headings */

.eyebrow,
.detail span,
.guest-name-label {
    color: var(--ocean-soft);
}


/* Broadcast area */

.broadcast {
    background:
        linear-gradient(
            145deg,
            rgba(22,49,46,.82),
            rgba(12,29,28,.95)
        );
}


/* Live indicator uses sunset coral */

.status-pill.live {
    border-color: rgba(239,125,103,.55);
    color: #ffd7cc;
    background: rgba(239,125,103,.12);
}

.status-pill.live .dot {
    background: var(--coral);
    box-shadow:
        0 0 0 4px rgba(239,125,103,.13),
        0 0 12px rgba(239,125,103,.65);
}


/* Video frame gets a subtle ocean edge */

.video-shell {
    border-color: rgba(62,184,177,.26);
    box-shadow:
        0 22px 55px rgba(0,0,0,.28);
}


/* Chat panel */

.chat-column {
    background:
        linear-gradient(
            180deg,
            rgba(22,49,46,.75),
            rgba(12,29,28,.96)
        );
}


/* Guest name screen */

.chat-name-gate {
    background:
        radial-gradient(
            circle at 50% 22%,
            rgba(239,125,103,.14),
            transparent 38%
        ),
        radial-gradient(
            circle at 75% 80%,
            rgba(62,184,177,.12),
            transparent 40%
        ),
        linear-gradient(
            160deg,
            #183330,
            #0b1d1c
        );
}


/* Initial medallions */

.initials,
.footer-initials {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow:
        0 0 22px rgba(242,196,92,.08);
}


/* Name entry */

.guest-name-input:focus {
    border-color: var(--ocean);
    box-shadow:
        0 0 0 2px rgba(62,184,177,.10);
}


/* Main action buttons */

.join-chat-button,
#watchButton {
    border-color: var(--coral);
    background:
        linear-gradient(
            135deg,
            var(--coral),
            var(--hibiscus)
        );
    color: #fff;
}

.join-chat-button:hover,
#watchButton:hover {
    filter: brightness(1.08);
}


/* Remembrance section */

.remembrance {
    position: relative;
}

.remembrance h2 {
    color: var(--ivory);
}

.remembrance p {
    color: var(--cream);
}


/* Service information */

.service-details {
    background:
        rgba(16,40,38,.48);
}

.detail strong {
    color: var(--ivory);
}


/* Footer */

footer {
    background: #081716;
}

.footer-initials {
    border-color: var(--ocean);
    color: var(--ocean-soft);
}



/* ==========================================================
   POP'S MEMORIAL
   FULL HAWAIIAN SUNSET / OCEAN THEME
   ========================================================== */

:root {

    --black: #071f26;
    --black-soft: #0b3038;
    --panel: #0d3b43;

    --ivory: #fff8ef;
    --cream: #f5e4cf;
    --muted: #b6c9c6;

    /* Existing "gold" usages become tropical turquoise */
    --gold: #55d6c9;

    --ocean-deep: #062a35;
    --ocean: #087f8c;
    --turquoise: #42cfc4;
    --aqua: #8ce3da;

    --coral: #ff826e;
    --sunset: #f39a6b;
    --hibiscus: #d94f76;
    --pink: #ec7792;

    --sand: #f1dfc4;
    --palm: #51846a;

    --border: rgba(128, 225, 214, .17);
}


/* ==========================================================
   ENTIRE PAGE BACKGROUND
   ========================================================== */

html {
    background: #061c23;
}

body {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(217,79,118,.12),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 24%,
            rgba(66,207,196,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 90%,
            rgba(255,130,110,.08),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #06252e 0%,
            #07343b 30%,
            #08272e 65%,
            #061b22 100%
        );

    background-attachment: fixed;

    color: var(--ivory);
}


/* ==========================================================
   HERO - HAWAIIAN SUNSET
   ========================================================== */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 500px;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255,170,105,.30),
            transparent 30%
        ),
        radial-gradient(
            circle at 16% 25%,
            rgba(217,79,118,.28),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 18%,
            rgba(66,207,196,.24),
            transparent 38%
        ),
        linear-gradient(
            155deg,
            #073b47 0%,
            #106979 34%,
            #b34e72 72%,
            #ee8d68 100%
        );
}


/* Tropical atmospheric overlay */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at 8% 100%,
            rgba(5,37,43,.70) 0 18%,
            transparent 19%
        ),
        radial-gradient(
            ellipse at 92% 100%,
            rgba(5,37,43,.72) 0 20%,
            transparent 21%
        ),
        linear-gradient(
            180deg,
            rgba(4,24,29,.02),
            rgba(4,24,29,.15)
        );

    pointer-events: none;
}


/* Soft ocean horizon */

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 115px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(5,29,34,.72)
        );

    pointer-events: none;
}


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


.hero .eyebrow {
    color: #c7fff7;
}


.hero h1 {
    color: #fffaf2;

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


.hero .dates {
    color: #ffe8d4;
}


.hero h2 {
    color: #fff8ef;
}


.hero .service-info,
.hero .location {
    color: #d6f1ed;
}


/* ==========================================================
   REPLACE GOLD LINE WITH HAWAIIAN SUNSET LINE
   ========================================================== */

.gold-rule {
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--turquoise) 20%,
            var(--aqua) 38%,
            var(--coral) 62%,
            var(--hibiscus) 80%,
            transparent 100%
        );

    box-shadow:
        0 0 14px rgba(66,207,196,.20);
}


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

main {
    position: relative;
}


/* ==========================================================
   BROADCAST SECTION
   ========================================================== */

.broadcast {
    margin-top: 38px;

    border: 1px solid rgba(90,215,203,.18);
    border-radius: 10px;

    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(66,207,196,.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(10,55,63,.96),
            rgba(5,35,42,.96)
        );

    box-shadow:
        0 24px 65px rgba(0,0,0,.26);
}


.broadcast-heading h2 {
    color: #fff7eb;
}


.broadcast-heading p {
    color: #bdd7d3;
}


/* ==========================================================
   LIVE STATUS
   ========================================================== */

.status-pill {
    border-color: rgba(140,227,218,.28);
    background: rgba(66,207,196,.08);
    color: var(--aqua);
}


.status-pill.live {
    border-color: rgba(255,130,110,.65);
    background: rgba(255,130,110,.13);
    color: #ffd6cc;
}


.status-pill.live .dot {
    background: var(--coral);

    box-shadow:
        0 0 0 4px rgba(255,130,110,.14),
        0 0 15px rgba(255,130,110,.75);
}


/* ==========================================================
   VIDEO
   ========================================================== */

.video-shell {
    overflow: hidden;

    border: 1px solid rgba(75,210,200,.30);
    border-radius: 8px;

    background: #03181d;

    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 35px rgba(66,207,196,.05);
}


.video-info {
    color: #a8cbc6;
}


/* ==========================================================
   OFFLINE SCREEN
   ========================================================== */

.offline-screen {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(217,79,118,.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 50% 70%,
            rgba(66,207,196,.12),
            transparent 38%
        ),
        linear-gradient(
            160deg,
            #0a3b43,
            #061e25
        );
}


.offline-screen .initials {
    border-color: var(--turquoise);
    color: var(--aqua);
}


/* ==========================================================
   BUTTONS - CORAL / HIBISCUS
   ========================================================== */

#watchButton,
.join-chat-button {

    border: 0;

    background:
        linear-gradient(
            120deg,
            #ff8a70,
            #e65b7c
        );

    color: #fff;

    box-shadow:
        0 7px 22px rgba(217,79,118,.22);

    transition:
        transform .16s ease,
        filter .16s ease,
        box-shadow .16s ease;
}


#watchButton:hover,
.join-chat-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);

    box-shadow:
        0 10px 27px rgba(217,79,118,.30);
}


/* ==========================================================
   CHAT
   ========================================================== */

.chat-column {

    border-left-color: rgba(66,207,196,.16);

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(217,79,118,.10),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #0c4148,
            #072a31
        );
}


.chat-title {
    color: #fff6ea;
}


.chat-description {
    color: #b9d4d0;
}


.chat-frame-container {
    border-color: rgba(66,207,196,.20);

    background: #06252c;
}


/* ==========================================================
   NAME GATE
   ========================================================== */

.chat-name-gate {

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(236,119,146,.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 75% 78%,
            rgba(66,207,196,.17),
            transparent 35%
        ),
        linear-gradient(
            160deg,
            #0d4c53,
            #06252c
        );
}


.chat-name-inner h4 {
    color: #fff7eb;
}


.chat-name-inner p {
    color: #bed5d1;
}


.guest-name-label {
    color: var(--aqua);
}


.guest-name-input {

    border-color: rgba(140,227,218,.28);

    background:
        rgba(1,18,22,.38);

    color: #fff;
}


.guest-name-input::placeholder {
    color: #789994;
}


.guest-name-input:focus {
    border-color: var(--turquoise);

    box-shadow:
        0 0 0 3px rgba(66,207,196,.11);
}


/* ==========================================================
   INITIAL MEDALLIONS
   ========================================================== */

.initials,
.footer-initials {

    border-color: var(--turquoise);

    color: var(--aqua);

    background:
        rgba(66,207,196,.07);

    box-shadow:
        0 0 25px rgba(66,207,196,.10);
}


/* ==========================================================
   REMEMBRANCE
   ========================================================== */

.remembrance {
    margin-top: 40px;
    padding: 55px 30px;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(217,79,118,.12),
            transparent 33%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(66,207,196,.12),
            transparent 35%
        ),
        rgba(7,45,52,.52);
}


.remembrance .eyebrow {
    color: var(--coral);
}


.remembrance h2 {
    color: #fff8ef;
}


.remembrance p {
    color: #e7ded1;
}


/* ==========================================================
   SERVICE DETAILS
   ========================================================== */

.service-details {

    overflow: hidden;

    border-color: rgba(66,207,196,.20);
    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(11,65,72,.84),
            rgba(7,41,48,.84)
        );
}


.detail + .detail {
    border-color: rgba(66,207,196,.16);
}


.detail span {
    color: var(--coral);
}


.detail strong {
    color: #fff7eb;
}


/* ==========================================================
   PRIVACY
   ========================================================== */

.privacy {
    color: #8eaaa6;
}


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

footer {

    border-top-color: rgba(66,207,196,.15);

    background:
        linear-gradient(
            180deg,
            #06252b,
            #03161b
        );

    color: #91aaa6;
}


.footer-initials {
    border-color: var(--coral);
    color: #ffc0af;
}


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

@media (max-width: 900px) {

    .hero {
        min-height: 470px;
    }

    .chat-column {
        border-left: 0;
        border-top: 1px solid rgba(66,207,196,.16);
    }
}


@media (max-width: 560px) {

    .hero {
        min-height: 440px;
    }

    .remembrance {
        padding: 42px 20px;
    }

    .broadcast {
        border-radius: 6px;
    }

}



/* ==========================================================
   BOOTSTRAP-STYLE SHARE BUTTONS
   ========================================================== */

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

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 16px;

    border: 1px solid transparent;
    border-radius: 6px;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 2px 5px rgba(0,0,0,.18);

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


/* Facebook / Primary */

.facebook-share {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.facebook-share:hover {
    background: #1468d4;
    border-color: #1468d4;
    color: #fff;
}


/* Native Share / Hawaiian Teal */

#nativeShare {
    background: #168b91;
    border-color: #168b91;
    color: #fff;
}

#nativeShare:hover {
    background: #11757a;
    border-color: #11757a;
}


/* Copy Link / Outline Button */

.copy-share {
    background: transparent;
    border-color: #67d7ce;
    color: #9be8e1;
}

.copy-share:hover {
    background: #67d7ce;
    border-color: #67d7ce;
    color: #073036;
}


/* Bootstrap-like active feel */

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

    box-shadow:
        0 4px 9px rgba(0,0,0,.23);
}

.share-button:active {
    transform: translateY(0);

    box-shadow:
        0 1px 3px rgba(0,0,0,.20);
}


/* Keyboard accessibility */

.share-button:focus-visible {
    outline: 0;

    box-shadow:
        0 0 0 3px rgba(103,215,206,.27);
}


/* Mobile */

@media (max-width: 700px) {

    .share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .facebook-share {
        grid-column: 1 / -1;
    }

    .share-button {
        width: 100%;
        min-height: 44px;
    }

}



/* ==========================================================
   CELEBRATION OF LIFE TIMELINE
   ========================================================== */

.service-timeline {
    max-width: 980px;
    margin: 65px auto;
    padding: 48px 52px;

    border: 1px solid rgba(90,220,207,.18);
    border-radius: 12px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(217,79,118,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(66,207,196,.12),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(10,61,68,.88),
            rgba(5,35,42,.94)
        );

    box-shadow:
        0 24px 60px rgba(0,0,0,.20);
}


.timeline-heading {
    margin-bottom: 42px;
    text-align: center;
}


.timeline-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--coral);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}


.timeline-heading h2 {
    margin: 0;

    color: var(--ivory);

    font-size: clamp(31px,4vw,43px);
    font-weight: 400;
}


.timeline-heading p {
    max-width: 610px;
    margin: 14px auto 0;

    color: #bad5d1;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 14px;
    line-height: 1.6;
}


.timeline-list {
    position: relative;
}


.timeline-list::before {
    content: "";

    position: absolute;
    top: 9px;
    bottom: 18px;
    left: 130px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            var(--turquoise),
            var(--coral),
            var(--hibiscus)
        );
}


.timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 105px 28px 1fr;
    gap: 12px;

    min-height: 92px;
}


.timeline-time {
    padding-top: 4px;

    color: var(--aqua);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

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

    text-align: right;
}


.timeline-marker {
    position: relative;
}


.timeline-marker::before {
    content: "";

    position: absolute;
    top: 5px;
    left: 8px;

    width: 13px;
    height: 13px;

    border: 3px solid #0a3c43;
    border-radius: 50%;

    background: var(--turquoise);

    box-shadow:
        0 0 0 2px rgba(66,207,196,.30),
        0 0 13px rgba(66,207,196,.20);
}


.timeline-content {
    padding: 0 0 30px 9px;
}


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

    color: #fff7eb;

    font-size: 19px;
    font-weight: 400;
}


.timeline-content p {
    margin: 0;

    color: #a9c5c1;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 13px;
    line-height: 1.6;
}


.timeline-item.featured .timeline-marker::before {
    background: var(--coral);

    box-shadow:
        0 0 0 3px rgba(255,130,110,.15),
        0 0 16px rgba(255,130,110,.35);
}


.timeline-item.featured .timeline-content h3 {
    color: #ffb7a8;
}


.timeline-item.final .timeline-marker::before {
    background: var(--hibiscus);
}


.timeline-item.final .timeline-content h3 {
    color: #efa3b6;
}


@media (max-width: 700px) {

    .service-timeline {
        margin: 42px auto;
        padding: 37px 20px;
    }

    .timeline-heading {
        margin-bottom: 34px;
    }

    .timeline-list::before {
        left: 14px;
    }

    .timeline-item {
        grid-template-columns: 29px 1fr;
        gap: 8px;
    }

    .timeline-time {
        grid-column: 2;

        padding: 0 0 6px;

        text-align: left;

        color: var(--coral);

        font-size: 12px;
    }

    .timeline-marker {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .timeline-marker::before {
        left: 7px;
    }

    .timeline-content {
        grid-column: 2;
        padding: 0 0 28px;
    }

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

}



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

.location-detail strong {
    display: block;
    margin-bottom: 7px;
}

.venue-address {
    margin: 0 0 15px;

    color: #b8d4d0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 13px;
    line-height: 1.5;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 17px;

    border: 1px solid #42cfc4;
    border-radius: 6px;

    background: #168b91;
    color: #fff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

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

    text-decoration: none;

    box-shadow:
        0 2px 5px rgba(0,0,0,.18);

    transition:
        transform .15s ease,
        background .15s ease;
}

.directions-button:hover {
    background: #11757a;
    color: #fff;
    transform: translateY(-1px);
}



/* ==========================================================
   HERO GET DIRECTIONS BUTTON
   ========================================================== */

.hero-directions-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 11px 20px;

    min-height: 44px;

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

    background:
        linear-gradient(
            120deg,
            #168b91,
            #0f747d
        );

    color: #fff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

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

    text-decoration: none;

    box-shadow:
        0 4px 14px rgba(0,0,0,.20);

    transition:
        transform .15s ease,
        filter .15s ease,
        box-shadow .15s ease;
}

.hero-directions-button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);

    box-shadow:
        0 6px 18px rgba(0,0,0,.26);
}

@media (max-width: 560px) {

    .hero-directions-button {
        width: 100%;
        max-width: 280px;
    }

}



/* ==========================================================
   WAITING / OFFLINE VIDEO THUMBNAIL IMAGE
   ========================================================== */

.offline-screen {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(5, 23, 28, .18),
            rgba(5, 23, 28, .62)
        ),
        radial-gradient(
            circle at 50% 24%,
            rgba(255, 135, 105, .16),
            transparent 28%
        ),
        radial-gradient(
            circle at 78% 18%,
            rgba(66, 207, 196, .12),
            transparent 30%
        ),
        url('/assets/images/waiting-thumb.jpg') center 18% / cover no-repeat !important;
}

.offline-screen::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 19, 23, .10) 0%,
            rgba(4, 19, 23, .12) 30%,
            rgba(4, 19, 23, .42) 72%,
            rgba(4, 19, 23, .70) 100%
        );

    pointer-events: none;
}

.offline-screen > * {
    position: relative;
    z-index: 2;
}

.offline-screen h3,
.offline-screen h4,
.offline-screen p,
.offline-screen .video-title,
.offline-screen .video-subtitle {
    text-shadow:
        0 2px 12px rgba(0,0,0,.42);
}

.offline-screen .initials {
    background: rgba(6, 28, 33, .40);
    backdrop-filter: blur(2px);
}

