@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');
:root {
    --green: #123d2d;
    --green2: #1e5a42;
    --gold: #d8b45b;
    --cream: #f6f4ee;
    --dark: #0b1c14;
    --text: #172019;
    --muted: #68736c
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--text);
    line-height: 1.55
}

a {
    color: inherit
}

.wrap {
    width: min(1120px,calc(100% - 36px));
    margin: auto
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(11,28,20,.96);
    color: white;
    border-bottom: 1px solid #ffffff18
}

nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800
}

.logo {
    width: 52px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    letter-spacing: .08em
}

.links {
    display: flex;
    gap: 20px;
    align-items: center
}

.links a {
    text-decoration: none;
    font-size: .88rem;
    color: #ffffffe0
}

.links a:hover {
    color: var(--gold)
}

.hero {
    background: linear-gradient(120deg,var(--dark),var(--green),var(--green2));
    color: white;
    padding: 100px 0 90px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 70px;
    align-items: center
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: .76rem;
    color: var(--gold)
}

h1 {
    font-family: "Montserrat", Georgia, serif;
    font-size: clamp(4rem,9vw,7.8rem);
    line-height: .9;
    margin: 12px 0
}

.hero h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffffe0
}

.hero p {
    max-width: 700px;
    color: #ffffffc4
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn {
    display: inline-block;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800
}

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

.secondary {
    border: 1px solid #ffffff75;
    color: white
}

.card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 50px #0003;
    overflow: hidden
}

.photo {
    min-height: 210px;
    display: grid;
    place-items: center;
    text-align: center;
    background: repeating-linear-gradient(130deg,#2d7658 0 20px,#27684f 20px 40px);
    color: #ffffffbf;
    font-weight: 800
}

.snapshot {
    padding: 24px;
    color: var(--text)
}

.snapshot h3 {
    margin-top: 0
}

.snapshot div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8ece9;
    padding: 8px 0;
    font-size: .9rem
}

.snapshot div:last-child {
    border: 0
}

.snapshot span:first-child {
    color: var(--muted)
}

section {
    padding: 90px 0;
    scroll-margin-top: 72px
}

.cream {
    background: var(--cream)
}

.dark {
    background: var(--dark);
    color: white
}

.green {
    background: linear-gradient(120deg,var(--green),var(--green2));
    color: white
}

.title {
    max-width: 760px;
    margin-bottom: 40px
}

.title h2 {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2.3rem,5vw,4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 6px 0 12px;
}

.title p {
    color: var(--muted)
}

.dark .title p,.green .title p {
    color: #ffffffad
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.stat {
    background: white;
    border: 1px solid #dde4df;
    border-radius: 16px;
    padding: 28px
}

.stat strong {
    display: block;
    font: 700 2.8rem Georgia,serif;
    color: var(--green)
}

.stat span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    font-weight: 700
}

.about {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    margin-top: 55px
}

.about p {
    color: var(--muted)
}

.strengths {
    background: var(--green);
    color: white;
    border-radius: 16px;
    padding: 28px
}

.strengths ul {
    padding-left: 20px;
    margin-bottom: 0
}

.strengths li {
    margin: 9px 0
}

.tablebox {
    overflow: auto;
    border-radius: 16px;
    background: white
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--text)
}

th,td {
    text-align: left;
    padding: 16px 18px
}

th {
    background: var(--green);
    color: white;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .08em
}

tbody tr:nth-child(even) {
    background: #f4f7f4
}

td {
    border-top: 1px solid #e7ece8;
    font-size: .9rem
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.video,.award,.coach,.academic {
    border-radius: 16px;
    overflow: hidden
}

.video {
    border: 1px solid #dde4df;
    background: white
}

.video-screen {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg,var(--dark),var(--green2));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800
}

.play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: grid;
    place-items: center;
    margin: auto auto 8px
}

.video-copy {
    padding: 20px
}

.video-copy h3 {
    margin: 0 0 5px
}

.video-copy p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem
}

.academic {
    background: #ffffff12;
    border: 1px solid #ffffff20;
    padding: 26px
}

.academic strong {
    font: 700 2.7rem Georgia,serif;
    color: var(--gold)
}

.academic p {
    color: #ffffffad
}

.awards {
    display: grid;
    gap: 14px
}

.award {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    background: white;
    border: 1px solid #dde4df;
    padding: 22px
}

.award .year {
    color: var(--green);
    font-weight: 800
}

.award h3 {
    margin: 0 0 5px
}

.award p {
    margin: 0;
    color: var(--muted)
}

.coach {
    background: #ffffff0f;
    border: 1px solid #ffffff19;
    padding: 26px
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-weight: 800
}

.coach h3 {
    margin-bottom: 3px
}

.coach p {
    color: #ffffffb6;
    font-size: .9rem
}

.role {
    color: var(--gold)!important
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

.contact p {
    color: var(--muted)
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 18px 50px #00000017
}

.contact-card a {
    color: var(--green);
    font-weight: 700;
    text-decoration: none
}

footer {
    background: #07110c;
    color: #ffffffa8;
    padding: 30px 0
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .82rem
}

@media(max-width:850px) {
    .hero-grid,.about,.contact {
        grid-template-columns: 1fr
    }

    .stats,.grid3 {
        grid-template-columns: repeat(2,1fr)
    }

    .links {
        display: none
    }

    .hero {
        padding-top: 70px
    }
}

@media(max-width:560px) {
    .stats,.grid3 {
        grid-template-columns: 1fr
    }

    .award {
        grid-template-columns: 1fr
    }

    .footer {
        flex-direction: column
    }

    .hero h1 {
        font-size: 4rem
    }

    section {
        padding: 70px 0
    }
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

.highlight-row td {
    border-top: 3px solid #d8b45b;
    border-bottom: 3px solid #d8b45b;
}

.highlight-row td:first-child {
    border-left: 3px solid #d8b45b;
    border-radius: 8px 0 0 8px;
}

.highlight-row td:last-child {
    border-right: 3px solid #d8b45b;
    border-radius: 0 8px 8px 0;
}


.academic-trigger { cursor:pointer; transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.academic-trigger:hover,.academic-trigger:focus-visible { transform:translateY(-4px); border-color:var(--gold); background:#ffffff1c; outline:none; }
.academic-image-modal { position:fixed; inset:0; z-index:10000; display:none; align-items:center; justify-content:center; padding:54px 24px 24px; background:rgba(0,0,0,.9); }
.academic-image-modal.open { display:flex; }
.academic-image-modal-dialog { position:relative; max-width:min(1100px,94vw); max-height:90vh; }
.academic-image-modal-dialog img { display:block; max-width:100%; max-height:86vh; width:auto; height:auto; object-fit:contain; border-radius:12px; background:white; box-shadow:0 20px 60px rgba(0,0,0,.45); }
.academic-image-modal-close { position:absolute; top:-44px; right:0; width:38px; height:38px; border:0; border-radius:50%; background:white; color:#111; font-size:26px; line-height:1; cursor:pointer; }


.video-group {
    margin-top: 42px;
}

.video-group:first-of-type {
    margin-top: 0;
}

.video-group-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.video-group .grid3 {
    align-items: stretch;
}
