 :root {
     --bg: #0d3d2b;
     --bg-2: #0d3d2b;
     --bg-card: #111a14;
     --bg-card-h: #162019;
     --green-1: #1a5c35;
     --green-2: #22784a;
     --green-3: #2ea05f;
     --gold: #b8974a;
     --gold-light: #d4b06a;
     --text-1: #eef3ef;
     --text-2: #9ab5a1;
     --text-3: #5a7a62;
     --border: #1e2e22;
     --radius: 3px;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     background: var(--bg);
     color: var(--text-1);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 img {
     display: block;
     max-width: 100%;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 body::before {
     content: '';
     position: fixed;
     inset: 0;
     z-index: 0;
     pointer-events: none;
     opacity: 0.025;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
     background-size: 200px;
 }



 /* HERO */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 60px 40px;
    overflow: hidden;
}

 .hero-img {
     position: absolute;
     inset: 0;
     z-index: 0;
 }

 .hero-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center 30%;
 }

 .hero-img::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(10, 15, 12, 0.3) 0%, rgba(10, 15, 12, 0.6) 45%, rgba(10, 15, 12, 0.94) 78%, var(--bg) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 900px;
 }

 .hero-eyebrow {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-bottom: 28px;
 }

 .eyebrow-line {
     width: 40px;
     height: 1px;
     background: var(--green-3);
 }

 .eyebrow-text {
     font-size: 0.7rem;
     letter-spacing: 0.3em;
     text-transform: uppercase;
     color: var(--green-3);
     font-weight: 500;
 }

 .hero h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(3.5rem, 8vw, 7.5rem);
     font-weight: 300;
     line-height: 0.95;
     letter-spacing: -0.02em;
     color: var(--text-1);
     margin-bottom: 32px;
 }

 .hero h1 em {
     font-style: italic;
     color: var(--green-3);
 }

 .hero-desc {
     font-size: 1.05rem;
     line-height: 1.85;
     color: var(--text-2);
     max-width: 580px;
     font-weight: 300;
     border-left: 2px solid var(--green-1);
     padding-left: 24px;
 }

 .scroll-hint {
     position: absolute;
     bottom: 32px;
     right: 60px;
     z-index: 2;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
 }

 .scroll-hint span {
     font-size: 0.65rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--text-3);
     writing-mode: vertical-rl;
 }

 .scroll-line {
     width: 1px;
     height: 60px;
     background: linear-gradient(to bottom, var(--green-3), transparent);
     animation: scrollPulse 2s ease-in-out infinite;
 }

 @keyframes scrollPulse {

     0%,
     100% {
         opacity: 0.4;
         transform: scaleY(1);
     }

     50% {
         opacity: 1;
         transform: scaleY(1.1);
     }
 }

 /* COMMONS */
 .wrap {
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 60px;
 }

 section {
     position: relative;
     z-index: 1;
 }

 .label-row {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-bottom: 20px;
 }

 .label-dash {
     width: 28px;
     height: 1px;
     background: var(--green-3);
 }

 .label-text {
     font-size: 0.68rem;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--green-3);
     font-weight: 500;
 }

 .section-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 0.9;
    color: var(--text-1);
    letter-spacing: -0.01em;
}

 .section-h em {
     font-style: italic;
     color: var(--green-3);
 }

 /* WHY */
 .why-section {
     padding: 50px 0;
     background: var(--bg);
 }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 20px;
    align-items: start;
}
.why-left .section-h {
    margin-bottom: 6px;
}
.why-left p {
    color: #c3c3c3;
    margin-bottom: 10px;
    font-weight: 300;
}

 .why-right {
     padding-top: 8px;
 }

 .why-img {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 36px;
    /* border: 1px solid var(--border); */
}

 .why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    height: 400px;
}
 .why-img:hover img {
     transform: scale(1.04);
 }

