:root {
    --maroon: #741c1c;
    --maroon-mid: #5a1414;
    --maroon-dark: #3c0d0d;
    --maroon-deep: #210606;
    --gold: #e6c98e;
    --gold-antique: #a97b2f;
    --gold-bright: #f2dcae;
    --cream: #fffaf0;
    --stone: #f1e6cf;
    --ink: #241209;
    --ink-soft: #5a4530;
    --hair: rgba(116, 28, 28, 0.22);
    --display: 'Poppins', serif;
    --body: 'Hind', sans-serif;
    --serif-en: 'EB Garamond', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

body {
    font-family: var(--body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    position: relative;
}

/* paper / stone grain overlay -- the realism layer */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
.display {
    font-family: var(--display);
    font-weight: 400;
    color: var(--maroon-dark);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-antique);
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold-antique);
}

/* thin ornamental divider used between sections instead of a repeated skyline band */
.hr-orn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    width: fit-content;
}

.hr-orn .line {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-antique));
}

.hr-orn .line.r {
    background: linear-gradient(90deg, var(--gold-antique), transparent);
}

.hr-orn svg {
    width: 20px;
    height: 20px;
}

/* ============ NAV — BASE (desktop default) ============ */
header.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--maroon-deep);
    border-bottom: 1px solid rgba(230, 201, 142, 0.25);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.brand-text {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 1.2rem;
    line-height: 1.15;
    min-width: 0;
}

.brand-text small {
    display: block;
    font-family: var(--serif-en);
    font-style: normal;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    opacity: 0.75;
    margin-top: 3px;
}

nav.links {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.links a {
    color: var(--stone);
    font-size: 0.92rem;
    padding: 4px 1px;
    position: relative;
}

nav.links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s ease;
}

nav.links a:hover::after,
nav.links a:focus-visible::after {
    right: 0;
}

nav.links a:focus-visible {
    outline: none;
    color: var(--gold-bright);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 7px 12px;
    flex-shrink: 0;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
}



/* ============ HERO — gateway framing ============ */
.hero {
    background: var(--maroon-deep);
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
}

.hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 8px;
    align-items: center;
}

.hero-copy {
    padding-bottom: 90px;
}

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

.hero .eyebrow::before {
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.15rem);
    color: var(--gold-bright);
    line-height: 1.28;
    margin-bottom: 16px;
}

.hero .sub-en {
    font-family: var(--serif-en);
    font-style: normal;
    color: var(--gold);
    opacity: 0.72;
    font-size: 1rem;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
}

.hero p.lede {
    color: var(--stone);
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 36px;
}

.cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s;
}

.btn:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--maroon-deep);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(230, 201, 142, 0.1);
    transform: translateY(-2px);
}

.btn-line {
    background: transparent;
    color: var(--maroon);
    border-bottom: 1px solid var(--maroon);
    padding: 4px 2px;
    border-radius: 0;
}

.btn-line:hover {
    color: var(--gold-antique);
    border-color: var(--gold-antique);
}

/* the arch-framed hero art -- signature element */
.hero-art {
    position: relative;
    align-self: end;
}

.hero-art svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============ SECTION shared ============ */
section {
    padding: 100px 0;
    position: relative;
}

section.stone {
    background: var(--stone);
}

.section-head {
    max-width: 620px;
    margin: 0 0 56px;
}

.section-head.center {
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.3rem);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ TIMINGS -- inscribed tablet, not cards ============ */
.tablet {
    background: var(--maroon-deep);
    padding: 8px;
    position: relative;
}

.tablet-inner {
    border: 1px solid rgba(230, 201, 142, 0.35);
    padding: 18px 0;
}

.tablet-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 26px 44px;
    border-bottom: 1px solid rgba(230, 201, 142, 0.15);
}

.tablet-row:last-child {
    border-bottom: none;
}

.tablet-row .ic {
    width: 34px;
    height: 34px;
    opacity: 0.9;
}

