/* =========================================================
   VEDASURYA AYURVEDA
   VISION • MISSION • LEGACY
   INSTITUTIONAL HERITAGE DESIGN
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


:root {
    --vs-green: #17251d;
    --vs-green-2: #26382b;
    --vs-deep: #101a14;

    --vs-cream: #f6f0e4;
    --vs-ivory: #fbf8f1;
    --vs-sand: #e5d8c1;

    --vs-gold: #b18a4a;
    --vs-gold-light: #d2b97f;

    --vs-brown: #55493b;
    --vs-muted: #777066;

    --vs-line: rgba(23,37,29,.15);

    --vs-white: #fffdf8;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--vs-ivory);
    color: var(--vs-brown);
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.vs-container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.vs-about-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 25px 0;
    color: white;
}

.vs-about-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vs-about-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    letter-spacing: 1px;
}

.vs-about-nav {
    display: flex;
    gap: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.vs-about-nav a {
    transition: .3s ease;
}

.vs-about-nav a:hover {
    color: var(--vs-gold-light);
}

.vs-about-contact {
    padding: 12px 21px;
    border: 1px solid rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   UNIVERSAL PAGE HERO
   ========================================================= */

.vs-about-hero {
    min-height: 690px;
    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(13,23,17,.92) 0%,
            rgba(13,23,17,.68) 46%,
            rgba(13,23,17,.18) 100%
        ),
        var(--about-image) center / cover no-repeat;
}

.vs-about-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 170px;

    background:
        linear-gradient(
            transparent,
            rgba(13,23,17,.7)
        );
}

.vs-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding-top: 90px;
}

.vs-eyebrow {
    color: var(--vs-gold-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    margin-bottom: 22px;
}

.vs-hero-content h1 {
    margin: 0;
    max-width: 850px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 10vw, 135px);
    line-height: .82;
    font-weight: 500;
    letter-spacing: -3px;
}

.vs-hero-content p {
    max-width: 570px;
    margin: 35px 0 0;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255,255,255,.8);
}

.vs-hero-rule {
    width: 85px;
    height: 1px;
    background: var(--vs-gold-light);
    margin-top: 35px;
}


/* =========================================================
   INTRODUCTION STATEMENT
   ========================================================= */

.vs-intro {
    padding: 145px 0;
    background: var(--vs-ivory);
}

.vs-intro-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.vs-section-label {
    color: var(--vs-gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.vs-intro-title {
    margin: 18px 0 0;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 54px;
    line-height: .98;
    font-weight: 500;
}

.vs-intro-large {
    margin: 0;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    line-height: 1.4;
}

.vs-intro-large::first-letter {
    color: var(--vs-gold);
}


/* =========================================================
   VISION PILLARS
   ========================================================= */

.vs-pillars {
    padding: 0 0 140px;
    background: var(--vs-ivory);
}

.vs-pillar {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;

    padding: 38px 0;

    border-top: 1px solid var(--vs-line);
}

.vs-pillar:last-child {
    border-bottom: 1px solid var(--vs-line);
}

.vs-pillar-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    color: var(--vs-gold);
}

.vs-pillar-content h3 {
    margin: 0 0 10px;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
}

.vs-pillar-content p {
    max-width: 760px;

    margin: 0;

    color: var(--vs-muted);

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   IMAGE + QUOTE
   ========================================================= */

.vs-image-statement {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.vs-image-statement img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vs-image-statement::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(13,23,17,.8),
            rgba(13,23,17,.15)
        );
}

.vs-image-statement-content {
    position: relative;
    z-index: 3;

    max-width: 680px;

    color: white;
}

.vs-image-statement-content small {
    color: var(--vs-gold-light);

    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}

.vs-image-statement-content h2 {
    margin: 20px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 67px;
    line-height: .92;
    font-weight: 400;
}

.vs-image-statement-content p {
    max-width: 530px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255,255,255,.78);
}


/* =========================================================
   MISSION — PRINCIPLE GRID
   ========================================================= */

.vs-mission-section {
    padding: 145px 0;
    background: var(--vs-cream);
}

.vs-mission-heading {
    max-width: 760px;
    margin-bottom: 80px;
}

.vs-mission-heading h2 {
    margin: 18px 0 20px;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: .9;
    font-weight: 500;
}

.vs-mission-heading p {
    max-width: 650px;

    font-size: 14px;
    line-height: 1.9;
    color: var(--vs-muted);
}


/* MISSION ITEMS */

.vs-mission-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);

    border-top: 1px solid var(--vs-line);
    border-left: 1px solid var(--vs-line);
}

.vs-mission-item {
    padding: 42px 38px;

    border-right: 1px solid var(--vs-line);
    border-bottom: 1px solid var(--vs-line);

    transition: .3s ease;
}

.vs-mission-item:hover {
    background: var(--vs-ivory);
}

