/* =========================================================
   ABUP WEBSITE — UPDATED STYLE
   Part 1 foundation, ready for Parts 2–4
   Theme: Saffron • Orange • Gold • Cream • Maroon
========================================================= */

/* Google Fonts are loaded from index.html.
   Recommended Devanagari fonts:
   Noto Serif Devanagari + Noto Sans Devanagari
*/

:root {
    --saffron: #e87516;
    --saffron-dark: #a9440a;
    --orange: #f28c18;
    --orange-light: #f6aa3b;

    --gold: #d6a52e;
    --gold-light: #f5d477;
    --gold-dark: #9b6b12;

    --cream: #fff8e7;
    --cream-dark: #f5ead0;

    --maroon: #7b1e12;
    --maroon-dark: #55140d;
    --red: #c73516;

    --brown: #3b2416;
    --brown-light: #674735;

    --white: #ffffff;
    --black: #17110d;

    --text: #443126;
    --muted: #77685d;

    --border: rgba(123, 30, 18, 0.13);

    --container: 1240px;
    --header-height: 82px;

    --shadow-sm: 0 5px 20px rgba(59, 36, 22, 0.08);
    --shadow-md: 0 12px 35px rgba(59, 36, 22, 0.13);
    --shadow-lg: 0 25px 60px rgba(59, 36, 22, 0.20);

    --radius-sm: 7px;
    --radius-md: 12px;
    --radius-lg: 22px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    background: var(--cream);
    color: var(--text);

    font-family:
        "Noto Sans Devanagari",
        "Noto Sans",
        Arial,
        sans-serif;

    line-height: 1.6;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

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

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--brown);
}


/* =========================================================
   COMMON
========================================================= */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-title {
    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
}

.section-subtitle {
    max-width: 720px;
    margin-top: 14px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}

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

.text-saffron {
    color: var(--saffron-dark);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    padding: 13px 0;

    background: linear-gradient(
        180deg,
        rgba(91, 27, 8, 0.90),
        rgba(91, 27, 8, 0.68)
    );

    border-bottom: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

.site-header.scrolled {
    padding: 9px 0;

    background: rgba(255, 250, 239, 0.97);

    border-bottom-color: rgba(123, 30, 18, 0.10);

    box-shadow: var(--shadow-sm);

    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 148px;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 5px 10px rgba(0,0,0,.18));

    transition:
        width var(--transition),
        transform var(--transition);
}

.logo:hover img {
    transform: translateY(-1px);
}

.site-header.scrolled .logo img {
    width: 128px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 1px;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 42px;

    padding: 8px 11px;

    color: rgba(255,255,255,.92);

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

    white-space: nowrap;

    border-radius: 6px;

    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 3px;

    height: 2px;

    border-radius: 10px;

    background: var(--gold-light);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* Membership CTA */

.nav-link[href="#membership"] {
    margin-left: 6px;
    padding-inline: 16px;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--brown) !important;

    border-radius: 30px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);
}

.nav-link[href="#membership"]::after {
    display: none;
}

.nav-link[href="#membership"]:hover {
    color: var(--brown) !important;

    transform: translateY(-2px);

    background: var(--white);
}


/* Scrolled navigation */

.site-header.scrolled .nav-link {
    color: var(--brown-light);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--maroon);
}

.site-header.scrolled .nav-link::after {
    background: var(--saffron);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    cursor: pointer;

    border-radius: 9px;

    background: rgba(255,255,255,.12);

    transition: background var(--transition);
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--white);

    border-radius: 10px;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.site-header.scrolled .menu-toggle {
    background: var(--saffron);
}


/* Hamburger animation */

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


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

.mobile-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    padding: 8px 5% 18px;

    background: rgba(255,250,239,.98);

    border-top: 1px solid rgba(123,30,18,.08);

    box-shadow: 0 18px 35px rgba(59,36,22,.13);

    backdrop-filter: blur(15px);
}

.mobile-menu.open {
    display: block;
}

.mobile-link {
    display: block;

    padding: 14px 9px;

    border-bottom: 1px solid rgba(123,30,18,.09);

    color: var(--brown);

    font-size: 15px;
    font-weight: 600;
}

.mobile-link:last-child {
    border-bottom: 0;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--saffron-dark);
}

