:root {
    --hfc-tt-green: #1c4b42;
    --hfc-tt-deep: #133d35;
    --hfc-tt-lime: #b4e41a;
    --hfc-tt-cream: #f4eed8;
    --hfc-tt-paper: #fcfbf7;
    --hfc-tt-ink: #1e332d;
    --hfc-tt-muted: #53665e;
    --hfc-tt-line: #dce2d7;
}

.hfc-tt-section,
.hfc-tt-section * {
    box-sizing: border-box;
}

.hfc-tt-section {
    width: 100%;
    font-family: inherit;
    color: var(--hfc-tt-ink);
}

.hfc-tt-inner {
    width: min(1400px, calc(100% - 96px));
    margin-inline: auto;
}

.hfc-tt-eyebrow {
    margin: 0 0 22px;
    color: var(--hfc-tt-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hfc-tt-section h1,
.hfc-tt-section h2,
.hfc-tt-section h3,
.hfc-tt-section p {
    margin-top: 0;
}

.hfc-tt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--hfc-tt-green);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.1;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.hfc-tt-button:hover,
.hfc-tt-button:focus-visible {
    background: var(--hfc-tt-deep);
    color: #fff !important;
    transform: translateY(-2px);
}

.hfc-tt-button--lime {
    background: var(--hfc-tt-lime);
    color: var(--hfc-tt-deep) !important;
}

.hfc-tt-button--lime:hover,
.hfc-tt-button--lime:focus-visible {
    background: #c0f12a;
    color: var(--hfc-tt-deep) !important;
}

.hfc-tt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--hfc-tt-ink) !important;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1.2;
}

.hfc-tt-text-link:hover,
.hfc-tt-text-link:focus-visible {
    color: var(--hfc-tt-green) !important;
}

/* Hero */
.hfc-tt-hero-section {
    overflow: hidden;
    background: var(--hfc-tt-paper);
    padding: 70px 0 58px;
}

.hfc-tt-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
    gap: clamp(48px, 6vw, 104px);
    align-items: center;
}

.hfc-tt-hero-copy {
    max-width: 700px;
}

.hfc-tt-hero-title {
    margin: 0 0 30px;
    color: var(--hfc-tt-ink);
    font-size: clamp(58px, 6.3vw, 112px);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: .97;
}

.hfc-tt-hero-title .hfc-tt-accent {
    color: var(--hfc-tt-green);
}

.hfc-tt-hero-description {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--hfc-tt-muted);
    font-size: clamp(20px, 1.45vw, 27px);
    line-height: 1.55;
}

.hfc-tt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 42px;
}

.hfc-tt-hero-media {
    position: relative;
    width: min(100%, var(--hfc-hero-size, 640px));
    aspect-ratio: 1;
    justify-self: end;
}

.hfc-tt-hero-circle {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #e8ece8;
    isolation: isolate;
}

.hfc-tt-hero-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 1px solid rgba(28, 75, 66, .12);
    border-radius: inherit;
    pointer-events: none;
}

.hfc-tt-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .85s ease;
}

.hfc-tt-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
}

.hfc-tt-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center !important;
}

.hfc-tt-hero-badge {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 8%;
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(78%, 510px);
    min-height: 90px;
    padding: 20px 26px;
    border: 1px solid rgba(28, 75, 66, .07);
    border-radius: 28px;
    background: rgba(252, 251, 247, .94);
    box-shadow: 0 18px 60px rgba(19, 61, 53, .12);
    color: var(--hfc-tt-green);
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.hfc-tt-brand-mark {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
}

.hfc-tt-brand-mark span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
}

.hfc-tt-brand-mark span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.hfc-tt-brand-mark span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.hfc-tt-brand-mark span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); }

.hfc-tt-hero-badge-text {
    min-width: 0;
    line-height: 1.2;
}

