/* =====================================================
   AstroYogiShreeRam — Premium Design System
   Colors: Maroon #7B1113 | Gold #D4AF37 | Cream #FFFDF8
   ===================================================== */

:root {
    --maroon: #7B1113;
    --maroon-dark: #5a0c0e;
    --maroon-soft: rgba(123, 17, 19, 0.08);
    --gold: #D4AF37;
    --gold-light: #E8C96A;
    --gold-dark: #B8962E;
    --cream: #FFFDF8;
    --cream-dark: #F7F0E4;
    --dark: #1B1B1B;
    --text: #000;
    --text-muted: #111;
    --white: #FFFFFF;
    --glass: rgba(255, 253, 248, 0.72);
    --glass-dark: rgba(27, 27, 27, 0.65);
    --shadow: 0 10px 40px rgba(27, 27, 27, 0.08);
    --shadow-lg: 0 20px 60px rgba(123, 17, 19, 0.12);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --radius: 1.25rem;
    --radius-sm: 0.75rem;
    --radius-full: 9999px;
    --font-heading: 'Cinzel', serif;
    --font-sub: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --header-h: 105px;
    --bottom-nav-h: 78px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

    body.has-bottom-nav {
        padding-bottom: calc(var(--bottom-nav-h) + 16px);
    }

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover {
        color: var(--maroon);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark);
    margin: 0 0 0.75rem;
}

.font-sub {
    font-family: var(--font-sub);
}

.font-heading {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--gold);
}

.text-maroon {
    color: var(--maroon);
}

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

.bg-cream {
    background: var(--cream);
}

.bg-maroon {
    background: var(--maroon);
}

.bg-dark {
    background: var(--dark);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border: 1px solid transparent;
    background: linear-gradient(var(--cream), var(--cream)) padding-box, linear-gradient(135deg, var(--gold-light), var(--gold-dark)) border-box;
}

/* ---------- Layout ---------- */
.container-ay {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.section {
    padding: 3rem 0;
    position: relative;
}

.section-sm {
    padding: 3.5rem 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

    .section-eyebrow::before {
        content: '';
        width: 28px;
        height: 2px;
        background: var(--gold);
    }

.section-title {
    font-size: clamp(1.75rem, 4vw, 1.90rem);
    margin-bottom: 1rem;
    color: var(--maroon-dark);
}

.section-sub {
    font-family: var(--font-sub);
    font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    color: var(--text);
    font-weight: 500;
    max-width: 640px;
    margin-bottom: 1.75rem;
    line-height: 1.45;
}

.about-meet {
    max-width: 36rem;
}

    .about-meet strong {
        color: var(--maroon);
        font-weight: 600;
        font-family: var(--font-heading);
    }

.about-meet-sep {
    color: var(--gold-dark);
    margin: 0 0.2em;
    font-weight: 600;
}

.about-meet-role {
    color: var(--maroon-dark);
    font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.35rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

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

    .btn:active {
        transform: translateY(0);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    color: var(--white) !important;
    box-shadow: 0 8px 24px rgba(123, 17, 19, 0.3);
}

    .btn-primary:hover {
        box-shadow: 0 12px 32px rgba(123, 17, 19, 0.4);
        color: var(--white) !important;
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

    .btn-gold:hover {
        color: var(--dark) !important;
    }

.btn-outline {
    background: #1e9a0c;
    color: #fff !important;
    border: 1.5px solid var(--maroon);
}

    .btn-outline:hover {
        background: var(--maroon);
        color: var(--white) !important;
    }

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white) !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
}

    .btn-ghost:hover {
        background: rgba(212, 175, 55, 0.2);
        color: var(--white) !important;
    }

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 1rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ---------- Glass / Cards ---------- */
.glass {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    background: rgba(212, 175, 55, 0.45);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.12);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition); 
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.card-body {
    padding:.9rem;
}

.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}

    .hover-lift:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