.tablet-row h3 {
    color: var(--gold-bright);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.tablet-row .note {
    color: var(--stone);
    opacity: 0.6;
    font-size: 0.85rem;
}

.tablet-row .time {
    font-family: var(--serif-en);
    font-style: italic;
    color: var(--gold);
    font-size: 1.15rem;
    text-align: right;
    white-space: nowrap;
}

@media (max-width:640px) {
    .tablet-row {
        grid-template-columns: auto 1fr;
        padding: 22px 22px;
    }

    .tablet-row .time {
        grid-column: 1/3;
        text-align: left;
        margin-top: 8px;
        font-size: 1.05rem;
    }
}

/* ============ HISTORY ============ */
.history-wrap {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 64px;
    align-items: start;
}

.history-text p {
    margin-bottom: 18px;
    color: var(--ink-soft);
}

.history-text strong {
    color: var(--maroon-dark);
    font-weight: 600;
}

.history-text p:first-of-type::first-letter {
    font-family: var(--display);
    font-size: 3.6rem;
    color: var(--maroon);
    float: left;
    line-height: 0.8;
    padding: 8px 10px 0 0;
}

.pullquote {
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--maroon);
    line-height: 1.5;
    padding: 26px 0;
    margin: 8px 0 24px;
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
}

.fine-print {
    font-family: var(--serif-en);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.85rem;
    opacity: 0.8;
}

.history-fig {
    position: relative;
}

.history-fig .frame {
    border: 1px solid var(--gold-antique);
    padding: 10px;
}

.history-fig img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: sepia(8%) saturate(92%);
}

.history-fig figcaption {
    margin-top: 12px;
    font-family: var(--serif-en);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width:900px) {
    .history-wrap {
        grid-template-columns: 1fr;
    }

    .history-fig {
        order: -1;
    }
}

/* ============ NEARBY -- numbered site list ============ */
.site-list {
    border-top: 1px solid var(--hair);
}

.site-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 34px 0;
    border-bottom: 1px solid var(--hair);
}

.site-row .num {
    font-family: var(--display);
    font-size: 2.1rem;
    color: var(--gold-antique);
    opacity: 0.55;
    line-height: 1;
}

.site-row h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.site-row .place {
    color: var(--gold-antique);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.site-row p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    max-width: 640px;
}

.nearby-note {
    color: var(--ink-soft);
    font-size: 0.85rem;
    margin-top: 26px;
    font-family: var(--serif-en);
    font-style: italic;
}

/* ============ GALLERY -- hung photo collage ============ */
.collage {
    display: flex;
    flex-wrap: wrap;
    gap: 34px 26px;
    justify-content: center;
    padding-top: 10px;
}

.collage figure {
    background: #fff;
    padding: 12px 12px 40px;
    box-shadow: 0 12px 28px rgba(36, 18, 9, 0.18);
    width: 260px;
    position: relative;
}

.collage figure:nth-child(odd) {
    transform: rotate(-2deg);
}

.collage figure:nth-child(even) {
    transform: rotate(1.6deg);
}

.collage figure:nth-child(3n) {
    transform: rotate(-1deg);
    width: 300px;
}

.collage figure:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 18px 36px rgba(36, 18, 9, 0.24);
    z-index: 5;
    transition: all 0.35s;
}

.collage img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: sepia(6%);
}

.collage figcaption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
    font-family: var(--serif-en);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.gallery-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.85rem;
    margin-top: 40px;
    font-family: var(--serif-en);
    font-style: italic;
}

/* ============ DONATIONS -- ascending ladder ============ */
.ladder {
    max-width: 760px;
    margin: 0 auto 70px;
}

.rung {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    border: 1px solid var(--hair);
    border-top: none;
}

.ladder .rung:first-child {
    border-top: 1px solid var(--hair);
}

.rung h3 {
    font-size: 1.05rem;
    color: var(--maroon-dark);
    font-weight: 600;
    font-family: var(--body);
}

.rung .amt {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--maroon);
    white-space: nowrap;
}

.rung.top {
    background: var(--maroon-deep);
}