.mobile-link[href="#membership"] {
    margin-top: 12px;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        var(--saffron),
        var(--saffron-dark)
    );

    color: var(--white);

    text-align: center;

    border-bottom: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(245,212,119,.28),
            transparent 26%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(199,53,22,.24),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #651b08 0%,
            #8d2c09 30%,
            #c9550b 63%,
            #ed8519 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(61,17,5,.72) 0%,
            rgba(90,25,6,.34) 52%,
            rgba(90,25,6,.06) 100%
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -180px;
    top: 50%;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    transform: translateY(-50%);
}


/* Decorative pattern */

.hero-pattern {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        radial-gradient(
            circle at 1px 1px,
            rgba(255,255,255,.65) 1px,
            transparent 0
        );

    background-size: 28px 28px;

    mask-image: linear-gradient(
        90deg,
        black,
        transparent 85%
    );

    pointer-events: none;
}

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

    min-height: 100svh;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);

    align-items: center;

    gap: clamp(30px, 5vw, 80px);

    padding-top: 105px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 750px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;

    padding: 7px 15px;

    border: 1px solid rgba(255,255,255,.30);
    border-radius: 50px;

    background: rgba(255,255,255,.08);

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .6px;

    backdrop-filter: blur(7px);
}

.hero h1 {
    margin-top: 22px;

    color: var(--white);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(52px, 7vw, 88px);
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -.5px;

    text-shadow: 0 5px 25px rgba(0,0,0,.12);
}

.hero h1 span {
    display: block;

    color: var(--gold-light);
}

.hero-sanskrit {
    margin-top: 14px;

    color: #fff0c8;

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(15px, 1.5vw, 19px);
}

.hero h2 {
    margin-top: 29px;

    color: var(--white);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(27px, 3.2vw, 43px);

    line-height: 1.35;
}

.hero h2 strong {
    color: var(--gold-light);
}

.hero-text {
    max-width: 680px;

    margin-top: 15px;

    color: rgba(255,255,255,.87);

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 31px;
}

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 23px;

    border-radius: var(--radius-sm);

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

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn-gold {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: var(--brown);

    box-shadow:
        0 10px 28px rgba(0,0,0,.18);
}

.btn-gold:hover {
    background: var(--white);

    transform: translateY(-3px);

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

.btn-gold span {
    font-size: 19px;
    line-height: 1;
}

.btn-light {
    border: 1px solid rgba(255,255,255,.42);

    background: rgba(255,255,255,.08);

    color: var(--white);

    backdrop-filter: blur(6px);
}

.btn-light:hover {
    border-color: var(--white);

    background: var(--white);

    color: var(--saffron-dark);

    transform: translateY(-3px);
}


/* =========================================================
   HERO LOGO
========================================================= */

.hero-logo {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.hero-logo img {
    position: relative;
    z-index: 2;

    width: min(100%, 380px);
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 24px 32px rgba(49,17,5,.32));

    animation: logoFloat 6s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    z-index: 1;

    width: min(80%, 390px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,238,166,.40) 0%,
            rgba(255,203,65,.15) 45%,
            transparent 72%
        );

    filter: blur(12px);
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;
    z-index: 3;

    right: 4%;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,.65);

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

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.scroll-indicator span {
    width: 28px;
    height: 1px;

    background: var(--gold-light);
}


/* =========================================================
   MISSION / CONTENT FOUNDATION
   These styles are ready for Part 2.
========================================================= */

.content-section {
    padding: 90px 0;

    background: var(--cream);
}

.content-section.alt {
    background: var(--white);
}

.section-heading {
    max-width: 800px;

    margin-bottom: 42px;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--saffron-dark);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mission-card {
    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}

.mission-card p {
    color: var(--text);

    font-size: 16px;
    line-height: 2;
}

.mission-list {
    display: grid;
    gap: 15px;

    margin-top: 25px;
}

.mission-list li {
    position: relative;

    padding: 17px 20px 17px 48px;

    background: var(--cream);

    border: 1px solid rgba(214,165,46,.18);
    border-radius: 10px;

    color: var(--brown);

    line-height: 1.9;
}