/* ---------- Header ---------- */
.site-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

    /* Inner pages: always solid premium bar */
    .site-header:not(.is-transparent),
    .site-header.is-scrolled {
        background: rgba(255, 253, 248, 0.16);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 30px rgba(27, 27, 27, 0.06);
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

    .site-header.is-transparent:not(.is-scrolled) {
        background: transparent;
        box-shadow: none;
        border-bottom: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: min(78vw, 400px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-logo-img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.22));
}

.site-header.is-transparent:not(.is-scrolled) .brand-logo,
.site-header.is-scrolled .brand-logo,
.site-header:not(.is-transparent) .brand-logo {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (min-width: 1100px) {
    :root {
        --header-h: 90px;
    }

    .brand-logo {
        max-width: 520px;
    }

    .brand-logo-img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 80px;
    }

    .brand-logo {
        max-width: min(82vw, 300px);
    }

    .brand-logo-img {
        max-height: 100px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0;
    min-width: 0;
}

@media (min-width: 1100px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    padding: 0.4rem 0.5rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .nav-desktop a {
        padding: 0.45rem 0.62rem;
        font-size: 1rem;
    }
}

.site-header.is-transparent:not(.is-scrolled) .nav-desktop a {
    color: var(--white);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
    color: var(--maroon);
}

.site-header.is-transparent:not(.is-scrolled) .nav-desktop a:hover,
.site-header.is-transparent:not(.is-scrolled) .nav-desktop a.is-active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

    .header-actions .btn {
        display: none;
    }

    .header-actions .btn-sm {
        padding: 0.55rem 1rem;
        font-size: 1rem;
    }

.header-btn-call {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)) !important;
    color: #fff !important;
    border: 1.5px solid transparent;
    box-shadow: 0 6px 18px rgba(123, 17, 19, 0.35);
}

    .header-btn-call:hover {
        color: #fff !important;
        box-shadow: 0 8px 24px rgba(123, 17, 19, 0.45);
        transform: translateY(-2px);
    }