.hfc-tt-hero-badge-kicker {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

.hfc-tt-hero-badge-strong {
    display: block;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.02em;
}

/* Trust strip */
.hfc-tt-trust-section {
    background: var(--hfc-tt-paper);
}

.hfc-tt-trust-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 34px;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid var(--hfc-tt-line);
    border-bottom: 1px solid var(--hfc-tt-line);
}

.hfc-tt-trust-item {
    margin: 0;
    color: var(--hfc-tt-green);
    font-size: 16px;
    line-height: 1.5;
}

.hfc-tt-trust-item:nth-child(2) {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.hfc-tt-trust-item:last-child {
    text-align: right;
}

/* Shared title */
.hfc-tt-content-section {
    padding: 96px 0;
    background: #fff;
}

.hfc-tt-section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 44px;
}

.hfc-tt-section-heading-row h2,
.hfc-tt-support-copy h2 {
    margin-bottom: 0;
    color: var(--hfc-tt-ink);
    font-size: clamp(48px, 4.2vw, 72px);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1;
}

.hfc-tt-section-heading-row > p {
    max-width: 400px;
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Route cards */
.hfc-tt-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.hfc-tt-route-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--hfc-tt-line);
    border-radius: 26px;
    background: #fff;
    color: var(--hfc-tt-ink) !important;
    text-decoration: none !important;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hfc-tt-route-card:hover,
.hfc-tt-route-card:focus-visible {
    border-color: var(--hfc-tt-green);
    box-shadow: 0 22px 55px rgba(19, 61, 53, .09);
    transform: translateY(-5px);
}

.hfc-tt-route-image {
    width: 100%;
    aspect-ratio: 1.8 / 1;
    overflow: hidden;
    background: #eef1ee;
}

.hfc-tt-route-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .6s ease;
}

.hfc-tt-route-card:hover .hfc-tt-route-image img {
    transform: scale(1.025);
}

.hfc-tt-route-copy {
    padding: 34px 36px 30px;
}

.hfc-tt-route-copy .hfc-tt-eyebrow {
    margin-bottom: 16px;
}

.hfc-tt-route-copy h3 {
    margin: 0 0 15px;
    font-size: clamp(31px, 2.5vw, 43px);
    font-weight: 650;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.hfc-tt-route-copy > p:not(.hfc-tt-eyebrow) {
    margin-bottom: 30px;
    color: var(--hfc-tt-muted);
    font-size: 17px;
    line-height: 1.6;
}

.hfc-tt-route-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hfc-tt-route-meta {
    color: var(--hfc-tt-green);
    font-size: 15px;
    line-height: 1.55;
}

.hfc-tt-round-arrow {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--hfc-tt-lime);
    color: var(--hfc-tt-green);
    font-size: 25px;
    line-height: 1;
}

/* Support */
.hfc-tt-support-section {
    padding: 98px 0;
    background: var(--hfc-tt-cream);
}

.hfc-tt-support-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(55px, 7vw, 110px);
}

.hfc-tt-support-copy > p:not(.hfc-tt-eyebrow) {
    max-width: 590px;
    margin: 26px 0 0;
    color: var(--hfc-tt-muted);
    font-size: 18px;
    line-height: 1.65;
}

.hfc-tt-support-copy .hfc-tt-text-link {
    margin-top: 30px;
}

.hfc-tt-support-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hfc-tt-support-item {
    padding: 27px 0;
    border-bottom: 1px solid rgba(83, 102, 94, .25);
}

.hfc-tt-support-item:first-child {
    padding-top: 0;
}

.hfc-tt-support-item h3 {
    margin: 0 0 10px;
    color: var(--hfc-tt-ink);
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -.025em;
}

.hfc-tt-support-item p {
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: 17px;
    line-height: 1.6;
}

/* Process */
.hfc-tt-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.hfc-tt-process-step {
    padding-top: 25px;
    border-top: 1px solid var(--hfc-tt-line);
}