.mission-list li::before {
    content: "ॐ";

    position: absolute;

    top: 16px;
    left: 16px;

    color: var(--saffron);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   FUTURE SECTIONS
========================================================= */

.future-section {
    min-height: 350px;

    display: flex;
    align-items: center;

    padding: 80px 0;

    background: var(--cream);
}

.future-section:nth-child(even) {
    background: var(--white);
}

.future-section span {
    color: var(--saffron-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.future-section h2 {
    margin-top: 8px;

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 42px;
}

.future-section p {
    margin-top: 10px;

    color: var(--muted);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding-inline: 8px;

        font-size: 12px;
    }

    .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .logo img {
        width: 130px;
    }

    .hero-inner {
        gap: 30px;
    }

    .hero-logo img {
        width: min(100%, 320px);
    }
}


/* =========================================================
   MOBILE NAV BREAKPOINT
========================================================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 120px;
    }

    .hero-content {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero-logo {
        order: -1;
    }

    .hero-logo img {
        width: min(72vw, 280px);
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}


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

@media (max-width: 600px) {

    :root {
        --header-height: 68px;
    }

    .site-header {
        padding: 9px 0;
    }

    .site-header.scrolled {
        padding: 7px 0;
    }

    .header-inner {
        min-height: 48px;
    }

    .logo img,
    .site-header.scrolled .logo img {
        width: 105px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 100svh;

        background:
            radial-gradient(
                circle at 50% 28%,
                rgba(245,212,119,.25),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                #641a08,
                #a43d0a 50%,
                #e87516
            );
    }

    .hero-inner {
        min-height: 100svh;

        padding-top: 105px;
        padding-bottom: 55px;

        gap: 20px;
    }

    .hero-logo img {
        width: min(72vw, 275px);
    }

    .logo-glow {
        width: 220px;
    }

    .hero-kicker {
        max-width: 100%;

        padding: 6px 11px;

        font-size: 9px;
    }

    .hero h1 {
        margin-top: 17px;

        font-size: clamp(43px, 13vw, 64px);

        letter-spacing: 0;
    }

    .hero-sanskrit {
        margin-top: 10px;

        font-size: 13px;
    }

    .hero h2 {
        margin-top: 22px;

        font-size: 25px;
    }

    .hero-text {
        margin-top: 11px;

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

    .hero-actions {
        flex-direction: column;

        width: 100%;

        margin-top: 25px;
    }

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

    .section {
        padding: 65px 0;
    }

    .mission-card {
        padding: 22px;
    }

    .mission-card p {
        font-size: 14px;
    }

    .mission-list li {
        padding: 14px 15px 14px 42px;

        font-size: 14px;
    }

    .mission-list li::before {
        left: 13px;
        top: 13px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .logo img,
    .site-header.scrolled .logo img {
        width: 92px;
    }

    .hero-inner {
        padding-top: 95px;
    }

    .hero-logo img {
        width: 220px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero-text {
        font-size: 13px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .site-header {
        position: static;
        background: white;
        box-shadow: none;
    }

    .desktop-nav,
    .mobile-menu,
    .menu-toggle,
    .scroll-indicator {
        display: none !important;
    }

    .hero {
        min-height: auto;
        color: black;
        background: white;
    }

    .hero::before,
    .hero::after,
    .hero-pattern,
    .logo-glow {
        display: none;
    }
}
/* =========================================================
   PART 2 — MISSION & VISION
========================================================= */

.content-section {
    position: relative;
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(214,165,46,.10),
            transparent 28%
        ),
        var(--cream);
}

.content-section.alt {
    background:
        linear-gradient(
            180deg,
            #fffdf7,
            var(--cream)
        );
}

.section-heading {
    max-width: 850px;
    margin-bottom: 45px;
}

.center-heading {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    position: relative;

    display: inline-block;

    margin-bottom: 12px;

    color: var(--saffron-dark);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-title {
    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.25;
}

.section-subtitle {
    max-width: 760px;

    margin-top: 14px;

    color: var(--muted);

    font-size: 16px;
    line-height: 2;
}


/* Mission card */

.mission-card {
    position: relative;

    padding: clamp(25px, 4vw, 48px);

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(214,165,46,.24);
    border-radius: 20px;

    box-shadow: var(--shadow-md);

    overflow: hidden;
}

.mission-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 6px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--gold),
            var(--saffron),
            var(--maroon)
        );
}

.mission-card > p {
    color: var(--text);

    font-size: 16px;
    line-height: 2.1;
}

.mission-list {
    display: grid;

    gap: 15px;

    margin-top: 30px;
}

