@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
    --ink: #17211d;
    --deep: #103d34;
    --paper: #f5f2eb;
    --sand: #e7e1d4;
    --lime: #c8ec58;
    --mute: #65675e;
    --line: rgba(23, 33, 29, .18);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --mono: 'DM Mono', monospace
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 15px/1.62 var(--sans);
    overflow-x: hidden
}

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

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.03
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 74px;
    padding: 0 3.3vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 242, 235, .94);
    backdrop-filter: blur(12px)
}

.wordmark {
    font: 600 29px/1 var(--serif);
    letter-spacing: -.08em
}

.wordmark span {
    color: #7a9d00
}

nav {
    display: flex;
    gap: 19px;
    font-size: 18px
}

nav a {
    transition: color .2s
}

nav a:hover {
    color: #6d8e00
}

.associate-button {
    justify-self: end;
    background: var(--deep);
    color: var(--paper);
    padding: 10px 15px;
    font-size: 16px
}

.associate-button span {
    margin-left: 8px
}

.menu-button {
    display: none
}

.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 7vw;
    align-items: center;
    padding: 4vw 8.5vw 7vw;
    position: relative;
    align-items: center;
}

.eyebrow,
.section-index {
    font: 10px/1.5 var(--mono);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #607069
}

.hero h1 {
    font-size: clamp(48px, 3.6vw, 104px);
    margin: 20px 0;
    line-height: 69px;
}

.subhead {
    font: italic clamp(19px, 2vw, 28px)/1.3 var(--serif);
    color: var(--deep);
}

.hero-body {
    margin: 24px 0 0;
    font-size: 18px;
}

.cta-line {
    margin: 22px 0;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.button {
    display: inline-block;
    border: 1px solid var(--deep);
    padding: 12px 17px;
    font: 16px var(--sans);
    cursor: pointer
}

.button-dark {
    background: var(--deep);
    color: var(--paper)
}

.button-line {
    background: transparent
}

.button-light {
    background: var(--paper);
    color: var(--deep);
    border-color: var(--paper)
}

.button span {
    margin-left: 9px
}


.hero-portrait span {
    z-index: 1
}

.hero-number {
    position: absolute;
    bottom: 32px;
    right: 3.3vw;
    font: 10px var(--mono);
    color: var(--mute)
}

.vision {
    background: var(--deep);
    color: var(--paper);
    padding: 110px 8.5vw
}

.vision .eyebrow {
    color: #b3cbbd
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 55px
}

.vision-column {
    padding: 0 12%;
    border-left: 1px solid rgba(245, 242, 235, .25)
}

.vision-column:first-child {
    border-left: 0;
    padding-left: 0
}

.vision h2 {
    font: 500 clamp(23px, 2.2vw, 34px)/1.3 var(--serif);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 32px
}

.vision.eyebrow {
    font-size: 24px;
}

.vision p {
    font-size: 18px;
    letter-spacing: -.03em
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4vw;
    padding: 130px 8.5vw
}
.journey h2{
    font-size: clamp(35px, 4vw, 37px) !important;
}
.section-grid h2 {
    font-size: clamp(35px, 4vw, 48px);
    margin: 38px 0;
    line-height: 63px;
    font-family: "DM Sans", sans-serif;
    font-style: italic;
}
.section-grid h2 b {
    font-size: 80px;
}
.section-grid h2 span {
    font-family: 'Playfair Display';
    font-size: 47px;
}
.journey {
    border-bottom: 1px solid var(--line)
}

.journey-content {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 8vw
}

.journey-copy p {
    font-size: 16px;
    margin-bottom: 25px
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid var(--line)
}

.timeline li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 15px;
    padding: 0 0 21px 23px;
    position: relative;
    font-size: 16px
}

.timeline li:before {
    content: '';
    position: absolute;
    left: -4px;
    top: 5px;
    width: 7px;
    height: 7px;
    background: var(--deep);
    border-radius: 50%
}

.timeline b {
    font: 16px var(--mono);
    color: #17211d;
    font-weight: bold;
}

.practice {
    padding: 130px 8.5vw;
    background: var(--sand)
}

.section-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw
}

.section-top h2 {
    font-size: clamp(35px, 4vw, 51px);
    margin: 0;
    line-height: 63px;
    font-style: italic;
}

.practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 60px
}



.practice-card>span {
    font: 18px var(--mono);
    color: #708471
}

.practice-card h3 {
    font-size: 35px;
    margin: 40px 0 17px
}

.practice-card p {
    color: #b5b5b5;
    margin: 0
}

.ecosystem {
    padding: 130px 8.5vw
}

.ecosystem-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw
}

.ecosystem h2 {
    font-size: clamp(36px, 4vw, 60px);
    margin-bottom: 23px;
    
}

.ecosystem-top>div p {
    max-width: 550px
}

.tabs {
    display: flex;
    gap: 23px;
    border-bottom: 1px solid var(--line);
    margin-top: 65px;
    overflow: auto
}

.tabs button {
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 0 0 15px;
    color: var(--mute);
    font: 12px var(--sans);
    white-space: nowrap;
    cursor: pointer
}

.tabs button[aria-selected='true'] {
    background: var(--deep);
    color: #ffffff;
    font-size: 20px;
}
.tabs button[aria-selected='true']:hover{
     color: #ffffff;
}

.tab-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    padding: 45px 0
}

.panel-art {
    aspect-ratio: 1.35;
    background: linear-gradient(135deg, #6d9486, #e2e9d7 55%, #4e6f68)
}

.tab-panel h3 {
    font-size: clamp(28px, 3vw, 45px);
    margin: 22px 0
}

.panel-label {
    font: 10px var(--mono);
    text-transform: uppercase;
    color: #6d806f
}

.text-link {
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    padding-bottom: 4px
}

.text-link span {
    margin-left: 10px;
    font-size: 16px
}

.conviction {
     background: var(--deep);
    color: var(--paper);
    padding: 130px 8.5vw;
    display: grid;
    grid-template-columns: 0.9fr 0.5fr;
    gap: 1vw;
}

.conviction .section-index {
    color: #c4d6c7
}

.conviction h2 {
       font-size: clamp(39px, 5.3vw, 50px);
    margin-bottom: 40px;
    line-height: 76px;
}

.conviction p {
    font-size: 16px;
    margin-bottom: 25px
}

.conviction blockquote {
    margin: 0 0 55px;
    border-left: 2px solid var(--lime);
    padding: 8px 0 8px 25px;
    font: 500 clamp(28px, 3vw, 34px)/1.2 var(--serif);
    letter-spacing: -.035em
}

.conviction-closing {
    font: 500 25px/1.3 var(--serif) !important;
    margin-top: 50px !important
}

.india {
    padding: 130px 0;
    background: #f8f6f0
}

.india .section-grid {
    padding: 0 8.5vw
}

.india-copy p {
    margin-bottom: 25px
}

.india-copy>p:first-child {
    font: 500 26px/1.36 var(--serif);
    letter-spacing: -.025em
}

.india-closing {
    font: 500 25px/1.3 var(--serif);
    margin-top: 45px !important
}

.record {
    padding: 130px 8.5vw;
    background: var(--sand)
}

.record-list {
    margin: 50px 0 0;
    border-top: 1px solid var(--line)
}

.record-item {
    border-bottom: 1px solid var(--line);
}

.record-item button {
    border: 0;
    background: transparent;
    width: 100%;
    display: grid;
    grid-template-columns: 46px 1fr 24px;
    text-align: left;
    align-items: center;
    padding: 24px 0;
    cursor: pointer
}

.record-item button span {
    font: 10px var(--mono);
    color: #718070
}

.record-item h3 {
    font-size: clamp(25px, 2.5vw, 38px);
    margin: 0
}

.record-item b {
    font-size: 21px;
    font-weight: 400;
    transition: transform .35s ease
}

.record-item p {
    max-width: 720px;
    max-height: 0;
    overflow: hidden;
    margin: 0 0 0 46px;
    color: #56584f;
    opacity: 0;
    transition: max-height .45s ease, margin-bottom .45s ease, opacity .25s ease
}

.record-item.open p {
    max-height: 500px;
    margin-bottom: 25px;
    opacity: 1
}

.record-item.open b {
    transform: rotate(45deg)
}

.associate {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 8vw;
    padding: 130px 8.5vw
}

.associate-intro h2 {
    font-size: clamp(39px, 4.5vw, 68px);
    margin: 38px 0
}

.contact-form {
    background: var(--sand);
    padding: 35px
}

.contact-form h3 {
    font-size: 31px;
    margin-bottom: 10px
}

.contact-form>p {
    color: #575a50
}

.contact-form label {
    display: block;
    margin-top: 17px;
    font-size: 11px
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #8d9186;
    background: transparent;
    padding: 8px 0;
    color: var(--ink);
    font: 14px var(--sans);
    border-radius: 0
}

.contact-form textarea {
    height: 80px;
    resize: vertical
}

.contact-form .consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 11px
}