.hfc-tt-process-number {
    margin-bottom: 36px;
    color: var(--hfc-tt-green);
    font-size: 16px;
    font-weight: 700;
}

.hfc-tt-process-step h3 {
    margin: 0 0 14px;
    font-size: 29px;
    font-weight: 650;
    letter-spacing: -.03em;
}

.hfc-tt-process-step p {
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: 17px;
    line-height: 1.6;
}

.hfc-tt-process-step .hfc-tt-text-link {
    margin-top: 22px;
}

/* CTA */
.hfc-tt-cta-section {
    padding: 0 0 96px;
    background: #fff;
}

.hfc-tt-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 54px 60px;
    border-radius: 28px;
    background: var(--hfc-tt-green);
    color: #fff;
}

.hfc-tt-cta-copy h2 {
    margin: 0 0 11px;
    color: #fff;
    font-size: clamp(40px, 3.1vw, 54px);
    font-weight: 650;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.hfc-tt-cta-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hfc-tt-inner {
        width: min(100% - 64px, 1200px);
    }

    .hfc-tt-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
        gap: 48px;
    }

    .hfc-tt-hero-title {
        font-size: clamp(58px, 6.1vw, 82px);
    }
}

@media (max-width: 960px) {
    .hfc-tt-hero-section {
        padding-top: 48px;
    }

    .hfc-tt-hero-grid {
        grid-template-columns: 1fr;
    }

    .hfc-tt-hero-copy {
        max-width: 760px;
    }

    .hfc-tt-hero-media {
        width: min(100%, 620px);
        justify-self: center;
    }

    .hfc-tt-section-heading-row {
        display: block;
    }

    .hfc-tt-section-heading-row > p {
        max-width: 650px;
        margin-top: 22px;
    }

    .hfc-tt-support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hfc-tt-process-grid {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .hfc-tt-inner {
        width: min(100% - 40px, 720px);
    }

    .hfc-tt-hero-section {
        padding: 34px 0 34px;
    }

    .hfc-tt-eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .hfc-tt-hero-title {
        margin-bottom: 20px;
        font-size: clamp(48px, 14vw, 68px);
    }

    .hfc-tt-hero-description {
        font-size: 18px;
    }

    .hfc-tt-hero-actions {
        align-items: flex-start;
        gap: 22px;
        margin-top: 28px;
    }

    .hfc-tt-hero-media {
        margin-top: 4px;
    }

    .hfc-tt-hero-badge {
        bottom: 5%;
        width: 82%;
        min-height: 76px;
        padding: 15px 18px;
        border-radius: 22px;
    }

    .hfc-tt-brand-mark {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .hfc-tt-brand-mark span {
        width: 28px;
    }

    .hfc-tt-hero-badge-kicker {
        font-size: 13px;
    }

    .hfc-tt-hero-badge-strong {
        font-size: 15px;
    }

    .hfc-tt-trust-row {
        grid-template-columns: 1fr;
        gap: 9px;
        text-align: center;
    }

    .hfc-tt-trust-item,
    .hfc-tt-trust-item:nth-child(2),
    .hfc-tt-trust-item:last-child {
        text-align: center;
    }

    .hfc-tt-content-section,
    .hfc-tt-support-section {
        padding: 64px 0;
    }

    .hfc-tt-section-heading-row {
        margin-bottom: 30px;
    }

    .hfc-tt-section-heading-row h2,
    .hfc-tt-support-copy h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .hfc-tt-route-grid,
    .hfc-tt-process-grid {
        grid-template-columns: 1fr;
    }

    .hfc-tt-route-image {
        aspect-ratio: 1.45 / 1;
    }

    .hfc-tt-route-copy {
        padding: 27px 26px 25px;
    }

    .hfc-tt-process-step {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 0 14px;
    }

    .hfc-tt-process-number {
        grid-row: 1 / 4;
        margin: 2px 0 0;
    }

    .hfc-tt-process-step h3,
    .hfc-tt-process-step p,
    .hfc-tt-process-step .hfc-tt-text-link {
        grid-column: 2;
    }

    .hfc-tt-process-step .hfc-tt-text-link {
        justify-self: start;
    }

    .hfc-tt-cta-section {
        padding-bottom: 64px;
    }

    .hfc-tt-cta-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 34px 30px;
        border-radius: 24px;
    }
}

/* Detail page widgets */
.hfc-tt-page {
    --hfc-tt-green: #1c4b42;
    --hfc-tt-deep: #133d35;
    --hfc-tt-lime: #b4e41a;
    --hfc-tt-cream: #f4eed8;
    --hfc-tt-paper: #fcfbf7;
    --hfc-tt-ink: #1e332d;
    --hfc-tt-muted: #53665e;
    --hfc-tt-line: #dce2d7;
    position: relative;
    overflow: clip;
    background: var(--hfc-tt-paper);
    padding: 0 0 82px;
}

.hfc-tt-page-orbit {
    position: absolute;
    top: 34px;
    right: clamp(-150px, -8vw, -70px);
    width: clamp(300px, 34vw, 520px);
    aspect-ratio: 1;
    pointer-events: none;
    opacity: .22;
}

.hfc-tt-page-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid var(--hfc-tt-green);
    border-radius: 50%;
}