/* On transparent hero: keep Call Now clearly visible */
.site-header.is-transparent:not(.is-scrolled) .header-btn-call {
    background: rgba(255, 253, 248, 0.95) !important;
    color: var(--maroon) !important;
    border: 1.5px solid rgba(255, 253, 248, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

    .site-header.is-transparent:not(.is-scrolled) .header-btn-call:hover {
        background: #fff !important;
        color: var(--maroon-dark) !important;
    }

@media (min-width: 900px) {
    .header-actions .btn {
        display: inline-flex;
    }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

@media (min-width: 1100px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.is-transparent:not(.is-scrolled) .menu-toggle span {
    background: var(--white);
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-drawer.is-open {
        pointer-events: auto;
        opacity: 1;
    }

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 27, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 88%);
    height: 100%;
    background: var(--cream);
    padding: 1rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-panel > a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--dark);
    text-decoration: none;
}

    .mobile-drawer-panel > a.is-active {
        color: var(--maroon);
    }

.mobile-drawer-ctas {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .mobile-drawer-ctas .mobile-drawer-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0.85rem 1.25rem;
        border-bottom: none;
        font-family: var(--font-body);
        font-size: 0.9rem;
        white-space: nowrap;
        text-align: center;
        box-sizing: border-box;
    }

    .mobile-drawer-ctas .btn-gold {
        color: var(--dark) !important;
    }

    .mobile-drawer-ctas .btn-primary {
        color: var(--white) !important;
    }

/* ---------- Bottom Nav ---------- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--bottom-nav-h);
    padding: 0 0.55rem;
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(180deg, rgba(123, 17, 19, 0.96) 0%, #4a0c0e 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 -8px 28px rgba(27, 27, 27, 0.22), inset 0 1px 0 rgba(232, 201, 106, 0.22);
    display: flex;
    align-items: center;
}

    .mobile-bottom-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% -20%, rgba(212, 175, 55, 0.28), transparent 55%), radial-gradient(ellipse at 10% 120%, rgba(232, 201, 106, 0.12), transparent 40%), radial-gradient(ellipse at 90% 120%, rgba(232, 201, 106, 0.12), transparent 40%);
        pointer-events: none;
    }

.mbn-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.15rem;
    padding: 0.2rem 0.15rem 0.35rem;
}

@media (min-width: 1100px) {
    .mobile-bottom-nav {
        display: none;
    }

    body.has-bottom-nav {
        padding-bottom: 0;
    }
}

.mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    min-width: 0;
    padding: 0.2rem 0.15rem;
    color: rgba(255, 253, 248, 0.62);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mbn-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 253, 248, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mbn-item svg {
    width: 20px;
    height: 20px;
    display: block;
}

.mbn-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

.mbn-item.is-active {
    color: var(--gold-light);
}

    .mbn-item.is-active .mbn-icon {
        background: linear-gradient(145deg, rgba(212, 175, 55, 0.28), rgba(123, 17, 19, 0.35));
        border-color: rgba(212, 175, 55, 0.55);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(232, 201, 106, 0.2);
        transform: translateY(-1px);
    }

.mbn-item:active .mbn-icon {
    transform: scale(0.95);
}

/* Center Consult FAB */
.mbn-consult {
    position: relative;
    top: -16px;
    color: var(--gold-light) !important;
    gap: 0.3rem;
}

.mbn-consult-ring {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 10px 26px rgba(123, 17, 19, 0.45), 0 0 0 4px rgba(255, 253, 248, 0.12);
}

.mbn-consult-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #9a1a1d, var(--maroon-dark));
    color: var(--gold-light);
}

.mbn-consult svg {
    width: 24px;
    height: 24px;
}

.mbn-consult .mbn-label {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.64rem;
}

.mbn-consult.is-active .mbn-consult-ring {
    box-shadow: 0 12px 28px rgba(123, 17, 19, 0.55), 0 0 0 5px rgba(212, 175, 55, 0.25);
}

/* ---------- Floating buttons ---------- */
.float-actions {
    position: fixed;
    right: 1rem;
    bottom: calc(var(--bottom-nav-h) + 1rem);
    z-index: 850;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1100px) {
    .float-actions {
        bottom: 2rem;
    }
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
    color: var(--white) !important;
}

    .float-btn:hover {
        transform: scale(1.08);
        color: var(--white) !important;
    }

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0808;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video,
.hero-fallback,
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
}

.hero-fallback,
.hero-poster {
    z-index: 0;
}

.hero-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero.is-video-ready .hero-video {
    opacity: 1;
}

.hero.is-video-ready .hero-fallback,
.hero.is-video-ready .hero-poster {
    /* keep under video as safety net; no need to hide hard */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(8, 6, 6, 0.88) 0%, rgba(8, 6, 6, 0.62) 16%, rgba(8, 6, 6, 0.22) 28%, transparent 42%, transparent 100% ), linear-gradient( 180deg, rgba(8, 6, 6, 0.35) 0%, transparent 18%, transparent 78%, rgba(8, 6, 6, 0.35) 100% );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(390px, 32%);
    max-width: 390px;
    margin-left: max(3.5%, calc((100% - 1200px) / 2));
    margin-right: auto;
    padding: calc(var(--header-h) + 1.25rem) 0 3.5rem;
}

@media (min-width: 1100px) {
    .hero-content {
        width: 460px;
        max-width: 460px;
        margin-left: max(3.5vw, calc((100% - 1200px) / 2));
    }

    .hero-video,
    .hero-fallback,
    .hero-poster {
        object-position: 82% center;
    }
}

