/* ============================================================
   CHOPAL PARIVAAR — DESIGN SYSTEM
   Shared across all pages. Edit here to update site-wide.
   ============================================================ */

:root {
    --red:        #B31E2B;
    --red-deep:   #8E1620;
    --red-dark:   #5C0C13;
    --gold:       #C9A14A;
    --gold-soft:  #E2C77A;
    --gold-deep:  #997522;
    --cream:      #FBF6EC;
    --cream-warm: #F3E9D2;
    --ink:        #1F1715;
    --ink-soft:   #4A3F3B;
    --line:       #E8DCC2;
    --white:      #FFFFFF;
    --black:      #0A0608;
    --black-soft: #181012;

    --grad-red:   linear-gradient(135deg, #B31E2B 0%, #8E1620 100%);
    --grad-gold:  linear-gradient(135deg, #E2C77A 0%, #C9A14A 50%, #997522 100%);
    --grad-warm:  linear-gradient(180deg, #FBF6EC 0%, #F3E9D2 100%);
    --grad-hero:  linear-gradient(180deg, rgba(28,8,10,.35) 0%, rgba(28,8,10,.55) 50%, rgba(28,8,10,.85) 100%);

    --shadow-sm:  0 2px 8px rgba(92, 12, 19, .06);
    --shadow-md:  0 8px 28px rgba(92, 12, 19, .10);
    --shadow-lg:  0 20px 60px rgba(92, 12, 19, .18);
    --shadow-gold:0 10px 30px rgba(201,161,74,.30);

    --radius-sm:  10px;
    --radius:     16px;
    --radius-lg:  24px;

    --container:  1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Inter",
        -apple-system,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
}
h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    font-weight: 600;
}
h2 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
}
h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}
h4 {
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}
p {
    color: var(--ink-soft);
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--gold-deep);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* decorative bits */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.eyebrow.left::after {
    display: none;
}

.section-title {
    text-align: center;
    margin-bottom: 14px;
}
.section-sub {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px auto 32px;
}
.divider-ornament span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.divider-ornament .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

/* ----- buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad-red);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(179, 30, 43, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(179, 30, 43, 0.45);
    color: var(--white);
}
.btn-secondary {
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
}
.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
}
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-gold {
    background: var(--grad-gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    color: var(--ink);
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s;
}
.btn:hover .arrow {
    transform: translateX(4px);
}

/* =========================================================
   HEADER — BLACK with gold logo
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 161, 74, 0.18);
    transition: all 0.3s;
}
.header.scrolled {
    background: rgba(10, 6, 8, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.25s;
}
.brand:hover {
    opacity: 0.9;
}
.brand img {
    height: 60px;
    width: auto;
    display: block;
}

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

/* Main nav links */
.nav a {
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.nav a:hover,
.nav a.active {
    color: var(--gold-soft);
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s;
}

.nav a:hover::after,
.nav a.active::after {
    width: calc(100% - 28px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #111;
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 0;
    color: rgba(255,255,255,0.85);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--gold-soft);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gold-soft);
    transition: all 0.3s;
}

@media (max-width: 1100px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 16px;
        border-top: 1px solid rgba(201, 161, 74, 0.18);
        box-shadow: var(--shadow-lg);
    }
    .nav.open {
        display: flex;
    }
    .nav a {
        width: 100%;
        padding: 12px 16px;
    }
    .menu-toggle {
        display: flex;
    }
    .header-cta .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    .brand img {
        height: 48px;
    }
}
@media (max-width: 540px) {
    .brand img {
        height: 40px;
    }
    .header-inner {
        padding: 10px 18px;
    }
}

/* =========================================================
   PAGE HEADER (inner-page hero band)
   ========================================================= */
.page-hero {
    position: relative;
    padding: 200px 0 100px;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    opacity: 0.4;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 8, 0.7) 0%, rgba(92, 12, 19, 0.5) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-hero .eyebrow {
    color: var(--gold-soft);
    justify-content: center;
}
.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
    background: var(--gold-soft);
}
.page-hero h1 {
    color: var(--white);
    margin-bottom: 18px;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 500;
}
.page-hero p.lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
}