.hfc-tt-page-orbit span:nth-child(2) { inset: 17%; }
.hfc-tt-page-orbit span:nth-child(3) { inset: 34%; background: color-mix(in srgb, var(--hfc-tt-lime) 45%, transparent); border-color: transparent; }

.hfc-tt-page-hero {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 74px 0 66px;
}

.hfc-tt-crumb {
    margin: 0 0 34px;
    color: var(--hfc-tt-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
}

.hfc-tt-page-hero .hfc-tt-eyebrow {
    margin-bottom: 18px;
}

.hfc-tt-page-hero h1 {
    max-width: 850px;
    margin: 0 0 28px;
    color: var(--hfc-tt-ink);
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: .98;
}

.hfc-tt-page-lead {
    max-width: 780px;
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.55;
}

.hfc-tt-detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(50px, 6vw, 88px);
    align-items: start;
}

.hfc-tt-prose {
    min-width: 0;
}

.hfc-tt-prose h2 {
    margin: 56px 0 18px;
    color: var(--hfc-tt-ink);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 650;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.hfc-tt-prose h2:first-child {
    margin-top: 0;
}

.hfc-tt-prose h3 {
    margin: 0 0 10px;
    color: var(--hfc-tt-ink);
    font-size: 22px;
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.hfc-tt-prose p {
    margin: 0 0 18px;
    color: var(--hfc-tt-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hfc-tt-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 36px 0 8px;
}

.hfc-tt-feature-card {
    position: relative;
    min-height: 220px;
    padding: 30px 28px;
    overflow: hidden;
    border: 1px solid var(--hfc-tt-line);
    border-radius: 26px;
    background: #fff;
}

.hfc-tt-feature-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 160px;
    aspect-ratio: 1;
    border: 1px solid rgba(28, 75, 66, .14);
    border-radius: 50%;
}

.hfc-tt-feature-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.hfc-tt-mini-mark {
    position: relative;
    width: 26px;
    height: 26px;
    margin: 0 0 22px;
    color: var(--hfc-tt-green);
}

.hfc-tt-mini-mark span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transform-origin: center;
}

.hfc-tt-mini-mark span:nth-child(1) { transform: translate(-50%, -50%); }
.hfc-tt-mini-mark span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.hfc-tt-mini-mark span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); }

.hfc-tt-side-card {
    position: sticky;
    top: 28px;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background: var(--hfc-tt-cream);
}

.hfc-tt-side-ring {
    position: absolute;
    right: -72px;
    top: -72px;
    width: 170px;
    aspect-ratio: 1;
    border: 1px solid rgba(28, 75, 66, .18);
    border-radius: 50%;
}