.mission-list li {
    position: relative;

    padding: 18px 20px 18px 52px;

    background:
        linear-gradient(
            90deg,
            #fff8e7,
            #fffdf7
        );

    border: 1px solid rgba(214,165,46,.20);
    border-radius: 12px;

    color: var(--brown);

    font-size: 15px;
    line-height: 1.9;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.mission-list li::before {
    content: "ॐ";

    position: absolute;

    top: 17px;
    left: 17px;

    color: var(--saffron);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 20px;
    font-weight: 700;
}

.mission-list li:hover {
    transform: translateX(5px);

    border-color: rgba(214,165,46,.45);

    box-shadow: var(--shadow-sm);
}

.mission-list strong {
    color: var(--maroon);
}


/* =========================================================
   VISION GRID
========================================================= */

.vision-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.vision-card {
    position: relative;

    padding: 30px 26px;

    min-height: 245px;

    background: var(--white);

    border: 1px solid rgba(123,30,18,.10);
    border-radius: 16px;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.vision-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: rgba(214,165,46,.08);
}

.vision-card:hover {
    transform: translateY(-7px);

    border-color: rgba(214,165,46,.35);

    box-shadow: var(--shadow-md);
}

.vision-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 23px;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(214,165,46,.22);
}

.vision-card h3 {
    position: relative;
    z-index: 2;

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 21px;

    line-height: 1.4;
}

.vision-card p {
    position: relative;
    z-index: 2;

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   VISION QUOTE
========================================================= */

.vision-quote {
    position: relative;

    max-width: 950px;

    margin: 55px auto 0;

    padding: 32px 35px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--maroon),
            var(--saffron-dark)
        );

    border-radius: 16px;

    color: var(--white);

    box-shadow: var(--shadow-md);

    overflow: hidden;
}

.vision-quote::before,
.vision-quote::after {
    content: "ॐ";

    position: absolute;

    color: rgba(255,255,255,.07);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 130px;
}

.vision-quote::before {
    left: 15px;
    bottom: -35px;
}

.vision-quote::after {
    right: 15px;
    top: -40px;
}

.vision-quote > span {
    position: relative;
    z-index: 2;

    color: var(--gold-light);

    font-size: 25px;
}

.vision-quote p {
    position: relative;
    z-index: 2;

    margin-top: 7px;

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(17px, 2vw, 23px);

    line-height: 1.8;
}

.vision-quote small {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 9px;

    color: rgba(255,255,255,.75);

    font-size: 12px;
}


/* =========================================================
   PART 2 RESPONSIVE
========================================================= */

@media (max-width: 950px) {

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

    .content-section {
        padding: 80px 0;
    }
}


@media (max-width: 600px) {

    .content-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.85;
    }

    .mission-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .mission-card > p {
        font-size: 14px;
        line-height: 1.9;
    }

    .mission-list {
        gap: 11px;
        margin-top: 22px;
    }

    .mission-list li {
        padding: 14px 14px 14px 43px;

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

    .mission-list li::before {
        top: 13px;
        left: 13px;

        font-size: 18px;
    }

    .vision-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .vision-card {
        min-height: auto;

        padding: 25px 22px;
    }

    .vision-card h3 {
        font-size: 19px;
    }

    .vision-card p {
        font-size: 13px;
    }

    .vision-quote {
        margin-top: 30px;
        padding: 25px 20px;
    }

    .vision-quote p {
        font-size: 16px;
    }

    .vision-quote small {
        font-size: 11px;
        line-height: 1.7;
    }
}

/* =========================================================
   PART 3 — TRUSTEE
========================================================= */

.trustee-section {
    background:
        linear-gradient(
            180deg,
            #fffdf7,
            var(--cream)
        );
}

.trustee-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.trustee-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid rgba(123,30,18,.10);
    border-radius: 16px;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.trustee-card:hover {
    transform: translateY(-7px);

    border-color: rgba(214,165,46,.40);

    box-shadow: var(--shadow-md);
}

.trustee-photo {
    position: relative;

    height: 245px;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(245,212,119,.45),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            var(--maroon),
            var(--saffron-dark)
        );
}

.trustee-photo::before {
    content: "";

    position: absolute;

    width: 155px;
    height: 155px;

    border: 2px solid rgba(255,255,255,.30);
    border-radius: 50%;
}

.trustee-photo::after {
    content: "";

    position: absolute;

    width: 125px;
    height: 125px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}

.trustee-photo span {
    position: relative;
    z-index: 2;

    color: var(--gold-light);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 70px;

    text-shadow:
        0 5px 20px rgba(0,0,0,.20);
}

.trustee-info {
    padding: 23px 20px 25px;

    text-align: center;
}