.rung.top h3 {
    color: var(--gold-bright);
}

.rung.top .amt {
    color: var(--gold);
}

.donate-panels {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
}

.bank-box {
    border: 1px solid var(--gold-antique);
    padding: 36px;
    position: relative;
}

.bank-box h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--hair);
    font-size: 0.95rem;
    gap: 16px;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row span:first-child {
    color: var(--ink-soft);
    flex-shrink: 0;
}

.bank-row span:last-child {
    font-weight: 600;
    color: var(--maroon-dark);
    text-align: right;
}

.upi-box {
    background: var(--maroon-deep);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.upi-box img {
    width: 160px;
    height: 160px;
    border: 6px solid var(--stone);
}

.upi-box p {
    color: var(--stone);
    opacity: 0.85;
    font-size: 0.85rem;
}

.upi-box .btn-primary {
    width: 100%;
    justify-content: center;
}

@media (max-width:800px) {
    .donate-panels {
        grid-template-columns: 1fr;
    }

    .rung {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ============ COMMITTEE -- engraved nameplates ============ */
.committee-lead {
    border: 1px solid var(--hair);
    padding: 22px 28px;
    text-align: center;
    margin-bottom: 46px;
    font-size: 1rem;
    color: var(--ink-soft);
}

.committee-lead a {
    color: var(--maroon);
    font-weight: 700;
    border-bottom: 1px solid var(--maroon);
}

.plate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.plate {
    background: var(--maroon-deep);
    padding: 30px 26px;
    position: relative;
    border-top: 2px solid var(--gold);
}

.plate::before,
.plate::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--gold);
    opacity: 0.55;
}

.plate::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.plate::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.plate-role {
    color: var(--gold-antique);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plate-name {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.plate-place {
    color: var(--stone);
    opacity: 0.65;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.plate-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 1rem;
    border-top: 1px solid rgba(230, 201, 142, 0.2);
    padding-top: 14px;
    width: 100%;
}

/* ============ MAP ============ */
.map-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--hair);
}

.map-info {
    background: var(--stone);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.map-info h3 {
    font-size: 1.4rem;
}

.map-info p {
    color: var(--ink-soft);
}

.map-info .btn {
    align-self: flex-start;
    margin-top: 10px;
}

.map-frame {
    min-height: 380px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
    filter: sepia(15%) contrast(0.96);
}

@media (max-width:900px) {
    .map-wrap {
        grid-template-columns: 1fr;
    }
}

/* ============ FOOTER ============ */
footer {
    background: var(--maroon-deep);
    color: var(--gold);
    padding: 70px 0 30px;
    text-align: center;
}

footer .brand-mark {
    width: 36px;
    height: 36px;
    margin: 0 auto 18px;
}

footer h3 {
    color: var(--gold-bright);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

footer p.addr {
    color: var(--stone);
    opacity: 0.7;
    font-size: 0.9rem;
    max-width: 460px;
    margin: 8px auto 28px;
}

footer .foot-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

footer .foot-links a {
    color: var(--gold);
    font-size: 0.88rem;
    opacity: 0.85;
    border-bottom: 1px solid transparent;
}

footer .foot-links a:hover {
    opacity: 1;
    border-color: var(--gold);
}

footer .copyright {
    font-size: 0.78rem;
    color: var(--stone);
    opacity: 0.45;
    border-top: 1px solid rgba(230, 201, 142, 0.15);
    padding-top: 22px;
}

#toTop {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    background: var(--maroon-deep);
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 90;
}

#toTop.show {
    opacity: 1;
    pointer-events: auto;
}

#toTop:hover {
    transform: translateY(-3px);
}

#toTop:focus-visible {
    outline: 2px solid var(--gold);
}

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

    .hero-art {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
        padding-top: 40px;
    }

    .hero-copy {
        padding-bottom: 60px;
        text-align: left;
    }

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