.capabilities {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border: 1px solid var(--border);
}
 .why-inner .capabilities {
    grid-column-start: 1;
    grid-column-end: 3;
}

 .cap-item {
     padding: 14px 18px;
     border-bottom: 1px solid var(--border);
     border-right: 1px solid var(--border);
     font-size: 0.82rem;
     color: var(--text-2);
     font-weight: 400;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: background 0.2s, color 0.2s;
 }

 .cap-item:hover {
     background: var(--bg-card);
     color: var(--text-1);
 }

 .cap-item:nth-child(2n) {
     border-right: none;
 }

 .cap-item:nth-last-child(-n+2) {
     border-bottom: none;
 }

 .cap-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--green-3);
     flex-shrink: 0;
 }

 /* MOSAIC */
 .mosaic {
     display: grid;
     grid-template-columns: 1.6fr 1fr 1fr;
     grid-template-rows: 260px 260px;
     gap: 3px;
 }

 .mosaic-item {
     overflow: hidden;
     position: relative;
 }

 .mosaic-item:first-child {
     grid-row: span 2;
 }

 .mosaic-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s ease, filter 0.7s ease;
     filter: brightness(0.72) saturate(0.65);
 }

 .mosaic-item:hover img {
     transform: scale(1.07);
     filter: brightness(0.88) saturate(0.9);
 }

 .mosaic-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 40px 20px 16px;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
     font-size: 0.68rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.75);
     font-weight: 500;
 }

 /* PARTNERSHIPS SECTION */
.partnerships-section {
    padding: 30px 0;
    background: var(--bg-2);
}

.partnerships-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
    margin-bottom: 15px;
}
 .partnerships-header p {
     font-size: 0.975rem;
     line-height: 1.85;
     color: var(--text-2);
     font-weight: 300;
     align-self: end;
 }

 .cards-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: var(--border);
     border: 1px solid var(--border);
 }
.p-card {
    background: var(--bg-card);
    padding: 24px 20px 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}
 .p-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--green-1);
     transition: background 0.3s, height 0.3s;
 }

 .p-card:hover {
     background: var(--bg-card-h);
 }

 .p-card:hover::before {
     background: var(--green-3);
     height: 3px;
 }

.card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0px;
    transition: color 0.3s;
    letter-spacing: -0.03em;
}

 .p-card:hover .card-number {
     color: var(--green-1);
 }

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0px;
    line-height: 1.25;
}

.card-body {
    font-size: 0.875rem;
    line-height: 1.85;
    color: var(--text-2);
    font-weight: 300;
    margin-bottom: 0px;
}
 .card-items {
     list-style: none;
     margin-bottom: 8px;
 }

.card-items li {
    font-size: 0.82rem;
    color: var(--text-3);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 10px;
    transition: color 0.2s;
}

 .p-card:hover .card-items li {
     color: var(--text-2);
 }

 .card-items li::before {
     content: '›';
     color: var(--green-3);
     font-size: 1rem;
     flex-shrink: 0;
 }

 .card-items li:last-child {
     border-bottom: none;
 }

 .card-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.72rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     font-weight: 500;
     color: var(--green-3);
     border: 1px solid var(--green-1);
     padding: 10px 22px;
     transition: background 0.25s, color 0.25s, border-color 0.25s;
 }

 .card-btn:hover {
     background: var(--green-1);
     color: var(--text-1);
     border-color: var(--green-1);
 }

 .card-btn svg {
     width: 12px;
     height: 12px;
     transition: transform 0.2s;
 }

 .card-btn:hover svg {
     transform: translateX(3px);
 }

 /* QUOTE BAND */
