.home-hero {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: clamp(32px,6vw,86px);
    align-items: center;
    padding-block: 68px 76px;
}

.home-title {
    font: clamp(62px,7.4vw,98px)/1 var(--serif);
    letter-spacing: -.065em;
    margin-top: 24px;
}

.home-title span {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}

.home-lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 430px;
    margin-top: 26px;
}

.home-hero .actions {
    margin-top: 30px;
}

.hero-note {
    margin-top: 30px;
    font: 11px/1.7 var(--mono);
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-note span+span {
    border-left: 1px solid var(--line);
    padding-left: 14px;
}

.specimen {
    position: relative;
    background: #050807;
    color: #e6efdf;
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 410px;
    isolation: isolate;
}

.specimen-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px 0;
    font: 10px/1.5 var(--mono);
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #c3d3c4;
    z-index: 1;
}

.specimen-top .pill {
    color: #b9cdba;
    border-color: #37473c;
    font-size: 10px;
}

.specimen-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #000;
    min-height: 260px;
    padding: 14px 4px;
}

.specimen-figure img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.specimen-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 26px 25px;
    background: #0d1713;
}

.specimen-bottom strong {
    display: block;
    font-size: 16px;
    letter-spacing: -.02em;
    font-weight: 500;
}

.specimen-bottom small {
    display: block;
    font-size: 11px;
    color: #b4c3b6;
    margin-top: 3px;
}

.specimen-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #4a5c4d;
    border-radius: 50%;
    transition: background .18s;
}

.specimen-link:hover {
    background: #294534;
}

.home-section {
    padding-block: 44px 64px;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 26px;
}

.section-heading .eyebrow {
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 30px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 570px;
    font-size: 15px;
    margin-top: 14px;
}

.semester-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.semester-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 250px;
    padding: 27px 26px 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafbf6;
    transition: border-color .2s,transform .2s;
}

.semester-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}

.semester-card--current {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #eff4e9;
}

.semester-card--current .semester-card__meta,.semester-card--current .semester-card__desc,.semester-card--current .semester-card__bottom {
    color: #c3d5c7;
}

.semester-card--current .pill {
    color: #edf4e5;
    border-color: #567766;
    background: transparent;
}

.semester-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.semester-card__meta {
    font: 11px var(--mono);
    color: var(--muted);
}

.semester-card__number {
    font: 42px/1.1 var(--serif);
    letter-spacing: -.04em;
    margin-top: 20px;
}

.semester-card__title {
    font-size: 21px;
    margin-top: 12px;
    letter-spacing: -.03em;
}

.semester-card__desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 8px;
    max-width: 260px;
}

.semester-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    margin-top: auto;
    padding-top: 26px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}

.work-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.work-cover {
    border-radius: 12px;
    background: #e5eadd;
    border: 1px solid var(--line);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
    transition: background .2s;
}

.work-cover--dark {
    background: #050807;
    border-color: #050807;
    padding: 10px;
}

.work-cover--white {
    background: white;
}

.work-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.work-card:hover .work-cover img {
    transform: scale(1.035);
}

.work-meta {
    font: 10px/1.7 var(--mono);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-top: 19px;
}

.work-title {
    font-size: 21px;
    line-height: 1.3;
    margin-top: 8px;
    letter-spacing: -.025em;
    max-width: 360px;
}

.work-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 10px;
}

.work-open {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
}

.profile-strip {
    display: grid;
    grid-template-columns: 80px minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 36px 0 56px;
    border-top: 1px solid var(--line);
}

.profile-strip img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(1);
}

.profile-strip h2 {
    font-size: 23px;
}

.profile-strip p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 620px;
    margin-top: 8px;
}