.trustee-role {
    color: var(--saffron);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.trustee-info h3 {
    margin-top: 6px;

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 20px;
}

.trustee-info p {
    margin-top: 8px;

    color: var(--muted);

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


/* =========================================================
   PART 3 — MEMBERSHIP
========================================================= */

.membership-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(245,212,119,.20),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #6a1d08,
            #9f370a 45%,
            #d96910
        );
}

.membership-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 50%;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;

    transform: translateY(-50%);
}

.membership-wrapper {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    align-items: center;

    gap: 60px;
}

.membership-content {
    color: var(--white);
}

.membership-content .section-kicker {
    color: var(--gold-light);
}

.membership-content h2 {
    margin-top: 5px;

    color: var(--white);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.3;
}

.membership-content > p {
    max-width: 720px;

    margin-top: 15px;

    color: rgba(255,255,255,.85);

    font-size: 15px;
    line-height: 1.95;
}

.membership-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px 20px;

    margin-top: 28px;
}

.membership-point {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: rgba(255,255,255,.90);

    font-size: 14px;
}

.membership-point span {
    flex: 0 0 23px;

    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    margin-top: 1px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--brown);

    font-size: 13px;
    font-weight: 900;
}

.membership-point p {
    line-height: 1.6;
}

.membership-btn {
    margin-top: 32px;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--brown);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);
}

.membership-btn:hover {
    background: var(--white);

    transform: translateY(-3px);
}


/* Membership emblem */

.membership-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-circle {
    position: relative;

    width: min(350px, 75vw);
    aspect-ratio: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;

    border: 2px solid rgba(245,212,119,.65);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.13),
            rgba(255,255,255,.025)
        );

    box-shadow:
        inset 0 0 0 12px rgba(255,255,255,.04),
        0 25px 50px rgba(0,0,0,.20);

    backdrop-filter: blur(5px);
}

.membership-circle::before {
    content: "";

    position: absolute;

    inset: 17px;

    border: 1px solid rgba(245,212,119,.35);
    border-radius: 50%;
}

.membership-om {
    position: relative;
    z-index: 2;

    color: var(--gold-light);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(60px, 7vw, 90px);

    line-height: 1;
}

.membership-circle strong {
    position: relative;
    z-index: 2;

    margin-top: 14px;

    color: var(--white);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(22px, 3vw, 32px);
}

.membership-circle small {
    position: relative;
    z-index: 2;

    margin-top: 2px;

    color: var(--gold-light);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 18px;
}


/* =========================================================
   PART 3 RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

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

    .membership-wrapper {
        gap: 35px;
    }
}


@media (max-width: 750px) {

    .membership-wrapper {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .membership-content > p {
        margin-inline: auto;
    }

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

    .membership-emblem {
        order: -1;
    }

    .membership-circle {
        width: 270px;
    }

    .membership-btn {
        width: 100%;
    }
}


@media (max-width: 600px) {

    .trustee-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .trustee-photo {
        height: 220px;
    }

    .trustee-info {
        padding: 20px;
    }

    .membership-section {
        padding: 70px 0;
    }

    .membership-content h2 {
        font-size: 33px;
    }

    .membership-content > p {
        font-size: 14px;
        line-height: 1.85;
    }

    .membership-points {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 23px;
    }

    .membership-point {
        font-size: 13px;
    }

    .membership-circle {
        width: 235px;
    }

    .membership-om {
        font-size: 62px;
    }

    .membership-circle strong {
        font-size: 22px;
    }

    .membership-circle small {
        font-size: 15px;
    }
}

/* =========================================================
   PART 4 — MATRIMONIAL
========================================================= */

.matrimonial-section {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(214,165,46,.12),
            transparent 28%
        ),
        var(--cream);
}

.matrimonial-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, .95fr);

    gap: 50px;

    align-items: stretch;
}

.matrimonial-content {
    padding: 42px;

    background: var(--white);

    border: 1px solid rgba(123,30,18,.10);
    border-radius: 20px;

    box-shadow: var(--shadow-md);
}

.matrimonial-badge {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 30px;
    font-weight: 800;
}

.matrimonial-content h3 {
    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 30px;
}

.matrimonial-content p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 15px;
    line-height: 2;
}

.matrimonial-content .btn {
    margin-top: 25px;
}

.matrimonial-features {
    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 16px;
}