.consent input {
    margin: 3px 0 0
}

.contact-form .button {
    margin-top: 24px
}

.honeypot {
    position: absolute;
    left: -9999px
}

.form-success {
    margin-top: 22px;
    color: var(--deep) !important;
    font-weight: 600
}

footer {
    padding: 22px 3.3vw;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    font: 10px var(--mono);
    text-transform: uppercase;
    color: var(--mute)
}

@media(max-width:800px) {
    .site-header {
        height: 64px;
        padding: 0 20px;
        grid-template-columns: 1fr auto auto;
        gap: 16px
    }

    .menu-button {
        display: block;
        background: 0;
        border: 0;
        font: 11px var(--sans);
        cursor: pointer
    }

    nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 63px;
        background: var(--paper);
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--line)
    }

    .site-header.menu-open nav {
        display: flex
    }

    .associate-button {
        padding: 8px 10px
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 20px 45px;
        min-height: auto
    }

    .hero-portrait {
        min-height: 0;
        margin-top: 30px
    }

    .hero-number {
        bottom: 20px;
        right: 20px
    }

    .vision,
    .practice,
    .ecosystem,
    .record,
    .associate {
        padding: 75px 20px
    }

    .vision-grid,
    .section-grid,
    .journey-content,
    .section-top,
    .ecosystem-top,
    .conviction,
    .associate {
        display: block
    }

    .vision-grid {
        margin-top: 38px
    }

    .vision-column,
    .vision-column:first-child {
        padding: 32px 0;
        border: 0;
        border-top: 1px solid rgba(245, 242, 235, .25)
    }

    .section-grid {
        padding: 75px 20px
    }

    .journey-content {
        margin-top: 35px
    }

    .timeline {
        margin-top: 36px
    }

    .practice-grid {
        grid-template-columns: 1fr;
        margin-top: 40px
    }

    .practice-card {
        min-height: 0;
        padding: 28px
    }

    .practice-card h3 {
        margin-top: 27px
    }

    .ecosystem-top>div {
        margin-top: 38px
    }

    .tabs {
        margin-top: 40px
    }

    .tab-panel {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .conviction {
        padding: 75px 20px
    }

    .conviction-copy {
        margin-top: 40px
    }

    .india .section-grid {
        padding: 0 20px
    }

    .india-copy {
        margin-top: 35px
    }

    .record-list {
        margin-top: 32px
    }

    .associate-intro {
        margin-bottom: 50px
    }

    .contact-form {
        padding: 25px
    }

    .hero h1 {
        font-size: clamp(47px, 13vw, 73px)
    }
}

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

/* Interaction and reading-size refinements */
[hidden] {
    display: none !important
}

.tab-panel.active {
    display: grid
}

.hero-portrait {
    overflow: hidden;
    background: linear-gradient(135deg, #d6d7cf, #718980);
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: saturate(.78) contrast(1.04);
    transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .5s
}

.hero-portrait:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.06)
}

.portrait-label {
    position: absolute;
    left: 106px;
    bottom: 16px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 10px 12px;
    background: rgba(16, 61, 52, .92);
    color: var(--paper);
    font: 16px / 1.45 var(--mono);
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    font-weight: 500;
}

.portrait-label svg {
    width: 15px;
    height: 15px;
    color: var(--lime);
    flex: none
}

.hero-facts {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    font: 11px var(--mono);
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: .025em
}

.hero-facts span {
    display: flex;
    gap: 7px;
    align-items: center
}

.hero-facts svg,
.button svg,
.associate-button svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px
}

.button svg {
    margin-left: 8px
}

.associate-button svg {
    margin-left: 7px;
    width: 13px
}