.hero-logo {
    display: block;
    width: min(340px, 82vw);
    height: auto;
    margin-bottom: 1.75rem;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
    background: rgba(255, 253, 248, 0.96);
    border-radius: 12px;
    padding: 0.55rem 0.85rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 0.85rem;
    letter-spacing: 0.01em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

    .hero-title span {
        background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-lead {
    font-family: var(--font-sub);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    max-width: 440px;
    margin: 0 0 1.4rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .hero-actions .btn-lg {
        padding: 0.85rem 1.45rem;
        font-size: 0.88rem;
    }

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    z-index: 3;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.hero-scroll-line {
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: var(--gold);
    animation: heroScroll 1.6s ease-in-out infinite;
}

@keyframes heroScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* Mobile: video fully visible on top, text in separate panel below */
@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        display: block;
        overflow: visible;
    }

    .hero-bg {
        position: relative;
        inset: auto;
        height: min(62svh, 520px);
        min-height: 320px;
    }

    .hero-video,
    .hero-fallback,
    .hero-poster {
        object-position: center 12%;
    }

    .hero-overlay {
        background: linear-gradient( 180deg, rgba(8, 6, 6, 0.35) 0%, transparent 22%, transparent 78%, rgba(8, 6, 6, 0.45) 100% );
    }

    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.5rem 1.25rem 1.75rem;
        background: linear-gradient(165deg, #2a0c0d 0%, var(--maroon-dark) 45%, #1a0808 100%);
        border-top: 1px solid rgba(212, 175, 55, 0.35);
    }

    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        text-shadow: none;
    }

    .hero-lead {
        max-width: none;
        color: rgba(255, 253, 248, 0.88);
        margin-bottom: 1.2rem;
    }

    .hero-actions .btn-ghost {
        background: rgba(255, 255, 255, 0.08);
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        height: min(54svh, 420px);
        min-height: 280px;
    }

    .hero-content {
        padding: 1.35rem 1.1rem calc(1.5rem + env(safe-area-inset-bottom));
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn {
            width: 100%;
        }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none !important;
        opacity: 0 !important;
    }

    .hero-fallback,
    .hero-poster {
        opacity: 1 !important;
    }

    .hero-scroll-line {
        animation: none;
    }
}

/* Galaxy / particles (reusable) */
.galaxy-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(1px);
    animation: floatPlanet 12s ease-in-out infinite;
}

@keyframes floatPlanet {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* ---------- Page Banner ---------- */
.page-banner {
    position: relative;
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    opacity: 0.45;
}

    .page-banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,27,27,0.7), rgba(123,17,19,0.75));
    z-index: 1;
}

.page-banner .container-ay {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.85rem, 4vw, 3rem);
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-sub);
    font-size: 1.25rem;
    max-width: 560px;
    margin: 0.75rem auto 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.65);
}

    .breadcrumb a {
        color: var(--gold);
    }

        .breadcrumb a:hover {
            color: var(--gold-light);
        }

    .breadcrumb .sep {
        opacity: 0.5;
    }

/* ---------- Grids ---------- */
.grid-2 {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    gap: 1.25rem;
}

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

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

@media (min-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Service card */
.service-card {
    text-align: left;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-media {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
}

    .service-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

.service-card:hover .service-card-media img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.25rem .35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.service-card .icon-wrap {
    display: none;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.1rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.1rem;
    line-height: 1.55;
}

.section-dark .service-card-body {
    background: rgba(255,255,255,0.04);
}

.section-dark .service-card h3 {
    color: var(--white);
}

.section-dark .service-card p {
    color: rgba(255,255,255,0.65);
}

.section-dark .service-card .btn-outline {
    color: var(--gold) !important;
    border-color: rgba(212,175,55,0.45);
}

    .section-dark .service-card .btn-outline:hover {
        background: var(--gold);
        color: var(--dark) !important;
    }

/* Zodiac card */
.zodiac-card {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

    .zodiac-card .symbol {
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .zodiac-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .zodiac-card .dates {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

/* Today's horoscope */
.horoscope-today-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 2.25rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(123, 17, 19, 0.08), rgba(212, 175, 55, 0.16)), var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.horoscope-today-live {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--maroon);
}

.horoscope-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c62828;
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.55);
    animation: horoscopePulse 1.6s ease-out infinite;
}

@keyframes horoscopePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);
    }
}