.hfc-tt-side-card h2 {
    position: relative;
    margin: 0 0 18px;
    color: var(--hfc-tt-ink);
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.hfc-tt-side-card p {
    position: relative;
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: 16px;
    line-height: 1.65;
}

.hfc-tt-side-card .hfc-tt-button {
    position: relative;
    width: 100%;
    margin-top: 28px;
}

.hfc-tt-side-card .hfc-tt-text-link {
    position: relative;
    margin-top: 20px;
}

/* Training year */
.hfc-tt-training-stack {
    border-top: 1px solid var(--hfc-tt-line);
}

.hfc-tt-training-block {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--hfc-tt-line);
}

.hfc-tt-training-block .hfc-tt-index {
    color: var(--hfc-tt-green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
}

.hfc-tt-training-block h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.hfc-tt-training-block p {
    margin: 0;
}

.hfc-tt-faq {
    border-top: 1px solid var(--hfc-tt-line);
}

.hfc-tt-faq details {
    border-bottom: 1px solid var(--hfc-tt-line);
}

.hfc-tt-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    color: var(--hfc-tt-ink);
    cursor: pointer;
    list-style: none;
    font-size: 19px;
    font-weight: 700;
}

.hfc-tt-faq summary::-webkit-details-marker { display: none; }
.hfc-tt-faq summary span { font-size: 28px; font-weight: 400; transition: transform .2s ease; }
.hfc-tt-faq details[open] summary span { transform: rotate(45deg); }
.hfc-tt-faq details p { max-width: 760px; padding: 0 38px 24px 0; }

/* How to apply */
.hfc-tt-date-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 46px;
}

.hfc-tt-date-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--hfc-tt-line);
    border-radius: 24px;
    background: #fff;
}

.hfc-tt-date-card .hfc-tt-eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
}

.hfc-tt-date-card p:last-child { margin-bottom: 0; font-size: 16px; }

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

.hfc-tt-timeline li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--hfc-tt-line);
}

.hfc-tt-timeline-number {
    color: var(--hfc-tt-green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
}

.hfc-tt-timeline h3 { margin-bottom: 8px; }
.hfc-tt-timeline p { margin-bottom: 0; }

/* Funding */
.hfc-tt-note {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin: 24px 0 28px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #f1f4eb;
}

.hfc-tt-note-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--hfc-tt-lime);
    box-shadow: 0 0 0 5px rgba(180, 228, 26, .18);
}

.hfc-tt-note p { margin: 0; font-size: 15px; }

.hfc-tt-bursary-wrap {
    margin: 42px 0 54px;
    overflow: hidden;
    border: 1px solid var(--hfc-tt-line);
    border-radius: 28px;
    background: #fff;
}

.hfc-tt-bursary-heading {
    padding: 28px 30px 24px;
    background: var(--hfc-tt-green);
}