.section-top p,.section-grid p, .ecosystem-top p,.journey p, .journey-copy p, .conviction p, .india-copy p, .ecosystem-top>div p, .tab-panel>div>p, .associate-intro>p {
    font-size: 17px;
    line-height: 1.72;
}

.practice-card {
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.practice-card:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(16, 61, 52, .18);
    border-radius: 50%;
    right: -45px;
    bottom: -45px;
    z-index: -1;
    transition: transform .5s ease, background .5s ease
}

.practice-card:hover:after {
    transform: scale(2.1);
    background: rgba(200, 236, 88, .23)
}


.practice-card>span {
    display: flex;
    width: 41px;
    height: 41px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #000000;
}

.practice-card h3 {
    color: #fff
}

.practice-card {
    background: #103d34;
    padding: 36px;
    transition: transform .5s ease;
}

.practice-card:before {
    content: '↗';
    position: absolute;
    right: 30px;
    top: 24px;
    font: 27px/1 var(--serif);
    color: #fff
}

.practice-card:after {
    width: 180px;
    height: 180px;
    border-color: rgba(16, 61, 52, .25)
}

.practice-card p {
    font-size: 16px;
    line-height: 1.65
}

.tabs button {
    font-size: 16px;
    padding: 10px;
    color: #000;
}

.tab-panel>div>p {
    color: #50584f
}

.record-item p {
    font-size: 18px;
    line-height: 1.65
}


.contact-form label {
    font-size: 12px
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
    font-size: 16px
}

.image-placeholder {
    font-size: 11px
}

@media(max-width:800px) {
    .hero-facts {
        gap: 13px;
        flex-wrap: wrap;
        font-size: 10px
    }

    .journey-copy p,
    .conviction p,
    .india-copy p,
    .ecosystem-top>div p,
    .tab-panel>div>p,
    .associate-intro>p {
        font-size: 16px
    }

    .practice-card p {
        font-size: 16px
    }

    .portrait-label {
        bottom: 12px;
        left: 12px
    }
}

/* Hover feedback */
@media (hover:hover) {

    .button,
    .associate-button {
        transition: transform .24s cubic-bezier(.2, .7, .2, 1), box-shadow .24s ease, background .24s ease, color .24s ease, border-color .24s ease
    }

    .button-dark:hover,
    .associate-button:hover {
        transform: translateY(-3px);
        background: var(--lime);
        color: var(--deep);
        border-color: var(--lime);
        box-shadow: 0 9px 0 rgba(16, 61, 52, .18)
    }

    .button-line:hover {
        transform: translateY(-3px);
        background: var(--deep);
        border-color: var(--deep);
        color: var(--paper);
        box-shadow: 0 9px 0 rgba(16, 61, 52, .13)
    }

    .button-light:hover {
        transform: translateY(-3px);
        background: var(--lime);
        border-color: var(--lime);
        box-shadow: 0 9px 0 rgba(0, 0, 0, .18)
    }

    .button svg,
    .associate-button svg {
        transition: transform .24s ease
    }

    .button:hover svg,
    .associate-button:hover svg {
        transform: translate(3px, -3px)
    }

    nav a {
        position: relative
    }

    nav a:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px;
        height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .25s ease
    }

    nav a:hover:after {
        transform: scaleX(1);
        transform-origin: left
    }

    .tabs button {
        transition: color .2s ease, border-color .2s ease
    }

    .tabs button:hover {
        color: var(--deep);
        border-color: #9aaf5b
    }

    .practice-card {
        transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease
    }

    .practice-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 14px 0 rgba(16, 61, 52, .08);
        background-color: #fff;
    }

    .practice-card:hover>span {
        background: #103d34;
        color: #fff;
    }

    .practice-card:hover h3 {
        color: #103d34
    }

    .practice-card:hover p {
        color: #000;
    }

    .record-item button {
        transition: padding-left .25s ease, background .25s ease
    }

    .record-item button:hover {
        padding-left: 10px;
        background: rgba(200, 236, 88, .18)
    }

    .text-link {
        transition: color .2s ease, border-color .2s ease
    }

    .text-link:hover {
        color: #617d00;
        border-color: #617d00
    }
}

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

    .button,
    .associate-button,
    .button svg,
    .associate-button svg,
    .practice-card,
    .record-item button,
    .record-item b,
    .record-item p,
    nav a:after {
        transition: none !important
    }
}