.horoscope-today-date {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 180px;
}

    .horoscope-today-date strong {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        color: var(--maroon-dark);
    }

    .horoscope-today-date span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.horoscope-today-grid {
    display: grid;
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .horoscope-today-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1100px) {
    .horoscope-today-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.horoscope-day-card {
    padding: 1.35rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.horoscope-day-head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.horoscope-day-symbol {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.45rem;
    color: var(--gold-dark);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(123, 17, 19, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.horoscope-day-head h3 {
    font-size: 1.08rem;
    margin: 0 0 0.25rem;
    color: var(--maroon-dark);
}

    .horoscope-day-head h3 span {
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--text-muted);
    }

.horoscope-day-meta {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.horoscope-day-summary {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.horoscope-day-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
    display: grid;
    gap: 0.55rem;
    flex-grow: 1;
}

    .horoscope-day-points li {
        font-size: 0.84rem;
        line-height: 1.55;
        color: var(--text);
        padding: 0.55rem 0.7rem;
        border-radius: 10px;
        background: rgba(123, 17, 19, 0.04);
        border: 1px solid rgba(212, 175, 55, 0.14);
    }

    .horoscope-day-points strong {
        display: inline-block;
        min-width: 3.6rem;
        margin-right: 0.35rem;
        color: var(--maroon);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

/* Testimonial */
.testimonial-card {
    padding: 1rem;
    height: 100%;
}

    .testimonial-card .stars {
        color: var(--black);
        letter-spacing: 2px;
        margin-bottom: .5rem;
        font-size:1.1rem;
    }

    .testimonial-card blockquote {
        font-family: var(--font-sub);
        font-size: 1.2rem;
        font-style: italic;
        color: var(--text);
        margin: 0 0 1.5rem;
        line-height: 1.6;
    }

    .testimonial-card .author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .testimonial-card .avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--maroon), var(--gold));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 600;
    }

/* Blog card */
.blog-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .blog-card .thumb {
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--cream-dark);
    }

        .blog-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

    .blog-card:hover .thumb img {
        transform: scale(1.06);
    }

.blog-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.blog-card .meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    align-items: center;
}

.blog-cat {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(123, 17, 19, 0.08);
    color: var(--maroon) !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.blog-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

    .blog-card h3 a {
        color: var(--maroon-dark);
        text-decoration: none;
    }

        .blog-card h3 a:hover {
            color: var(--maroon);
        }

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.blog-card-featured {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .blog-card-featured {
        grid-template-columns: 1.15fr 1fr;
        align-items: stretch;
    }

        .blog-card-featured .thumb {
            aspect-ratio: auto;
            min-height: 280px;
            height: 100%;
        }

        .blog-card-featured .blog-card-body {
            justify-content: center;
            padding: 1.75rem 1.75rem 1.9rem;
        }

        .blog-card-featured h3 {
            font-size: clamp(1.35rem, 2.4vw, 1.75rem);
        }
}

.blog-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 0.75rem;
}

    .blog-featured-label::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
    }

.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.blog-cat-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .blog-cat-chip:hover,
    .blog-cat-chip.is-active {
        background: var(--maroon);
        border-color: var(--maroon);
        color: #fff !important;
    }