.vs-mission-item-number {
    color: var(--vs-gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
}

.vs-mission-item h3 {
    margin: 15px 0 12px;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 500;
}

.vs-mission-item p {
    margin: 0;

    font-size: 13px;
    line-height: 1.9;

    color: var(--vs-muted);
}


/* =========================================================
   AYURVEDIC VIEW
   ========================================================= */

.vs-ayurveda-view {
    padding: 140px 0;

    background: var(--vs-green);
    color: white;
}

.vs-ayurveda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.vs-ayurveda-image {
    height: 600px;
    overflow: hidden;
}

.vs-ayurveda-image img {
    height: 100%;
    object-fit: cover;
}

.vs-ayurveda-copy small {
    color: var(--vs-gold-light);

    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}

.vs-ayurveda-copy h2 {
    margin: 20px 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    line-height: .95;
    font-weight: 400;
}

.vs-ayurveda-copy p {
    color: rgba(255,255,255,.72);

    font-size: 14px;
    line-height: 1.95;
}

.vs-sanskrit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 35px;
}

.vs-sanskrit-list span {
    padding: 9px 15px;

    border: 1px solid rgba(210,185,127,.45);

    color: var(--vs-gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
}


/* =========================================================
   LEGACY HERO / SPECIAL STYLE
   ========================================================= */

.vs-legacy-hero {
    min-height: 760px;

    position: relative;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(10,18,13,.94),
            rgba(10,18,13,.55),
            rgba(10,18,13,.15)
        ),
        var(--legacy-image) center / cover no-repeat;
}

.vs-legacy-content {
    position: relative;
    z-index: 3;

    color: white;

    padding-bottom: 110px;
}

.vs-legacy-number {
    color: var(--vs-gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    letter-spacing: 5px;
}

.vs-legacy-content h1 {
    max-width: 900px;
    position: relative;
    text-align: left;
    top: 100px;
    margin: 20px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 9vw, 118px);
    line-height: .82;
    font-weight: 400;
}


/* =========================================================
   LEGACY PROFILE
   ========================================================= */

.vs-legacy-profile {
    padding: 150px 0;

    background: var(--vs-ivory);
}

.vs-legacy-profile-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.vs-portrait-frame {
    position: relative;

    padding: 0 35px 35px 0;
}

.vs-portrait-frame::before {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75%;
    height: 75%;

    border: 1px solid var(--vs-gold);
}

.vs-portrait-frame img {
    position: relative;
    z-index: 2;

    height: 620px;
    object-fit: cover;
}

.vs-profile-label {
    color: var(--vs-gold);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.vs-profile-title {
    margin: 18px 0 30px;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    line-height: .95;
    font-weight: 500;
}

.vs-profile-copy {
    font-size: 14px;
    line-height: 2;
    color: var(--vs-muted);
}

.vs-profile-copy strong {
    color: var(--vs-green);
    font-weight: 500;
}


/* =========================================================
   HERITAGE STRIP
   ========================================================= */

.vs-heritage-strip {
    padding: 100px 0;

    background: var(--vs-sand);
}

.vs-heritage-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);

    border-top: 1px solid rgba(23,37,29,.2);
    border-bottom: 1px solid rgba(23,37,29,.2);
}

.vs-heritage-item {
    padding: 35px 20px;

    text-align: center;

    border-right: 1px solid rgba(23,37,29,.2);
}

.vs-heritage-item:last-child {
    border-right: none;
}