.hfc-tt-bursary-heading .hfc-tt-eyebrow { margin-bottom: 8px; color: var(--hfc-tt-lime); }
.hfc-tt-bursary-heading h3 { margin: 0; color: #fff; font-size: 30px; }
.hfc-tt-table-scroll { overflow-x: auto; }
.hfc-tt-bursary-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.hfc-tt-bursary-table th,
.hfc-tt-bursary-table td { padding: 18px 22px; border-bottom: 1px solid var(--hfc-tt-line); text-align: left; vertical-align: top; }
.hfc-tt-bursary-table th { color: var(--hfc-tt-green); background: #f5f7f1; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.hfc-tt-bursary-table td { color: var(--hfc-tt-muted); font-size: 16px; }
.hfc-tt-bursary-table tr:last-child td { border-bottom: 0; }
.hfc-tt-table-footnote { margin: 0 !important; padding: 18px 22px 22px; border-top: 1px solid var(--hfc-tt-line); font-size: 14px !important; }

@media (max-width: 1050px) {
    .hfc-tt-detail-grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 40px; }
    .hfc-tt-page-orbit { opacity: .14; }
}

@media (max-width: 820px) {
    .hfc-tt-page { padding-bottom: 58px; }
    .hfc-tt-page-hero { padding: 52px 0 46px; }
    .hfc-tt-page-hero h1 { font-size: clamp(48px, 11vw, 70px); }
    .hfc-tt-detail-grid { grid-template-columns: 1fr; gap: 34px; }
    .hfc-tt-side-card { position: relative; top: auto; }
    .hfc-tt-feature-grid, .hfc-tt-date-grid { grid-template-columns: 1fr; }
    .hfc-tt-feature-card, .hfc-tt-date-card { min-height: 0; }
}

@media (max-width: 640px) {
    .hfc-tt-inner { width: min(100% - 36px, 1400px); }
    .hfc-tt-page-hero { padding-top: 38px; }
    .hfc-tt-crumb { margin-bottom: 24px; }
    .hfc-tt-page-lead { font-size: 18px; }
    .hfc-tt-prose h2 { margin-top: 42px; font-size: 32px; }
    .hfc-tt-prose p { font-size: 17px; }
    .hfc-tt-training-block, .hfc-tt-timeline li { grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
    .hfc-tt-side-card { padding: 28px 24px; border-radius: 24px; }
    .hfc-tt-page-orbit { right: -190px; top: 10px; }
}

/* Contact page */
.hfc-tt-contact-page {
    padding-bottom: 92px;
}

.hfc-tt-contact-hero {
    max-width: 980px;
}

.hfc-tt-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.hfc-tt-contact-details > h2,
.hfc-tt-enquiry-card > h2 {
    margin: 0 0 18px;
    color: var(--hfc-tt-ink);
    font-size: clamp(38px, 3.5vw, 54px);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.hfc-tt-contact-intro,
.hfc-tt-enquiry-intro {
    max-width: 720px;
    margin: 0 0 34px;
    color: var(--hfc-tt-muted);
    font-size: 18px;
    line-height: 1.7;
}

.hfc-tt-contact-list {
    border-top: 1px solid var(--hfc-tt-line);
}

.hfc-tt-contact-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--hfc-tt-line);
    color: var(--hfc-tt-ink);
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

.hfc-tt-contact-row:not(.hfc-tt-contact-row-static):hover {
    color: var(--hfc-tt-green);
    transform: translateX(4px);
}

.hfc-tt-contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(28,75,66,.2);
    border-radius: 50%;
    color: var(--hfc-tt-green);
    font-size: 16px;
    font-weight: 800;
}

.hfc-tt-contact-row small {
    display: block;
    margin: 0 0 5px;
    color: var(--hfc-tt-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hfc-tt-contact-row strong {
    display: block;
    color: inherit;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.45;
}

.hfc-tt-contact-row b {
    padding-top: 8px;
    color: var(--hfc-tt-green);
    font-size: 20px;
    font-weight: 400;
}

.hfc-tt-contact-event-text {
    max-width: 620px;
    color: var(--hfc-tt-muted) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}

.hfc-tt-enquiry-card {
    position: sticky;
    top: 28px;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
    border-radius: 34px;
    background: var(--hfc-tt-green);
    box-shadow: 0 28px 70px rgba(20, 55, 48, .14);
}

.hfc-tt-enquiry-ring {
    position: absolute;
    right: -110px;
    top: -120px;
    width: 280px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(255,255,255,.035), 0 0 0 105px rgba(255,255,255,.025);
    pointer-events: none;
}

.hfc-tt-enquiry-card > *:not(.hfc-tt-enquiry-ring) {
    position: relative;
    z-index: 1;
}

.hfc-tt-enquiry-card .hfc-tt-eyebrow {
    color: var(--hfc-tt-lime);
}

.hfc-tt-enquiry-card > h2,
.hfc-tt-enquiry-card .hfc-tt-enquiry-intro {
    color: #fff;
}

.hfc-tt-field {
    margin-bottom: 20px;
}

.hfc-tt-field label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.84);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .015em;
}

.hfc-tt-field input,
.hfc-tt-field select,
.hfc-tt-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 14px;
    outline: none;
    background: rgba(255,255,255,.095);
    color: #fff;
    font: inherit;
    box-shadow: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hfc-tt-field textarea {
    min-height: 148px;
    resize: vertical;
}

.hfc-tt-field input:focus,
.hfc-tt-field select:focus,
.hfc-tt-field textarea:focus {
    border-color: var(--hfc-tt-lime);
    background: rgba(255,255,255,.13);
    box-shadow: 0 0 0 3px rgba(180,228,26,.15);
}

.hfc-tt-field select option {
    color: #1e332d;
    background: #fff;
}

.hfc-tt-contact-submit.hfc-tt-button {
    width: 100%;
    margin-top: 4px;
    border: 0;
    background: var(--hfc-tt-lime);
    color: var(--hfc-tt-green);
    cursor: pointer;
}

.hfc-tt-form-help {
    margin: 16px 0 0;
    color: rgba(255,255,255,.63);
    font-size: 13px;
    line-height: 1.55;
}

.hfc-tt-shortcode-form {
    color: #fff;
}

.hfc-tt-shortcode-form .gform_wrapper,
.hfc-tt-shortcode-form form {
    color: #fff;
}

.hfc-tt-shortcode-form label,
.hfc-tt-shortcode-form legend,
.hfc-tt-shortcode-form .gfield_label {
    color: rgba(255,255,255,.88) !important;
}

.hfc-tt-shortcode-form input:not([type="submit"]),
.hfc-tt-shortcode-form textarea,
.hfc-tt-shortcode-form select {
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.095) !important;
    color: #fff !important;
}

