/* =========================================================
   BRAVE VOICES ACADEMY
   Main Stylesheet
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');


/* =========================================================
   COLORS
========================================================= */

:root {

    --stage-black: #220901;
    --burgundy: #621708;
    --burnt-red: #8A2C1B;
    --terracotta: #B85A32;

    --warm-paper: #F4EFE6;
    --warm-gray: #CFC7BC;

    --paper-dark: #DED6CA;

    --max-width: 1500px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    margin: 0;

    background-color: var(--warm-paper);
    color: var(--stage-black);

    font-family: "Manrope", sans-serif;
    font-size: 16px;

    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
blockquote {
    font-family: "Fraunces", serif;
    font-weight: 500;
}

p {
    max-width: 65ch;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    padding: 5rem 6vw 0;
    background-color: var(--warm-paper);
}

.brand {
    position: relative;
    min-height: 27rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand-name {
    font-family: "Fraunces", serif;

    font-size: clamp(5rem, 15vw, 13rem);
    line-height: 0.75;

    letter-spacing: -0.05em;
}

.brand-name span {
    display: block;
}

.brand-name span:first-child {
    font-weight: 700;
}

.brand-name span:last-child {
    font-weight: 400;
    margin-left: 0.8em;
}


/* =========================================================
   ACADEMY
========================================================= */

.brand-subtitle {
    position: absolute;

    right: 0;
    bottom: 3.5rem;

    margin: 0;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.5em;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;

    max-width: var(--max-width);
    margin: 0 auto;

    padding: 1.25rem 0;

    border-top: 1px solid var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray);
}

.site-nav a {
    position: relative;

    color: var(--stage-black);

    text-decoration: none;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.site-nav a:hover {
    color: var(--burnt-red);
    transform: translateY(-1px);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 8rem 8vw;
}

.section-paper {
    background-color: var(--warm-paper);
}

.section-label {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: var(--max-width);
    margin: 0 auto 5rem;

    padding-bottom: 1rem;

    border-bottom: 1px solid var(--warm-gray);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label span:last-child {
    color: var(--burnt-red);
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    margin-bottom: 2rem;

    color: var(--terracotta);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.25em;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;

    padding: 1rem 1.5rem;

    text-decoration: none;

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.button span {
    font-size: 1.1rem;
    line-height: 0;
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    background-color: var(--terracotta);
    color: var(--warm-paper);
}

.button-light:hover {
    background-color: var(--burnt-red);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 75vh;

    display: flex;
    align-items: center;

    padding: 8rem 8vw;

    background-color: var(--stage-black);
    color: var(--warm-paper);
}

.hero-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero h1 {
    max-width: 1000px;
    margin-bottom: 4rem;

    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.88;

    letter-spacing: -0.045em;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 3rem;
}

.hero-description {
    max-width: 550px;
    margin: 0;

    color: var(--warm-gray);

    font-size: 1.05rem;
    line-height: 1.7;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 10vw;

    max-width: var(--max-width);
    margin: 0 auto;
}

.about-heading h2 {
    max-width: 850px;
    margin: 0;

    font-size: clamp(3.5rem, 7vw, 7.5rem);
    line-height: 0.92;

    letter-spacing: -0.045em;
}

.about-copy {
    padding-top: 1rem;
}

.about-copy p {
    margin-bottom: 1.75rem;

    font-size: 1rem;
    line-height: 1.8;
}

.about-copy .lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

.about-bottom {
    max-width: var(--max-width);
    margin: 10rem auto 0;

    padding-top: 3rem;

    border-top: 1px solid var(--warm-gray);
}

.big-statement {
    max-width: 1100px;
    margin: 0;

    font-family: "Fraunces", serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: 1;

    letter-spacing: -0.035em;
}


/* =========================================================
   STATEMENT / QUOTE
========================================================= */

.statement-section {
    padding: 10rem 8vw;

    background-color: var(--terracotta);
    color: var(--warm-paper);
}

.statement-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.statement-section .eyebrow {
    color: var(--stage-black);
}

.statement-section blockquote {
    max-width: 1150px;
    margin: 0;

    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.98;

    letter-spacing: -0.045em;
}

.statement-credit {
    margin-top: 3rem;
    margin-bottom: 0;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 8vw;

    max-width: var(--max-width);
    margin: 0 auto 8rem;
}

.section-intro h2 {
    margin: 0;

    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;

    letter-spacing: -0.045em;
}

.section-intro > p {
    align-self: end;

    margin: 0;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.program-group {
    max-width: var(--max-width);
    margin: 0 auto 9rem;
}

.program-group:last-child {
    margin-bottom: 0;
}

.program-group-heading {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: baseline;

    margin-bottom: 2rem;

    padding-bottom: 1rem;

    border-bottom: 2px solid var(--stage-black);
}

.program-group-heading span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.program-group-heading h3 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.program-group-heading p {
    margin: 0;

    font-size: 0.8rem;
    text-align: right;
}


/* =========================================================
   PROGRAM ROWS
========================================================= */

.program {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 180px;
    gap: 2rem;

    padding: 3rem 0;

    border-bottom: 1px solid var(--warm-gray);

    transition:
        padding 220ms ease,
        background-color 220ms ease;
}

.program:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    background-color: #eee8de;
}

.program-number {
    padding-top: 0.5rem;

    font-size: 0.7rem;
    font-weight: 700;

    color: var(--burnt-red);
}

.program-main h3 {
    margin-bottom: 0.5rem;

    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;

    letter-spacing: -0.035em;
}

.program-tagline {
    margin-bottom: 1.5rem;

    color: var(--burnt-red);

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.04em;
}

.program-main > p:not(.program-tagline) {
    max-width: 650px;

    margin-bottom: 1.75rem;

    font-size: 0.95rem;
    line-height: 1.75;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 0.6rem 2rem;

    max-width: 700px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.program-details li {
    position: relative;

    padding-left: 1rem;

    font-size: 0.8rem;
}

.program-details li::before {
    content: "—";

    position: absolute;
    left: 0;

    color: var(--terracotta);
}

.program-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    padding-top: 0.5rem;
}

.program-meta span {
    margin-top: 1rem;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: #776f66;
}

.program-meta span:first-child {
    margin-top: 0;
}

.program-meta strong {
    font-size: 0.85rem;
}

.program-special {
    background-color: #eee8de;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.program-kicker {
    margin-bottom: 1rem !important;

    color: var(--terracotta) !important;

    font-size: 0.65rem !important;
    font-weight: 700 !important;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================================
   DARK SECTIONS
========================================================= */

.dark-section {
    background-color: var(--stage-black);
    color: var(--warm-paper);
}

.section-label-dark {
    border-color: rgba(244, 239, 230, 0.25);
}

.section-label-dark span:last-child {
    color: var(--terracotta);
}


/* =========================================================
   COMMUNITY
========================================================= */

.community {
    padding: 10rem 8vw;
}

.community-heading {
    max-width: var(--max-width);
    margin: 0 auto 10rem;
}

.community-heading h2 {
    max-width: 900px;
    margin-bottom: 1rem;

    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.88;

    letter-spacing: -0.05em;
}

.community-big {
    margin-left: 12vw;
    margin-bottom: 0;

    color: var(--terracotta);

    font-family: "Fraunces", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;

    letter-spacing: -0.04em;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;

    max-width: var(--max-width);
    margin: 0 auto;
}

.community-item {
    padding-top: 1.5rem;

    border-top: 1px solid rgba(244, 239, 230, 0.3);
}

.community-item > span {
    display: block;
    margin-bottom: 4rem;

    color: var(--terracotta);

    font-size: 0.7rem;
    font-weight: 700;
}

.community-item h3 {
    margin-bottom: 1rem;

    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.community-item p {
    margin: 0;

    color: var(--warm-gray);

    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================================
   PRIVATE COACHING
========================================================= */

.coaching {
    padding: 8rem 8vw 11rem;

    border-top: 1px solid rgba(244, 239, 230, 0.12);
}

.coaching-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.coaching-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 10vw;

    padding-top: 3rem;
}

.coaching-content h2 {
    max-width: 800px;
    margin: 0;

    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.88;

    letter-spacing: -0.05em;
}

.coaching-copy {
    padding-top: 1rem;
}

.coaching-copy .lead {
    margin-bottom: 2rem;

    font-size: 1.2rem;
    line-height: 1.65;
}

.coaching-copy > p:not(.lead) {
    color: var(--warm-gray);

    line-height: 1.8;
}

.coaching-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;

    margin: 3rem 0;
}

.coaching-list span {
    padding: 0.6rem 0.8rem;

    border: 1px solid rgba(244, 239, 230, 0.3);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;
}


/* =========================================================
   CURRENT CLASSES
========================================================= */

.classes {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.class-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;

    max-width: var(--max-width);
    margin: 0 auto;

    background-color: var(--warm-gray);

    border: 1px solid var(--warm-gray);
}

.class-card {
    display: flex;
    flex-direction: column;

    min-height: 400px;

    padding: 2.5rem;

    background-color: var(--warm-paper);
}

.class-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;

    padding-bottom: 1.25rem;

    border-bottom: 1px solid var(--warm-gray);
}

.class-type,
.class-age {
    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.class-type {
    color: var(--burnt-red);
}

.class-card h3 {
    margin: 3rem 0 0.5rem;

    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 0.95;

    letter-spacing: -0.035em;
}

.class-tagline {
    margin-bottom: 3rem;

    color: #776f66;

    font-size: 0.85rem;
    font-weight: 600;
}

.class-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;

    margin-top: auto;
    margin-bottom: 2rem;

    padding-top: 1.5rem;

    border-top: 1px solid var(--warm-gray);
}

.class-info div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.class-info span {
    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.class-info strong {
    font-size: 0.8rem;
}

.class-link {
    display: inline-block;

    color: var(--stage-black);

    font-size: 0.7rem;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.class-link:hover {
    color: var(--burnt-red);
}

/* =========================================================
   CLASS REGISTRATION
========================================================= */

.class-register {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    width: 100%;

    padding: 1rem 1.25rem;

    background-color: var(--stage-black);
    color: var(--warm-paper);

    text-decoration: none;

    font-size: 0.7rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.class-register span {
    font-size: 1.1rem;
    line-height: 0;
}

.class-register:hover {
    background-color: var(--terracotta);
    transform: translateY(-2px);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    min-height: 80vh;

    display: flex;
    align-items: center;

    padding: 10rem 8vw;

    background-color: var(--burgundy);
    color: var(--warm-paper);
}

.final-cta-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.final-cta h2 {
    max-width: 1000px;
    margin-bottom: 3rem;

    font-size: clamp(4.5rem, 10vw, 10rem);
    line-height: 0.85;

    letter-spacing: -0.055em;
}

.final-cta p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 3rem;

    color: var(--warm-gray);

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 6rem 6vw 2rem;

    background-color: var(--stage-black);
    color: var(--warm-paper);
}

.footer-brand {
    max-width: var(--max-width);
    margin: 0 auto 6rem;
}

.footer-name {
    font-family: "Fraunces", serif;

    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.75;

    letter-spacing: -0.05em;
}

.footer-name span {
    display: block;
}

.footer-name span:last-child {
    margin-left: 0.8em;
}

.footer-brand > p {
    margin: 2rem 0 0;

    color: var(--terracotta);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.45em;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;

    max-width: var(--max-width);
    margin: 0 auto;

    padding: 3rem 0;

    border-top: 1px solid rgba(244, 239, 230, 0.25);
    border-bottom: 1px solid rgba(244, 239, 230, 0.25);
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-heading {
    margin-bottom: 1.5rem;

    color: var(--terracotta);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.footer-links a {
    margin-bottom: 0.6rem;

    color: var(--warm-paper);

    font-size: 0.8rem;

    text-decoration: none;
}

.footer-links a:hover {
    color: var(--terracotta);
}

.footer-links p {
    max-width: 300px;

    margin: 0;

    color: var(--warm-gray);

    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

    max-width: var(--max-width);
    margin: 2rem auto 0;

    color: #9f968b;

    font-size: 0.65rem;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .site-header {
        padding-top: 3rem;
    }

    .brand {
        min-height: 20rem;
    }

    .brand-subtitle {
        bottom: 2rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-grid,
    .section-intro,
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-copy {
        max-width: 650px;
    }

    .program {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .program-meta {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .program-meta span {
        margin-top: 0;
    }

    .program-meta strong {
        margin-right: 1.5rem;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .community-big {
        margin-left: 5vw;
    }

    .class-list {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 15px;
    }


    /* HEADER */

    .site-header {
        padding: 2.5rem 5vw 0;
    }

    .brand {
        min-height: 15rem;
    }

    .brand-name {
        font-size: clamp(4rem, 20vw, 7rem);
        line-height: 0.78;
    }

    .brand-name span:last-child {
        margin-left: 0.45em;
    }

    .brand-subtitle {
        right: 0;
        bottom: 1.5rem;

        font-size: 0.65rem;
        letter-spacing: 0.35em;
    }


    /* NAV */

    .site-nav {
        gap: 0;

        justify-content: space-between;

        padding: 1rem 0;
    }

    .site-nav a {
        font-size: 0.6rem;
        letter-spacing: 0.05em;
    }


    /* GENERAL */

    .section {
        padding: 6rem 5vw;
    }

    .section-label {
        margin-bottom: 3.5rem;

        font-size: 0.6rem;
    }


    /* HERO */

    .hero {
        min-height: 80vh;

        padding: 6rem 7vw;
    }

    .hero h1 {
        margin-bottom: 3rem;

        font-size: clamp(3.5rem, 16vw, 6rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }


    /* ABOUT */

    .about {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .about-heading h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .about-copy .lead {
        font-size: 1.1rem;
    }

    .about-bottom {
        margin-top: 6rem;
    }

    .big-statement {
        font-size: clamp(2.3rem, 10vw, 4rem);
    }


    /* STATEMENT */

    .statement-section {
        padding: 7rem 7vw;
    }

    .statement-section blockquote {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }


    /* SECTION INTRO */

    .section-intro {
        margin-bottom: 5rem;
    }

    .section-intro h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }


    /* PROGRAMS */

    .programs {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .program-group {
        margin-bottom: 6rem;
    }

    .program-group-heading {
        grid-template-columns: 50px 1fr;
        gap: 0.5rem;
    }

    .program-group-heading p {
        grid-column: 2;

        text-align: left;
    }

    .program {
        grid-template-columns: 1fr;
        gap: 1rem;

        padding: 2.5rem 0;
    }

    .program:hover {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .program-number {
        padding-top: 0;
    }

    .program-main h3 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .program-details {
        grid-template-columns: 1fr;
    }

    .program-meta {
        grid-column: auto;

        align-items: flex-start;

        margin-top: 1rem;
        padding-top: 1rem;

        border-top: 1px solid var(--warm-gray);
    }

    .program-meta strong {
        margin-right: 1rem;
    }


    /* COMMUNITY */

    .community {
        padding: 7rem 7vw;
    }

    .community-heading {
        margin-bottom: 6rem;
    }

    .community-heading h2 {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .community-big {
        margin-left: 8vw;

        font-size: clamp(2.8rem, 12vw, 5rem);
    }


    /* COACHING */

    .coaching {
        padding: 6rem 7vw 8rem;
    }

    .coaching-content h2 {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .coaching-copy .lead {
        font-size: 1.05rem;
    }


    /* CLASSES */

    .classes {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .class-card {
        min-height: 350px;

        padding: 2rem;
    }

    .class-card h3 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .class-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    /* FINAL CTA */

    .final-cta {
        min-height: 75vh;

        padding: 7rem 7vw;
    }

    .final-cta h2 {
        font-size: clamp(4rem, 17vw, 7rem);
    }


    /* FOOTER */

    .site-footer {
        padding: 5rem 5vw 2rem;
    }

    .footer-name {
        font-size: clamp(4rem, 18vw, 7rem);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

}
