button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.serif {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.italic {
    font-style: italic;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #6B6B6B;
    font-weight: 500;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===========================
   NAVBAR
=========================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 248, 242, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 209, 193, .5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    letter-spacing: .32em;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #444444;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color .3s;
}

.nav-links a:hover {
    color: rgb(17 17 17 / 85%);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: rgb(17 17 17 / 85%);
    transition: width .35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid #111111;
    padding: 11px 20px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .3s, color .3s, transform .3s;
}

.nav-cta:hover {
    background: #111111;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.burger {
    display: none;
    font-size: 20px;
}

@media (max-width:900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* ===========================
   HERO
=========================== */

.hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: rgb(17 17 17 / 85%);
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: #111111;
}

.hero h1 em {
    font-style: italic;
    color: rgb(17 17 17 / 85%);
    font-weight: 500;
}

.hero p.lead {
    font-size: 17px;
    color: #444444;
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.7;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    font-weight: 500;
}

.btn-primary {
    background: #111111;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: rgb(17 17 17 / 85%);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.btn-ghost {
    border: 1px solid #111111;
    color: #111111;
}

.btn-ghost:hover {
    background: #111111;
    color: #FFFFFF;
}

.btn i {
    transition: transform .35s;
}

.btn:hover i {
    transform: translateX(4px);
}

.hero-media {
    position: relative;
}

.hero-media .frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #F2F2F2;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.hero-media .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s ease;
}

.hero-media:hover .frame img {
    transform: scale(1.03);
}

.hero-media .badge {
    position: absolute;
    left: -28px;
    bottom: 36px;
    background: #FFFFFF;
    padding: 18px 22px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    max-width: 260px;
}

.hero-media .badge .k {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    font-style: italic;
    color: rgb(17 17 17 / 85%);
    line-height: 1;
}

.hero-media .badge .v {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin-top: 8px;
}

@media (max-width:900px) {

    .hero {
        padding: 56px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-media .badge {
        left: 12px;
        bottom: 16px;
        max-width: 220px;
    }
}

/* ===========================
   TRUST BAR
=========================== */

.trustbar {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    background: #F8F8F8;
    padding: 22px 0;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #6B6B6B;
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-inner span {
    opacity: .9;
}

/* ===========================
   SECTION BASE
=========================== */

section {
    padding: 110px 0;
}

.section-head {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-head h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 20px;
    color: #111111;
}

.section-head h2 em {
    font-style: italic;
    color: rgb(17 17 17 / 85%);
    font-weight: 500;
}

.section-head p {
    color: #444444;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

/* ===========================
   CHALLENGES
=========================== */

.challenges {
    background: #F8F8F8;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ch-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 38px 32px;
    transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
    position: relative;
    overflow: hidden;
}

.ch-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: rgb(17 17 17 / 85%);
    transition: height .5s ease;
}

.ch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    border-color: transparent;
}

.ch-card:hover::before {
    height: 100%;
}

.ch-card i {
    font-size: 22px;
    color: rgb(17 17 17 / 85%);
    margin-bottom: 22px;
    display: inline-block;
}

.ch-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    color: #111111;
}

.ch-card p {
    color: #6B6B6B;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.65;
}

@media (max-width:900px) {
    .challenge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .challenge-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   PHILOSOPHY
=========================== */

.philo {
    background: #FFFFFF;
}

.philo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philo-media {
    aspect-ratio: 5/6;
    overflow: hidden;
    background: #F2F2F2;
    position: relative;
}

.philo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philo-quote {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, .94);
    padding: 22px 26px;
    border-left: 2px solid rgb(17 17 17 / 85%);
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.35;
    color: #111111;
}

.philo h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(38px, 4.6vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin: 16px 0 24px;
    color: #111111;
}

.philo h2 em {
    font-style: italic;
    color: rgb(17 17 17 / 85%);
    font-weight: 500;
}

.philo p {
    color: #444444;
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 520px;
}

.philo ul {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.philo ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: #444444;
}

.philo ul li i {
    color: rgb(17 17 17 / 85%);
    margin-top: 4px;
}

@media (max-width:900px) {
    .philo-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

/* ===========================
   PROGRAMS
=========================== */

.programs {
    background: #F8F8F8;
}

.prog-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.prog-tab {
    padding: 11px 22px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #444444;
    transition: all .35s;
}

.prog-tab:hover {
    border-color: #111111;
}

.prog-tab.active {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pg-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.pg-thumb {
    aspect-ratio: 5/3;
    overflow: hidden;
    background: #F2F2F2;
}

.pg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.pg-card:hover .pg-thumb img {
    transform: scale(1.06);
}

.pg-body {
    padding: 26px 26px 30px;
}

.pg-tag {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(17 17 17 / 85%);
    font-weight: 500;
}

.pg-body h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 500;
    margin: 8px 0 10px;
    letter-spacing: -0.01em;
    color: #111111;
}

.pg-body p {
    color: #6B6B6B;
    font-size: 14.5px;
    margin: 0 0 20px;
    line-height: 1.65;
}

.pg-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #111111;
    transition: gap .35s;
}

.pg-card:hover .pg-arrow {
    gap: 16px;
    color: rgb(17 17 17 / 85%);
}

@media (max-width:900px) {
    .prog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .prog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   JOURNEY TIMELINE
=========================== */

.journey {
    background: #FFFFFF;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 24px;
}

.steps::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 36px;
    height: 1px;
    background: #E5E5E5;
}

.step {
    padding: 0 18px;
    text-align: left;
    position: relative;
}

.step .num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-style: italic;
    color: rgb(17 17 17 / 85%);
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
    transition: all .5s;
}

.step:hover .num {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111;
    transform: scale(1.05);
}