.hfc-tt-shortcode-form input[type="submit"],
.hfc-tt-shortcode-form button[type="submit"] {
    min-height: 54px;
    padding: 14px 24px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--hfc-tt-lime) !important;
    color: var(--hfc-tt-green) !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.hfc-tt-form-placeholder {
    display: grid;
    gap: 6px;
    padding: 24px;
    border: 1px dashed rgba(255,255,255,.35);
    border-radius: 18px;
    color: rgba(255,255,255,.76);
}

.hfc-tt-form-placeholder strong { color: #fff; }

.hfc-tt-contact-reassurance {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 72px;
    padding: 32px 34px;
    border: 1px solid var(--hfc-tt-line);
    border-radius: 28px;
    background: var(--hfc-tt-cream);
}

.hfc-tt-contact-reassurance .hfc-tt-mini-mark {
    margin-top: 3px;
}

.hfc-tt-contact-reassurance h3 {
    margin: 0 0 8px;
    color: var(--hfc-tt-ink);
    font-size: 24px;
    font-weight: 650;
    letter-spacing: -.025em;
}

.hfc-tt-contact-reassurance p {
    max-width: 980px;
    margin: 0;
    color: var(--hfc-tt-muted);
    font-size: 16px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .hfc-tt-contact-grid { grid-template-columns: 1fr; }
    .hfc-tt-enquiry-card { position: relative; top: auto; }
}

@media (max-width: 640px) {
    .hfc-tt-contact-page { padding-bottom: 60px; }
    .hfc-tt-contact-details > h2,
    .hfc-tt-enquiry-card > h2 { font-size: 36px; }
    .hfc-tt-contact-row { grid-template-columns: 42px minmax(0,1fr) 20px; gap: 14px; }
    .hfc-tt-contact-row strong { font-size: 17px; }
    .hfc-tt-enquiry-card { padding: 30px 24px; border-radius: 26px; }
    .hfc-tt-contact-reassurance { grid-template-columns: 1fr; margin-top: 42px; padding: 26px 24px; border-radius: 22px; }
}