.vs-heritage-item span {
    display: block;

    color: var(--vs-gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
}

.vs-heritage-item small {
    display: block;

    margin-top: 8px;

    color: var(--vs-muted);

    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   PARAMPARA
   ========================================================= */

.vs-parampara {
    padding: 150px 0;

    background: var(--vs-green);
    color: white;
}

.vs-parampara-header {
    max-width: 750px;
    margin-bottom: 85px;
}

.vs-parampara-header small {
    color: var(--vs-gold-light);

    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}

.vs-parampara-header h2 {
    margin: 18px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 65px;
    line-height: .9;
    font-weight: 400;
}

.vs-parampara-header p {
    color: rgba(255,255,255,.7);

    font-size: 14px;
    line-height: 1.9;
}


/* PARAMPARA STEPS */

.vs-parampara-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.vs-parampara-step {
    padding: 45px 25px;

    border-right: 1px solid rgba(255,255,255,.18);
}

.vs-parampara-step:last-child {
    border-right: none;
}

.vs-parampara-step-number {
    color: var(--vs-gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

.vs-parampara-step h3 {
    margin: 15px 0 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
}

.vs-parampara-step p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   INCLUSIVE SPIRIT
   ========================================================= */

.vs-inclusive {
    padding: 140px 0;

    background: var(--vs-cream);
}

.vs-inclusive-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: center;
}

.vs-inclusive-image {
    height: 560px;
}

.vs-inclusive-image img {
    height: 100%;
    object-fit: cover;
}

.vs-inclusive-copy small {
    color: var(--vs-gold);

    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}

.vs-inclusive-copy h2 {
    margin: 20px 0;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    line-height: .92;
    font-weight: 500;
}

.vs-inclusive-copy p {
    color: var(--vs-muted);

    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   LIVING HERITAGE
   ========================================================= */

.vs-living-heritage {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.vs-living-heritage img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vs-living-heritage::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(13,23,17,.67);
}

.vs-living-content {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 850px;

    margin: auto;

    color: white;
}

.vs-living-content small {
    color: var(--vs-gold-light);

    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
}

.vs-living-content h2 {
    margin: 20px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    line-height: .9;
    font-weight: 400;
}

.vs-living-content p {
    max-width: 650px;

    margin: auto;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.vs-about-cta {
    padding: 130px 20px;

    background: var(--vs-ivory);

    text-align: center;
}

.vs-about-cta small {
    color: var(--vs-gold);

    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
}

.vs-about-cta h2 {
    max-width: 800px;

    margin: 20px auto 30px;

    color: var(--vs-green);

    font-family: "Cormorant Garamond", serif;
    font-size: 68px;
    line-height: .92;
    font-weight: 500;
}

.vs-about-cta p {
    max-width: 550px;

    margin: auto auto 35px;

    color: var(--vs-muted);

    font-size: 14px;
    line-height: 1.9;
}

.vs-about-button {
    display: inline-block;

    padding: 16px 35px;

    background: var(--vs-green);

    color: white;

    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;

    transition: .3s ease;
}

.vs-about-button:hover {
    background: var(--vs-gold);
}


/* =========================================================
   FOOTER
   ========================================================= */

.vs-about-footer {
    padding: 35px 20px;

    background: var(--vs-deep);

    text-align: center;

    color: rgba(255,255,255,.55);

    font-size: 11px;
    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet + Mobile */
@media (max-width: 1024px) {
    .vs-legacy-number, .vs-legacy-content h1 {
        top: 0;
        text-align: right;
    }
}

@media(max-width: 950px) {

    .vs-about-nav {
        display: none;
    }

    .vs-intro-grid,
    .vs-ayurveda-grid,
    .vs-legacy-profile-grid,
    .vs-inclusive-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vs-mission-list {
        grid-template-columns: 1fr;
    }

    .vs-heritage-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .vs-heritage-item:nth-child(3) {
        border-right: none;
    }

    .vs-heritage-item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(23,37,29,.2);
    }

    .vs-parampara-steps {
        grid-template-columns: repeat(2,1fr);
    }

    .vs-parampara-step:nth-child(2) {
        border-right: none;
    }

    .vs-parampara-step:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }
}


@media(max-width: 600px) {

    .vs-about-header {
        padding: 20px 0;
    }

    .vs-about-logo {
        font-size: 25px;
    }

    .vs-about-contact {
        display: none;
    }

    .vs-about-hero {
        min-height: 620px;
    }

    .vs-hero-content {
        padding-top: 60px;
    }

    .vs-hero-content h1 {
        font-size: 65px;
    }

    .vs-intro,
    .vs-mission-section,
    .vs-ayurveda-view,
    .vs-legacy-profile,
    .vs-parampara,
    .vs-inclusive {
        padding: 90px 0;
    }

    .vs-intro-title {
        font-size: 46px;
    }

    .vs-intro-large {
        font-size: 27px;
    }

    .vs-pillar {
        grid-template-columns: 55px 1fr;
        gap: 20px;
    }

    .vs-image-statement {
        min-height: 520px;
    }

    .vs-image-statement-content h2 {
        font-size: 50px;
    }

    .vs-mission-heading h2 {
        font-size: 50px;
    }

    .vs-ayurveda-image {
        height: 430px;
    }

    .vs-ayurveda-copy h2 {
        font-size: 48px;
    }

    .vs-legacy-hero {
        min-height: 650px;
    }

    .vs-legacy-content {
        padding-bottom: 70px;
    }

    .vs-legacy-content h1 {
        font-size: 64px;
        
    }

    .vs-portrait-frame img {
        height: 480px;
    }

    .vs-heritage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vs-heritage-item {
        border-right: 1px solid rgba(23,37,29,.2);
    }

    .vs-heritage-item:nth-child(3) {
        border-right: 1px solid rgba(23,37,29,.2);
    }

    .vs-heritage-item:nth-child(even) {
        border-right: none;
    }

    .vs-heritage-item:nth-child(-n+4) {
        border-bottom: 1px solid rgba(23,37,29,.2);
    }

    .vs-parampara-steps {
        grid-template-columns: 1fr;
    }

    .vs-parampara-step {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .vs-parampara-step:last-child {
        border-bottom: none;
    }

    .vs-inclusive-image {
        height: 400px;
    }

    .vs-inclusive-copy h2 {
        font-size: 48px;
    }

    .vs-living-heritage {
        min-height: 500px;
    }

    .vs-living-content h2 {
        font-size: 50px;
    }

    .vs-about-cta {
        padding: 90px 20px;
    }

    .vs-about-cta h2 {
        font-size: 50px;
    }
}