.step h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #111111;
}

.step p {
    color: #6B6B6B;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 220px;
}

@media (max-width:900px) {
    .steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 44px;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width:520px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   WHY ANDREW
=========================== */

.why {
    background: #F8F8F8;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.why-media {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #F2F2F2;
}

.why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.95);
}

.cred-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 36px;
}

.cred {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 22px;
    transition: transform .4s ease, border-color .4s ease;
}

.cred:hover {
    transform: translateY(-4px);
    border-color: rgb(17 17 17 / 85%);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.cred i {
    color: rgb(17 17 17 / 85%);
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.cred h5 {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 4px;
    color: #111111;
}

.cred p {
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.6;
}

@media (max-width:900px) {

    .why-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .cred-list {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width:600px) {

    .cred-list {
        grid-template-columns: 1fr;
    }

}

/* ===========================
   TESTIMONIALS
=========================== */

.testi {
    background: #FFFFFF;
}

.testi-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.testi-tab {
    padding: 10px 22px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #444444;
    transition: all .35s;
    border-radius: 999px;
    cursor: pointer;
}

.testi-tab:hover {
    border-color: #111111;
    color: #111111;
}

.testi-tab.active {
    background: #111111;
    color: #FFFFFF;
    border-color: #111111;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: #F8F8F8;
    padding: 34px 30px;
    border: 1px solid transparent;
    transition: all .4s ease;
    position: relative;
}

.testi-card:hover {
    background: #FFFFFF;
    border-color: #E5E5E5;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-5px);
}

.testi-card .q-mark {
    font-family: 'Libre Baskerville', serif;
    font-size: 60px;
    line-height: .6;
    color: rgb(17 17 17 / 85%);
    opacity: .4;
}

.testi-card blockquote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    margin: 14px 0 22px;
    color: #444444;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #E5E5E5;
    padding-top: 18px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #F2F2F2;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-meta .name {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

.testi-meta .role {
    font-size: 12px;
    color: #6B6B6B;
    letter-spacing: .06em;
}

@media (max-width:900px) {

    .testi-grid {
        grid-template-columns: 1fr;
    }

}

/* ===========================
   FUTURE SECTION
=========================== */

.future {
    background: #111111;
    color: #FFFFFF;
}

.future .eyebrow {
    color: #c9bfa8;
}

.future h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 58px);
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 14px 0 20px;
}

.future h2 em {
    font-style: italic;
    color: #d6b476;
    font-weight: 500;
}

.future .lead {
    color: #c9bfa8;
    max-width: 640px;
    margin: 0 auto 60px;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.ft-card {
    background: #111111;
    padding: 36px 28px;
    transition: background .4s;
}

.ft-card:hover {
    background: #1c1815;
}

.ft-card i {
    color: #d6b476;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.ft-card h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #FFFFFF;
}

.ft-card p {
    color: #a89f8b;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width:900px){
    .future-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:520px){
    .future-grid{
        grid-template-columns:1fr;
    }
}

/* ===========================
   FINAL CTA
=========================== */

.final{
    background:#F8F8F8;
    text-align:center;
    padding:130px 0;
    position:relative;
    overflow:hidden;
}

.final::before,
.final::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(138,106,59,.14),transparent 70%);
    filter:blur(20px);
}

.final::before{
    left:-140px;
    top:-160px;
}

.final::after{
    right:-140px;
    bottom:-160px;
}

.final .inner{
    position:relative;
    max-width:820px;
    margin:0 auto;
    padding:0 28px;
}

.final h2{
    font-family:'Cormorant Garamond',serif;
    font-weight:400;
    font-size:clamp(40px,5.4vw,76px);
    letter-spacing:-0.02em;
    line-height:1.02;
    margin:20px 0 24px;
    color:#111111;
}

.final h2 em{
    color:rgb(17 17 17 / 85%);
    font-style:italic;
}

.final p{
    color:#444444;
    font-size:17px;
    max-width:560px;
    margin:0 auto 40px;
    line-height:1.7;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111111;
    color:#a89f8b;
    padding:64px 0 32px;
}

.foot-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:44px;
}

.foot-brand{
    font-family:'Cormorant Garamond',serif;
    font-size:26px;
    letter-spacing:.32em;
    color:#FFFFFF;
    margin-bottom:14px;
}

.foot-brand + p{
    font-size:14px;
    line-height:1.7;
    max-width:320px;
}

.foot-col h5{
    font-size:12px;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:#d6b476;
    margin:0 0 18px;
}

.foot-col a{
    display:block;
    font-size:14px;
    margin-bottom:10px;
    color:#a89f8b;
    transition:color .3s;
}

.foot-col a:hover{
    color:#FFFFFF;
}

.foot-bar{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:52px;
    padding-top:24px;
    display:flex;
    justify-content:space-between;
    font-size:12px;
    letter-spacing:.06em;
    flex-wrap:wrap;
    gap:12px;
}

.socials{
    display:flex;
    gap:18px;
}

.socials a{
    color:#a89f8b;
    transition:color .3s;
}

.socials a:hover{
    color:#d6b476;
}

@media(max-width:900px){

    .foot-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:520px){

    .foot-grid{
        grid-template-columns:1fr;
    }

}

/* ===========================
   REVEAL
=========================== */

.reveal.in{
    opacity:1;
    transform:none;
}

.reveal.d1{transition-delay:.08s;}
.reveal.d2{transition-delay:.16s;}
.reveal.d3{transition-delay:.24s;}
.reveal.d4{transition-delay:.32s;}

/* ===========================
   GRAIN OVERLAY
=========================== */

body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.035;
    z-index:1;
    mix-blend-mode:multiply;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}