/* breadcrumb */
.breadcrumb {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
    color: var(--gold-soft);
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* =========================================================
   HERO SLIDER (homepage)
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 740px;
    max-height: 1000px;
    overflow: hidden;
}
.slides {
    position: absolute;
    inset: 0;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 380px 28px 130px;
}
.slide-text {
    max-width: 880px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s 0.3s ease-out;
    pointer-events: none;
}
.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hero .eyebrow {
    color: var(--gold-soft);
    justify-content: center;
}
.hero .eyebrow::before,
.hero .eyebrow::after {
    background: var(--gold-soft);
}
.hero h1 {
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 22px;
    font-size: 48px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-soft);
    font-weight: 500;
}
.hero p.lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dots button {
    width: 36px;
    height: 4px;
    border: none;
    cursor: pointer;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    transition: all 0.3s;
}
.slider-dots button.active {
    background: var(--gold-soft);
    width: 56px;
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    right: 32px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
@media (max-width: 768px) {
    .scroll-cue {
        display: none;
    }
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats {
    background: var(--grad-warm);
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(201, 161, 74, 0.3);
}
.stat:last-child {
    border-right: none;
}
.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    border-radius: 50%;
    color: var(--red-dark);
    box-shadow: var(--shadow-gold);
}
.stat-icon svg {
    width: 26px;
    height: 26px;
}
.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--red-deep);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
    .stat {
        border-right: none;
    }
    .stat:nth-child(odd) {
        border-right: 1px solid rgba(201, 161, 74, 0.3);
    }
}

/* =========================================================
   SECTION DEFAULTS
   ========================================================= */
section {
    padding: 120px 0;
}
@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }
}
.section-light {
    background: var(--white);
}
.section-cream {
    background: var(--cream);
}
.section-warm {
    background: var(--grad-warm);
}

/* =========================================================
   ABOUT (homepage)
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text .eyebrow {
    justify-content: flex-start;
}
.about-text h2 {
    margin-bottom: 24px;
}
.about-text h2 em {
    font-style: italic;
    color: var(--red);
    font-weight: 600;
}
.about-text p {
    margin-bottom: 18px;
    font-size: 1.04rem;
    line-height: 1.75;
}
.about-text .signature {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: var(--ink-soft);
}
.about-text .signature strong {
    color: var(--red-deep);
    font-style: normal;
    font-weight: 600;
}
.about-text .ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.collage {
    position: relative;
    aspect-ratio: 1 / 1.05;
}
.collage-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 78%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-second {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 6px solid var(--white);
}
.collage-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-accent {
    position: absolute;
    top: 12%;
    right: 2%;
    width: 80px;
    height: 80px;
    z-index: 1;
}
.collage-tag {
    position: absolute;
    top: 8%;
    left: -20px;
    background: var(--grad-gold);
    color: var(--ink);
    padding: 8px 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    z-index: 4;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .collage {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
    background: var(--grad-warm);
    padding: 56px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-strip::before,
.cta-strip::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 161, 74, 0.18) 0%, transparent 70%);
}
.cta-strip::before {
    top: -100px;
    left: -100px;
}
.cta-strip::after {
    bottom: -100px;
    right: -100px;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.cta-strip h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    max-width: 620px;
}
.cta-strip h3 strong {
    font-style: normal;
    color: var(--red-deep);
    font-weight: 600;
}
@media (max-width: 768px) {
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(179, 30, 43, 0.08), rgba(201, 161, 74, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 24px;
}
.feature-icon svg {
    width: 30px;
    height: 30px;
}
.feature-card h4 {
    margin-bottom: 12px;
    color: var(--red-deep);
}
.feature-card p {
    font-size: 0.97rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   EVENT CARDS
   ========================================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.events-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.event-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.event-date-badge .day {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.event-date-badge .month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 3px;
}
.event-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.event-body h4 {
    color: var(--ink);
    margin-bottom: 14px;
}
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--ink-soft);
}
.event-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.event-meta svg {
    width: 14px;
    height: 14px;
    color: var(--gold-deep);
    flex-shrink: 0;
}
.event-body p {
    font-size: 0.93rem;
    margin-bottom: 20px;
    line-height: 1.65;
    flex-grow: 1;
}
.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.04em;
}
.event-link:hover {
    color: var(--gold-deep);
}
.event-link .arrow {
    transition: transform 0.3s;
}
.event-link:hover .arrow {
    transform: translateX(4px);
}
.section-cta {
    text-align: center;
}
@media (max-width: 900px) {
    .events-grid,
    .events-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MEMORIES GALLERY
   ========================================================= */
.memories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
    margin-bottom: 56px;
}
.memory {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.4s;
}
.memory::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(28, 8, 10, 0.85) 100%);
    transition: opacity 0.3s;
}
.memory-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    color: var(--white);
    transform: translateY(8px);
    transition: transform 0.4s;
}
.memory:hover .memory-content {
    transform: translateY(0);
}
.memory-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.memory-content .year {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
}
.memory-content .view {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transition: opacity 0.3s;
}
.memory:hover .memory-content .view {
    opacity: 1;
}
.memory:hover {
    transform: scale(1.015);
}

.memory.large {
    grid-column: span 2;
    grid-row: span 2;
}
.memory.tall {
    grid-row: span 2;
}
.memory.wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 220px);
    }
    .memory.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .memory.tall {
        grid-row: span 1;
    }
    .memory.wide {
        grid-column: span 2;
    }
}