.matrimonial-feature {
    display: flex;

    gap: 20px;

    padding: 24px;

    background: var(--white);

    border-left: 4px solid var(--gold);

    border-radius: 12px;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.matrimonial-feature:hover {
    transform: translateX(6px);

    box-shadow: var(--shadow-md);
}

.matrimonial-feature > span {
    flex: 0 0 45px;

    color: var(--saffron);

    font-size: 13px;
    font-weight: 800;
}

.matrimonial-feature h4 {
    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 19px;
}

.matrimonial-feature p {
    margin-top: 5px;

    color: var(--muted);

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


/* =========================================================
   PART 4 — CONTACT
========================================================= */

.contact-section {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #f9eed9
        );
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    gap: 60px;

    align-items: start;
}

.contact-info h2 {
    margin-top: 7px;

    color: var(--maroon);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: clamp(35px, 4vw, 52px);
}

.contact-info > p {
    max-width: 560px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 15px;
    line-height: 2;
}

.contact-items {
    display: grid;

    gap: 15px;

    margin-top: 35px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--maroon);

    color: var(--gold-light);

    font-size: 20px;
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.contact-item span {
    color: var(--saffron);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item strong {
    color: var(--brown);

    font-size: 14px;
}


/* Contact Form */

.contact-form-wrapper {
    padding: 35px;

    background: var(--white);

    border: 1px solid rgba(123,30,18,.10);
    border-radius: 20px;

    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;

    gap: 18px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.form-group label {
    color: var(--brown);

    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #e4d4bb;
    border-radius: 9px;

    outline: none;

    background: #fffdf9;

    color: var(--text);

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group textarea {
    resize: vertical;

    min-height: 125px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b4a18c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);

    box-shadow:
        0 0 0 3px rgba(169,68,10,.09);
}

.btn-submit {
    justify-content: center;

    border: 0;

    background:
        linear-gradient(
            135deg,
            var(--maroon),
            var(--saffron-dark)
        );

    color: var(--white);

    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.form-message {
    min-height: 20px;

    color: var(--saffron);

    font-size: 13px;

    text-align: center;
}


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

.site-footer {
    position: relative;

    padding-top: 70px;

    background:
        linear-gradient(
            135deg,
            #4d140b,
            #711d0f
        );

    color: rgba(255,255,255,.78);

    overflow: hidden;
}

.site-footer::before {
    content: "ॐ";

    position: absolute;

    right: 4%;
    top: -65px;

    color: rgba(245,212,119,.06);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 250px;
}

.footer-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .9fr
        1.1fr;

    gap: 45px;

    padding-bottom: 50px;
}

.footer-logo img {
    width: 130px;
    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 8px 15px rgba(0,0,0,.2)
        );
}

.footer-brand > p {
    margin-top: 15px;

    color: rgba(255,255,255,.78);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 16px;
}

.footer-motto {
    margin-top: 12px;

    color: var(--gold-light);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 18px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: var(--gold-light);

    font-family:
        "Noto Serif Devanagari",
        Georgia,
        serif;

    font-size: 18px;
}

.footer-column a {
    color: rgba(255,255,255,.72);

    font-size: 13px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: var(--gold-light);

    transform: translateX(4px);
}

.footer-column p {
    color: rgba(255,255,255,.65);

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

.footer-button {
    display: inline-flex !important;

    margin-top: 7px;

    padding: 10px 15px;

    border: 1px solid rgba(245,212,119,.40);
    border-radius: 7px;

    color: var(--gold-light) !important;
}

.footer-button:hover {
    background: rgba(245,212,119,.10);
}


/* Footer Bottom */

.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.52);

    font-size: 11px;
}

.footer-bottom span {
    color: var(--gold-light);
}


/* =========================================================
   PART 4 RESPONSIVE
========================================================= */

@media (max-width: 900px) {

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

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

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


@media (max-width: 600px) {

    .matrimonial-section,
    .contact-section {
        padding: 65px 0;
    }

    .matrimonial-content {
        padding: 25px 20px;
    }

    .matrimonial-content h3 {
        font-size: 25px;
    }

    .matrimonial-content p {
        font-size: 14px;
        line-height: 1.85;
    }

    .matrimonial-feature {
        padding: 18px;

        gap: 13px;
    }

    .matrimonial-feature h4 {
        font-size: 17px;
    }

    .contact-form-wrapper {
        padding: 22px 18px;

        border-radius: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

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

    .footer-logo img {
        margin-inline: auto;
    }

    .footer-column {
        align-items: center;

        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }
}