@media (max-width:720px) {
    nav.links {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--maroon-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 6px 28px 26px;
        gap: 0;
        border-bottom: 1px solid rgba(230, 201, 142, 0.2);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
    }

    nav.links.open {
        transform: translateY(0);
    }

    nav.links a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(230, 201, 142, 0.08);
        width: 100%;
    }

    nav.links a::after {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

    section {
        padding: 72px 0;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }
}

#contact-footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

#contact-footer .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(230, 201, 142, 0.35);
    border-radius: 50%;
    transition: all 0.25s ease;
}

#contact-footer .social-links svg {
    width: 19px;
    height: 19px;
}

/* Brand colors — icon glyph */
#contact-footer .icon-instagram {
    color: #E1306C;
}

#contact-footer .icon-facebook {
    color: #1877F2;
}

#contact-footer .icon-whatsapp {
    color: #25D366;
}

#contact-footer .icon-youtube {
    color: #FF0000;
}

/* On hover, fill circle with brand color, icon turns white */
@media (hover: hover) {
    #contact-footer .icon-instagram:hover {
        background: #E1306C;
        color: #fff;
        border-color: #E1306C;
        transform: translateY(-2px);
    }

    #contact-footer .icon-facebook:hover {
        background: #1877F2;
        color: #fff;
        border-color: #1877F2;
        transform: translateY(-2px);
    }

    #contact-footer .icon-whatsapp:hover {
        background: #25D366;
        color: #fff;
        border-color: #25D366;
        transform: translateY(-2px);
    }

    #contact-footer .icon-youtube:hover {
        background: #FF0000;
        color: #fff;
        border-color: #FF0000;
        transform: translateY(-2px);
    }
}

#contact-footer .social-links a:active {
    transform: translateY(-1px);
}

@media (max-width: 400px) {
    #contact-footer .social-links {
        gap: 12px;
    }

    #contact-footer .social-links a {
        width: 32px;
        height: 32px;
    }

    #contact-footer .social-links svg {
        width: 16px;
        height: 16px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-cta-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    display: none;
    /* hidden on desktop, text is enough */
}

/* Mobile: shrink to icon + smaller text, or icon-only on very narrow screens */
@media (max-width: 640px) {
    .nav-inner {
        padding: 0 12px;
        height: auto;
        min-height: 64px;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .brand {
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .brand-mark {
        width: 26px;
        height: 26px;
    }

    .brand-text {
        font-size: 0.95rem;
        min-width: 0;
    }

    .brand-text small {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        margin-top: 1px;
    }

    .nav-toggle {
        display: inline-block;
        flex-shrink: 0;
        padding: 5px 9px;
        font-size: 0.9rem;
    }

    .nav-cta {
        padding: 7px 10px;
        font-size: 0.78rem;
        gap: 4px;
    }

    .nav-cta-icon {
        display: block;
    }
}

/* Very narrow: icon only, drop text to save space */
@media (max-width: 380px) {
    .nav-cta-text {
        display: none;
    }

    .nav-cta {
        padding: 8px;
        width: 34px;
        height: 34px;
        justify-content: center;
    }

    .nav-cta-icon {
        width: 16px;
        height: 16px;
    }

    .brand-text {
        font-size: 0.82rem;
    }

    .brand-text small {
        font-size: 0.62rem;
    }
}

@media (max-width: 360px) {
    #contact-footer .social-links a {
        width: 27px;
        height: 27px;
    }

    #contact-footer .social-links svg {
        width: 13px;
        height: 13px;
    }
}

/* ============ बुलेटिन मार्की (गौशाला दान संदेश) ============ */
.marquee-strip {
    background: var(--maroon-deep);
    border-bottom: 1px solid rgba(230, 201, 142, 0.25);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 26s linear infinite;
}

.marquee-track span {
    padding: 10px 50px;
    white-space: nowrap;
    color: var(--gold-bright);
    font-family: var(--serif-en);
    font-style: italic;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .marquee-track span {
        padding: 8px 30px;
        font-size: 0.82rem;
    }
}

.marquee-link {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-style: normal;
    font-weight: 600;
}

.marquee-link:hover {
    color: #fff;
}