/* uniform gallery (used on past events page) */
.uniform-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) {
    .uniform-gallery {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   WHATSAPP GROUPS
   ========================================================= */
.wa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.wa-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}
.wa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 161, 74, 0.5);
}
.wa-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: #25d366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}
.wa-icon svg {
    width: 28px;
    height: 28px;
}
.wa-card h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--red-deep);
    margin-bottom: 8px;
}
.wa-card p {
    font-size: 0.85rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 18px;
}
.wa-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s;
}
.wa-join:hover {
    background: #1ea952;
    color: white;
    transform: scale(1.04);
}
.wa-join svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .wa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .wa-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}
.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial .quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    height: 32px;
    margin-bottom: 8px;
}
.testimonial p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial .author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
}
.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.author-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
}
.author-role {
    font-size: 0.78rem;
    color: var(--ink-soft);
}
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.sponsor {
    aspect-ratio: 16 / 10;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    transition: all 0.35s;
    cursor: pointer;
    text-decoration: none;
}
.sponsor:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.sponsor-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.sponsor-name img{
    width: 150px;
}
.sponsor:hover .sponsor-name {
    color: var(--red-deep);
}

.sponsor-cta {
    text-align: center;
    padding: 48px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--gold);
}
.sponsor-cta h4 {
    font-style: italic;
    color: var(--red-deep);
    margin-bottom: 18px;
}

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

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--red-dark);
    color: var(--white);
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 12, 19, 0.92) 0%, rgba(28, 8, 10, 0.85) 100%);
}
.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.final-cta .eyebrow {
    color: var(--gold-soft);
    justify-content: center;
}
.final-cta .eyebrow::before,
.final-cta .eyebrow::after {
    background: var(--gold-soft);
}
.final-cta h2 {
    color: var(--white);
    margin-bottom: 24px;
}
.final-cta h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-soft);
}
.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
}
.final-cta .ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #14080a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 12px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand .brand img {
    height: 56px;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 360px;
}
.footer-col h5 {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gold-soft);
}
.footer-contact div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    margin-bottom: 12px;
}
.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.25s;
}
.socials a:hover {
    background: var(--gold);
    color: var(--red-dark);
}
.socials svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .om {
    color: var(--gold-soft);
    font-family: "Tiro Devanagari Hindi", serif;
    font-size: 1.4rem;
    margin: 0 6px;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
    .footer {
        padding: 60px 0 30px;
    }
}
@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   GENERIC: TWO-COL CONTENT, MISSION CARDS, FORM
   ========================================================= */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.two-col.reverse > :first-child {
    order: 2;
}
.two-col img.rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
    .two-col,
    .two-col.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-col.reverse > :first-child {
        order: initial;
    }
}
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}
.three-col.reverse > :first-child {
    order: 2;
}
.three-col img.rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
    .three-col,
    .three-col.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .three-col.reverse > :first-child {
        order: initial;
    }
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pillar {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    border: 1px solid var(--line);
    transition: all 0.35s;
}
.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-dark);
}
.pillar-icon svg {
    width: 32px;
    height: 32px;
}
.pillar h4 {
    color: var(--red-deep);
    margin-bottom: 12px;
}
.pillar p {
    font-size: 0.96rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

/* Tick list */
.event_details p{
    margin-bottom: 20px;
}
.event_details ul{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
    margin-top: 16px;
    margin-bottom: 30px;
}

.event_details ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--ink);
}
.event_details ul li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--grad-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C0C13' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.tick-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
    margin-top: 16px;
}
.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--ink);
}
.tick-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--grad-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C0C13' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .tick-list {
        grid-template-columns: 1fr;
    }
}

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-row.full {
    grid-template-columns: 1fr;
}
.form-field {
    display: flex;
    flex-direction: column;
}
.form-field label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--ink);
    transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15);
}
.form-field textarea {
    min-height: 130px;
    resize: vertical;
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 24px;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.form-consent input {
    margin-top: 4px;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 32px 24px;
    }
}

/* =========================================================
   BLOG CARDS
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.blog-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 12px;
}
.blog-card h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.25;
}
.blog-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 16px;
}
.blog-meta {
    font-size: 0.82rem;
    color: var(--ink-soft);
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.row.align-items-center{
    align-items: center !important;
}


@media(min-width: 1199px){
    .w-90{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .w-80{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .founder-image{
        height: 550px;
        width: 100%;
        object-fit: cover;
        margin-left: auto;
        margin-right: auto;
    }
    .founder_box p{
        font-size: 15px;
        height: 520px;
    }
    .pt-70{
        padding-top: 70px;
    }
}
@media(max-width: 767px){
    .sponsor{
        padding: 15px;
    }
    .hero-content{
        padding: 40px 20px 40px;
    }
    .hero {
        position: relative;
        height: 100vh;
        min-height: 440px;
        max-height: 600px;
        overflow: hidden;
    }
}