.blog-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-newsletter {
    margin-top: 2.5rem;
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(135deg, rgba(123, 17, 19, 0.06), rgba(212, 175, 55, 0.12)), var(--cream);
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 800px) {
    .blog-newsletter {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
}

.blog-newsletter h3 {
    font-size: 1.2rem;
    color: var(--maroon-dark);
    margin-bottom: 0.4rem;
}

.blog-newsletter p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

    .blog-newsletter-form .form-control {
        flex: 1;
        min-width: 180px;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark);
}

    .faq-question .chevron {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(212,175,55,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform var(--transition), background var(--transition);
        color: var(--maroon);
        font-size: 1.1rem;
    }

.faq-item.is-open .faq-question .chevron {
    transform: rotate(45deg);
    background: var(--maroon);
    color: var(--gold);
    border-color: var(--maroon);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.25rem;
}

/* CTA band */
.cta-band {
    position: relative;
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon) 40%, #3d0a0b);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

    .cta-band h2 {
        color: var(--white);
    }

    .cta-band p {
        font-family: var(--font-sub);
        font-size: 1.35rem;
        color: rgba(255,255,255,0.85);
        margin: 0 auto 2rem;
    }

/* Footer � SEO mega layout */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 4.5rem 0 2rem;
    font-size: 0.88rem;
}

    .site-footer h4 {
        color: var(--gold);
        font-size: 0.95rem;
        margin-bottom: 1rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .site-footer a {
        color: rgba(255,255,255,0.7);
        display: block;
        padding: 0.22rem 0;
        line-height: 1.45;
    }

        .site-footer a:hover {
            color: var(--gold);
        }

.footer-top {
    display: grid;
    gap: 2.25rem;
    margin-bottom: 2.75rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.12);
}

@media (min-width: 900px) {
    .footer-top {
        grid-template-columns: 1.6fr 1fr 1fr;
    }
}

.footer-mega {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
    .footer-mega {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-mega {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-mega-2 {
    padding-top: 0.5rem;
    margin-bottom: 2.25rem;
}

.footer-brand img,
.footer-logo {
    height: auto;
    width: min(360px, 100%);
    max-height: 110px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.footer-about {
    max-width: 420px;
    line-height: 1.75;
    margin-bottom: 0.85rem;
    color: rgba(255,255,255,0.72);
}

.footer-nap {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    font-size: 0.86rem;
}

    .footer-nap li {
        margin-bottom: 0.45rem;
        line-height: 1.5;
    }

    .footer-nap a {
        display: inline;
        padding: 0;
    }

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-btn-light {
    border-color: rgba(212,175,55,0.45) !important;
    color: var(--gold) !important;
}

    .footer-btn-light:hover {
        background: rgba(212,175,55,0.15) !important;
        color: #fff !important;
    }

.footer-note {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.72;
}

.footer-zodiac {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.75rem;
}

.footer-seo-copy {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 12px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 2.25rem;
}

    .footer-seo-copy h4 {
        margin-bottom: 0.65rem;
    }

    .footer-seo-copy p {
        margin: 0;
        line-height: 1.75;
        color: rgba(255,255,255,0.7);
    }

    .footer-seo-copy a {
        display: inline;
        padding: 0;
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(212,175,55,0.15);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.15rem;
}

    .footer-bottom-links a {
        display: inline;
        padding: 0;
    }

.social-links {
    display: flex;
    gap: 0.75rem;
}

    .social-links a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(212,175,55,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: var(--gold);
    }

        .social-links a:hover {
            background: var(--gold);
            color: var(--dark);
        }

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.4rem;
        color: var(--dark);
    }

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
    }

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-control.is-invalid {
    border-color: #c0392b;
}

.form-error {
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 0.3rem;
    display: none;
}

.form-control.is-invalid + .form-error {
    display: block;
}

/* Contact cards */
.contact-card {
    padding: 1.75rem;
    text-align: center;
    height: 100%;
}

    .contact-card .icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        background: var(--maroon-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--maroon);
        font-size: 1.35rem;
    }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(var(--gold), var(--maroon));
    }

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 0.35rem;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--gold);
        border: 3px solid var(--cream);
        box-shadow: 0 0 0 2px var(--gold);
    }

    .timeline-item h4 {
        font-size: 1.05rem;
        color: var(--maroon);
    }

    .timeline-item .year {
        font-size: 0.8rem;
        color: var(--gold-dark);
        letter-spacing: 0.08em;
        margin-bottom: 0.35rem;
    }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item .cap {
        position: absolute;
        inset: auto 0 0 0;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(27,27,27,0.8));
        color: white;
        font-size: 0.85rem;
        transform: translateY(100%);
        transition: transform var(--transition);
    }

    .gallery-item:hover .cap {
        transform: translateY(0);
    }