.quote-band {
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

 .quote-inner {
     max-width: 820px;
     text-align: center;
 }

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 0.5;
    color: var(--green-1);
    margin-bottom: 2px;
    display: block;
}

 .quote-text {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(1.6rem, 3.5vw, 2.6rem);
     font-weight: 300;
     font-style: italic;
     line-height: 1.5;
     color: var(--text-1);
     margin-bottom: 28px;
 }

 .quote-attr {
     font-size: 0.72rem;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: var(--text-3);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
 }

 .quote-attr::before,
 .quote-attr::after {
     content: '';
     width: 30px;
     height: 1px;
     background: var(--text-3);
 }

 /* CLOSING */
 .closing-split {
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 580px;
 }

 .closing-img {
     overflow: hidden;
     position: relative;
 }

 .closing-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     filter: brightness(0.6) saturate(0.65);
 }

 .closing-img::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, transparent 55%, var(--bg-2) 100%);
 }
.closing-text {
    background: var(--bg-2);
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}
.closing-text .section-h {
    margin-bottom: 0;
}

 .closing-text p {
     font-size: 0.95rem;
     line-height: 1.9;
     color: var(--text-2);
     font-weight: 300;
     margin-bottom: 16px;
 }

 .interest-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin: 24px 0;
 }

 .interest-pill {
     padding: 6px 16px;
     border: 1px solid var(--border);
     font-size: 0.72rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--text-3);
     border-radius: 100px;
     transition: border-color 0.2s, color 0.2s;
 }

 .interest-pill:hover {
     border-color: var(--green-3);
     color: var(--green-3);
 }

 .email-link {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     color: var(--gold-light);
     font-size: 0.95rem;
     font-weight: 500;
     margin-bottom: 28px;
     transition: color 0.2s;
 }

 .email-link:hover {
     color: var(--gold);
 }

 .email-link::before {
     content: '→';
     color: var(--green-3);
 }

 .cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: var(--green-2);
     color: var(--text-1);
     padding: 14px 32px;
     font-size: 0.78rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     font-weight: 500;
     border: 1px solid transparent;
     transition: background 0.25s, border-color 0.25s, color 0.25s;
     width: fit-content;
 }

 .cta-btn:hover {
     background: transparent;
     border-color: var(--green-2);
     color: var(--green-3);
 }



 /* ANIMATIONS */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(32px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-eyebrow {
     animation: fadeUp 0.9s ease both;
 }

 .hero h1 {
     animation: fadeUp 0.9s 0.15s ease both;
 }

 .hero-desc {
     animation: fadeUp 0.9s 0.3s ease both;
 }

 /* RESPONSIVE */
 @media (max-width: 960px) {


     .hero {
         padding: 30px 15px 30px;
         min-height: auto;
     }

     .wrap {
         padding: 0 15px;
     }

     .why-inner {
         grid-template-columns: 1fr;
         gap: 10px;
     }

     .partnerships-header {
         grid-template-columns: 1fr;
         gap: 24px;
         margin-bottom: 40px;
     }

     .cards-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .mosaic {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: 200px 200px 200px;
     }

     .mosaic-item:first-child {
         grid-row: span 1;
     }

     .closing-split {
         grid-template-columns: 1fr;
     }

     .closing-img {
         height: 370px;
     }

     .closing-text {
         padding: 48px 24px;
     }



     .quote-band {
         padding: 40px 15px;
     }

     .scroll-hint {
         display: none;
     }

     .hero h1 {
         margin-bottom: 20px;
     }

     .why-left .section-h {
         margin-bottom: 6px;
     }

     .why-section {
         padding: 40px 0;
     }

     .learning-one_image {
         border-radius: 20px;
         margin-left: 0;
         border: 5px solid var(--white-color);
     }

     .cap-item {
         padding: 10px 10px;
         font-size: 0.82rem;
         gap: 5px;
     }

     .mosaic>.mosaic-item:last-child {
         grid-column-start: 1;
         grid-column-end: 3;
     }

     .p-card {
         padding: 30px 20px;
     }

     .closing-text .section-h {
         margin-bottom: 0;
     }

     .interest-pill {
         border: 1px solid #fff;
         color: #fff;
     }
 }
 