/* About split */
.about-split {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-split {
        grid-template-columns: 1fr 1fr;
    }
}

.about-split > .reveal > p:not(.section-eyebrow):not(.section-sub) {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-split .list-check {
    margin-top: 0.5rem;
}

    .about-split .list-check li {
        color: var(--text);
        font-weight: 500;
    }

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-image img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

    .about-image .frame {
        position: absolute;
        inset: 12px;
        border: 1px solid rgba(212,175,55,0.5);
        border-radius: calc(var(--radius) - 4px);
        pointer-events: none;
    }

/* Achievements */
.section-stats {
    background: linear-gradient(135deg, rgba(123, 17, 19, 0.06), rgba(212, 175, 55, 0.12)), var(--cream-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.28);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    position: relative;
    overflow: hidden;
}

    .section-stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 15% 50%, rgba(123, 17, 19, 0.08), transparent 45%), radial-gradient(ellipse at 85% 40%, rgba(212, 175, 55, 0.18), transparent 42%);
        pointer-events: none;
    }

    .section-stats .container-ay {
        position: relative;
        z-index: 1;
    }

.stat-box {
    text-align: center;
    padding: 1.75rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 8px 24px rgba(123, 17, 19, 0.05);
}

    .stat-box .num {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 2.75rem);
        color: var(--maroon);
        line-height: 1;
        margin-bottom: 0.55rem;
    }

    .stat-box .label {
        font-size: 0.88rem;
        color: var(--text);
        font-weight: 500;
        letter-spacing: 0.03em;
    }

/* Process steps */
.process-steps {
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    counter-increment: step;
}

    .process-step::before {
        content: counter(step, decimal-leading-zero);
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--gold);
        display: block;
        margin-bottom: 0.75rem;
        opacity: 0.85;
    }

/* Sidebar */
.sidebar-widget {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

    .sidebar-widget h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(212,175,55,0.25);
    }

.sidebar-list a {
    display: block;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Blog layout */
.blog-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .blog-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

.blog-main {
    min-width: 0;
}

.prose p {
    margin-bottom: 1.25rem;
    color: var(--text);
    line-height: 1.8;
}

.prose h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--maroon-dark);
}

/* Single blog article */
.blog-article {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem 2rem;
    box-shadow: var(--shadow);
}

@media (min-width: 700px) {
    .blog-article {
        padding: 2rem 2.25rem 2.4rem;
    }
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.blog-article-hero {
    margin: 0 0 1.35rem;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: var(--cream-dark);
    aspect-ratio: 16 / 9;
}

    .blog-article-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.blog-article-byline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

    .blog-article-byline strong {
        color: var(--maroon-dark);
    }

.blog-article-lead {
    font-family: var(--font-sub);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.blog-prose p {
    font-size: 1.02rem;
}

.blog-callout {
    margin: 1.5rem 0;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(123, 17, 19, 0.05), rgba(212, 175, 55, 0.1));
}

    .blog-callout strong {
        display: block;
        color: var(--maroon);
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.4rem;
    }

    .blog-callout p {
        margin: 0 !important;
        font-size: 0.95rem !important;
        color: var(--text) !important;
    }

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.blog-tags-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.blog-tag {
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(123, 17, 19, 0.07);
    color: var(--maroon-dark);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.blog-share {
    margin-top: 1.5rem;
}

.blog-share-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 0.7rem;
}

.blog-author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--cream-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
    color: var(--gold-light);
    font-size: 1.35rem;
}

.blog-author-box h3 {
    font-size: 1.05rem;
    color: var(--maroon-dark);
    margin: 0 0 0.4rem;
}

.blog-author-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 0.9rem;
}

.blog-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-size: 0.9rem;
    font-weight: 500;
}

    .blog-nav-links a {
        color: var(--maroon);
    }

.share-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .share-btns a {
        display: inline-flex;
        align-items: center;
        padding: 0.45rem 0.9rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        border: 1px solid rgba(212,175,55,0.35);
        color: var(--text);
        background: var(--cream);
    }

        .share-btns a:hover {
            background: var(--maroon);
            color: white;
            border-color: var(--maroon);
        }

/* Loading screen */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #preloader.is-done {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.preloader-logo {
    width: min(220px, 70vw);
    height: auto;
    animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
    }

    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 20px rgba(212,175,55,0.55));
    }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(212,175,55,0.2);
    margin-top: 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

    .preloader-bar span {
        display: block;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--maroon), var(--gold));
        animation: loadBar 1.2s ease forwards;
    }

@keyframes loadBar {
    to {
        width: 100%;
    }
}

/* Mouse glow */
.mouse-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

@media (min-width: 1100px) {
    .mouse-glow {
        opacity: 1;
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Swiper tweaks */
.swiper-pagination-bullet-active {
    background: var(--maroon) !important;
}

.aysr-swiper {
    padding-bottom: .5rem !important;
}

/* Utility */
.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

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

.text-left {
    text-align: left;
}

.mx-auto {
    margin-inline: auto;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list-check li {
        position: relative;
        padding: 0.5rem 0 0.5rem 1.75rem;
        color: var(--text);
    }

        .list-check li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.65rem;
            top: 0.75rem;
        }

.video-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-thumb .play {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(27,27,27,0.35);
    }

        .video-thumb .play span {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 1.25rem;
            box-shadow: var(--shadow-gold);
        }

/* Dark section variant */
.section-dark {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
}

    .section-dark .section-title,
    .section-dark h2,
    .section-dark h3 {
        color: var(--white);
    }

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

    .section-dark .section-sub {
        color: rgba(255,255,255,0.65);
    }

    .section-dark .card {
        background: rgba(255,255,255,0.04);
        border-color: rgba(212,175,55,0.2);
        color: rgba(255,255,255,0.85);
    }

        .section-dark .card h3 {
            color: var(--white);
        }

        .section-dark .card p {
            color: rgba(255,255,255,0.65);
        }

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--gold);
    font-size: 0.75rem;
}

    .ornament::before,
    .ornament::after {
        content: '';
        height: 1px;
        width: 60px;
        background: linear-gradient(90deg, transparent, var(--gold));
    }

    .ornament::after {
        background: linear-gradient(90deg, var(--gold), transparent);
    }

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.35);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

    .tab-btn.is-active,
    .tab-btn:hover {
        background: var(--maroon);
        color: white;
        border-color: var(--maroon);
    }

.tab-panel {
    display: none;
}

    .tab-panel.is-active {
        display: block;
    }

/* Lucky chips */
.lucky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 700px) {
    .lucky-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lucky-chip {
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid rgba(212,175,55,0.25);
}

    .lucky-chip .lbl {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.35rem;
    }

    .lucky-chip .val {
        font-family: var(--font-heading);
        color: var(--maroon);
        font-size: 1rem;
    }

/* Related */
.related-strip .card {
    height: 100%;
}

/* Pricing-ish feature list on service pages */
.benefit-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 0.85rem;
    padding: 1.15rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212,175,55,0.18);
}

    .benefit-item .check {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
    }

/* Search */
.search-box {
    display: flex;
    gap: 0.5rem;
    max-width: 560px;
    margin: 0 auto;
}

    .search-box .form-control {
        flex: 1;
    }

/* 404 */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 2rem) 1rem 3rem;
}

    .error-page .code {
        font-family: var(--font-heading);
        font-size: clamp(5rem, 15vw, 9rem);
        background: linear-gradient(135deg, var(--maroon), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

/* Print / reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
