:root {
    --bg: #F7F3EA;
    --surface: #FFFFFF;

    --text: #222222;
    --text-soft: #60645F;

    --green: #1F5B45;
    --green-dark: #174635;

    --gold: #E9B949;
    --gold-hover: #DDAA32;

    --terracotta: #C96A45;

    --line: rgba(31, 91, 69, 0.14);

    --content: 1280px;
    --page-gutter: 40px;

    --radius-lg: 24px;
    --radius-md: 12px;

    --shadow:
        0 24px 60px rgba(30, 45, 37, 0.14);
}


/* =========================================================
   GLOBAL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);
    color: var(--text);

    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

a {
    color: var(--green-dark);
}

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

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.content-width,
.section-width {
    width: min(
        var(--content),
        calc(100% - (var(--page-gutter) * 2))
    );

    margin-inline: auto;
}


/* =========================================================
   REMOVE LEGACY BLACK TOP BAR

   This targets the old custom header containing:
   /uploads/2019/02/visit_arrow_2.png

   It does NOT target the WordPress admin toolbar.
   ========================================================= */

body > *:has(
    img[src*="visit_arrow_2.png"]
) {
    display: none !important;
}

/* Fallback if the old image somehow exists outside its wrapper. */

img[src*="visit_arrow_2.png"] {
    display: none !important;
}


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

.site-header {
    position: relative;
    z-index: 100;

    width: 100%;

    background:
        rgba(247, 243, 234, 0.96);

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

.site-header__inner {
    width: min(
        var(--content),
        calc(100% - (var(--page-gutter) * 2))
    );

    min-height: 84px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}

.site-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-brand__text {
    display: inline-flex;
    flex-direction: column;

    color: var(--green-dark);

    text-decoration: none;

    line-height: 1;
}

.site-brand .custom-logo-link {
    display: block;

    line-height: 0;
}

.site-brand .custom-logo {
    display: block;

    width: auto;
    height: auto;

    max-width: none;
    max-height: 58px;
}

.site-brand__name {
    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.site-brand__city {
    margin-top: 5px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.25em;
}

.primary-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.primary-nav__list {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-nav__list a {
    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus-visible {
    color: var(--green);
}


/* SCHEDULE BUTTON */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 18px;

    border-radius: 8px;

    background: var(--green);

    color: #FFFFFF;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--green-dark);

    color: #FFFFFF;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    position: relative;
    z-index: 102;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    padding: 10px;

    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle__line {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    border-radius: 999px;

    background: var(--green-dark);
}


/* =========================================================
   SHARED
   ========================================================= */

.section-eyebrow {
    margin: 0 0 12px;

    color: var(--terracotta);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 56px;

    padding: 16px 25px;

    border-radius: 9px;

    font-weight: 700;

    text-decoration: none;

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

.button--primary {
    background: var(--gold);

    color: #172219;

    box-shadow:
        0 9px 24px rgba(74, 59, 18, 0.13);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--gold-hover);

    color: #172219;

    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(74, 59, 18, 0.18);
}


/* =========================================================
   SLOGAN
   ========================================================= */

.capoeira-slogan {
    width: 100%;

    background: var(--bg);
}

.capoeira-slogan__inner {
    width: min(
        1050px,
        calc(100% - (var(--page-gutter) * 2))
    );

    margin-inline: auto;

    padding: 30px 0 10px;

    text-align: center;
}

.capoeira-slogan__inner::before {
    content: "";

    display: block;

    width: 76px;
    height: 3px;

    margin: 0 auto 20px;

    border-radius: 999px;

    background: var(--green);
}

.capoeira-slogan p {
    margin: 0;

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(34px, 3.1vw, 48px);

    font-style: italic;
    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -0.02em;
}

.capoeira-slogan span {
    display: block;

    margin-top: 3px;
}

.capoeira-slogan__inner::after {
    content: "";

    display: block;

    width: 76px;
    height: 3px;

    margin: 20px auto 0;

    border-radius: 999px;

    background: var(--green);
}


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

.hero {
    width: 100%;

    overflow: hidden;

    background: var(--bg);
}

.hero__inner {
    width: min(
        var(--content),
        calc(100% - (var(--page-gutter) * 2))
    );

    min-height: 620px;

    margin-inline: auto;

    padding: 48px 0 66px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: 72px;
}

.hero__content {
    max-width: 610px;
}

.hero h1 {
    margin: 0 0 24px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(50px, 5vw, 76px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;
}

.hero__intro {
    max-width: 560px;

    margin: 0 0 16px;

    font-size: 20px;

    line-height: 1.55;
}

.hero__reassurance {
    margin: 0 0 28px;

    color: var(--green);

    font-weight: 700;
}

.hero__schedule {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin: 0 0 30px;

    padding: 11px 18px;

    border:
        1px solid rgba(31, 91, 69, 0.18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.68);

    font-size: 17px;
}

.hero__schedule strong {
    color: var(--green-dark);
}

.hero__dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--gold);
}

.hero__media {
    position: relative;

    width: 100%;

    min-width: 0;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: #DDD6C8;

    box-shadow: var(--shadow);
}

.hero__media video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero__accent {
    position: absolute;

    right: 28px;
    bottom: 26px;

    width: 110px;
    height: 9px;

    border-radius: 999px;

    background: var(--gold);

    box-shadow:
        -45px 0 0 -1px var(--green);

    pointer-events: none;
}


/* =========================================================
   WHY CAPOEIRA
   ========================================================= */

.why-capoeira {
    padding: 86px 0 90px;

    background: var(--surface);
}

.why-capoeira__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 42px;
}

.why-capoeira h2 {
    max-width: 620px;

    margin: 0;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 4.5vw, 66px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.04em;
}

.why-capoeira__intro {
    max-width: 620px;

    margin: 0;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.65;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.benefit-card {
    position: relative;

    min-height: 190px;

    padding: 25px 26px 27px;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background: var(--bg);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.benefit-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 72px;
    height: 4px;

    background: var(--gold);

    transition:
        width 220ms ease;
}

.benefit-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(31, 91, 69, 0.24);

    box-shadow:
        0 15px 34px rgba(30, 45, 37, 0.08);
}

.benefit-card:hover::before {
    width: 100%;
}

.benefit-card h3 {
    margin: 8px 0 12px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.benefit-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.55;
}

.why-capoeira__reassurance {
    max-width: 850px;

    margin: 58px auto 0;

    text-align: center;
}

.why-capoeira__reassurance::before {
    content: "";

    display: block;

    width: 64px;
    height: 3px;

    margin: 0 auto 22px;

    border-radius: 999px;

    background: var(--gold);
}

.why-capoeira__reassurance h3 {
    margin: 0 0 7px;

    color: var(--green);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(28px, 3vw, 40px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.025em;
}

.why-capoeira__reassurance p {
    margin: 0;

    color: var(--green);

    font-size: 19px;
    font-weight: 500;
}


/* =========================================================
   HOMEPAGE CTA
   ========================================================= */

.schedule-cta {
    padding: 70px 0;

    background: var(--bg);
}

.schedule-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.schedule-cta h2 {
    margin: 0 0 8px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.035em;
}

.schedule-cta p:last-child {
    margin: 0;

    color: var(--text-soft);

    font-size: 17px;
}


/* =========================================================
   SCHEDULE
   ========================================================= */

.schedule-page {
    background: var(--bg);
}

.schedule-page__intro {
    padding: 68px 0 48px;
}

.schedule-page__header {
    text-align: center;
}

.schedule-page__header h1 {
    margin: 0 0 18px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(50px, 6vw, 78px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;
}

.schedule-page__header > p:last-child {
    max-width: 620px;

    margin: 0 auto;

    color: var(--text-soft);

    font-size: 18px;
}


/* BEGINNER */

.beginner-class {
    padding-bottom: 82px;
}

.beginner-class__card {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(340px, 1fr);

    align-items: center;

    gap: 54px;

    padding: 48px;

    border-radius: var(--radius-lg);

    background: var(--surface);

    box-shadow: var(--shadow);
}

.beginner-class__content,
.beginner-class__visual {
    min-width: 0;
}

.class-label {
    margin: 0 0 12px;

    color: var(--terracotta);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.beginner-class__content h2 {
    margin: 0 0 2px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 46px;

    font-weight: 800;

    line-height: 1;
}

.class-time {
    margin-bottom: 22px;

    color: var(--gold);

    font-family: "Manrope", sans-serif;

    font-size: 34px;

    font-weight: 800;
}

.class-description {
    max-width: 670px;

    margin: 0 0 26px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.65;
}

.beginner-class__notes {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    max-width: 650px;

    gap: 10px 28px;

    margin: 0 0 25px;

    color: var(--text);

    font-size: 15px;
    font-weight: 600;
}

.beginner-class__notes > div {
    display: flex;

    align-items: flex-start;

    gap: 8px;
}

.check {
    flex: 0 0 auto;

    color: var(--green);

    font-weight: 800;
}


/* VENUE */

.class-location {
    display: flex;

    flex-direction: column;
}

.class-location--featured {
    width: min(620px, 100%);

    padding: 20px;

    border:
        2px solid var(--green);

    border-radius: var(--radius-md);

    background:
        rgba(31, 91, 69, 0.025);
}

.venue-label {
    margin-bottom: 5px;

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.class-location strong {
    margin-bottom: 3px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 18px;
}

.venue-address {
    margin-bottom: 15px;

    color: var(--text-soft);
}

.class-map {
    width: 100%;

    height: 180px;

    margin-top: 3px;

    overflow: hidden;

    border-radius: 9px;

    background: #DDD6C8;
}

.class-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

.venue-map-link {
    width: fit-content;

    margin-top: 13px;

    color: var(--green);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.venue-map-link:hover {
    text-decoration: underline;
}

.beginner-class__button {
    margin-top: 27px;
}


/* GIFS */

.schedule-motion {
    position: relative;

    margin: 0;

    overflow: hidden;

    border-radius: 14px;

    background: #DDD6C8;

    box-shadow:
        0 14px 34px rgba(30, 45, 37, 0.10);

    aspect-ratio: 4 / 3;
}

.schedule-motion img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.schedule-motion__accent {
    position: absolute;

    right: 16px;
    bottom: 15px;

    width: 56px;
    height: 5px;

    border-radius: 999px;

    background: var(--gold);

    box-shadow:
        -23px 0 0 -1px var(--green);

    pointer-events: none;
}

.beginner-class__visual {
    display: flex;

    align-items: center;
    justify-content: center;
}

.schedule-motion--beginner,
.schedule-motion--class,
.schedule-motion--conditioning {
    width: 100%;

    max-width: 440px;
}

.schedule-motion--class {
    justify-self: end;
}

.schedule-motion--conditioning {
    justify-self: start;
}


/* EXISTING STUDENTS */

.existing-classes {
    padding: 72px 0 0;

    background: var(--surface);
}

.existing-classes__heading {
    margin-bottom: 30px;
}

.existing-classes__heading .section-eyebrow {
    margin: 0;
}

.class-group {
    padding: 0 0 66px;

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

.class-group + .class-group {
    padding-top: 66px;
}

.class-group--last {
    padding-bottom: 0;

    border-bottom: 0;
}

.class-group__feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(340px, 0.8fr);

    align-items: center;

    gap: 70px;

    margin-bottom: 32px;
}

.class-group__feature--reverse {
    grid-template-columns:
        minmax(340px, 0.8fr)
        minmax(0, 1.2fr);
}

.class-group__intro {
    min-width: 0;
}

.class-group__intro h2 {
    max-width: 760px;

    margin: 0 0 12px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(28px, 3vw, 40px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.03em;
}

.class-group__intro p {
    max-width: 760px;

    margin: 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.65;
}

.class-group__title-row {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 12px;
}

.class-group__title-row h2 {
    margin: 0;
}


/* CLASS CARDS */

.existing-classes__grid {
    display: grid;

    gap: 16px;
}

.existing-classes__grid--two {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.existing-classes__grid--one {
    grid-template-columns:
        minmax(0, 1fr);

    max-width: 620px;
}

.class-card {
    position: relative;

    padding: 28px;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background: var(--bg);
}

.class-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 70px;
    height: 4px;

    background: var(--gold);
}

.class-card h3 {
    margin: 5px 0 3px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    font-weight: 800;
}

.class-card__time {
    margin: 0 0 22px;

    color: var(--green);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 700;
}

.class-card__location {
    display: flex;

    flex-direction: column;

    min-height: 102px;

    margin-bottom: 15px;
}

.class-card__location strong {
    margin-bottom: 4px;

    color: var(--text);

    font-size: 16px;
}

.class-card__location span {
    color: var(--text-soft);

    font-size: 15px;
}

.map-link {
    width: fit-content;

    color: var(--green);

    font-weight: 700;

    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

.members-badge {
    padding: 5px 8px;

    border-radius: 999px;

    background:
        rgba(201, 106, 69, 0.11);

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.2;

    text-align: center;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* =========================================================
   PHOTO GALLERY
   ========================================================= */

.class-gallery {
    margin-top: 74px;

    padding: 52px 0 58px;

    background: var(--green-dark);
}

.class-gallery__header {
    margin-bottom: 24px;
}

.class-gallery__eyebrow {
    margin: 0;

    color: var(--gold);

    font-family: "Manrope", sans-serif;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.class-gallery__viewport {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.class-gallery__track {
    display: flex;

    gap: 18px;

    width: 100%;

    padding-bottom: 2px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    overscroll-behavior-x: contain;

    -webkit-overflow-scrolling: touch;

    cursor: grab;

    user-select: none;

    touch-action: pan-x pan-y;
}

.class-gallery__track.is-dragging {
    cursor: grabbing;

    scroll-snap-type: none;
}

.class-gallery__track::-webkit-scrollbar {
    display: none;
}

.class-gallery__slide {
    flex:
        0 0 calc((100% - 36px) / 3);

    min-width: 0;

    margin: 0;

    padding: 8px;

    scroll-snap-align: start;

    border-radius: 15px;

    background: #FFFFFF;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.12);
}

.class-gallery__photo {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 9px;

    background: #F2F2F2;
}

.class-gallery__photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    pointer-events: none;

    -webkit-user-drag: none;
}

.class-gallery__progress {
    position: relative;

    width: min(360px, 60%);

    height: 3px;

    margin: 28px auto 0;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.18);
}

.class-gallery__progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    width: 24%;
    height: 100%;

    border-radius: inherit;

    background: var(--gold);

    transform: none;

    will-change:
        left,
        width;
}


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

.about-page {
    background: var(--bg);
}


/* ABOUT HERO */

.about-hero {
    padding: 78px 0 76px;
}

.about-hero__inner {
    max-width: 980px;

    text-align: center;
}

.about-hero h1 {
    margin: 0 auto 24px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(48px, 6vw, 78px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;
}

.about-hero__intro {
    max-width: 760px;

    margin: 0 auto;

    color: var(--text-soft);

    font-size: 20px;

    line-height: 1.6;
}


/* ABOUT STORY */

.about-story {
    padding: 86px 0 94px;

    background: var(--surface);
}

.about-story__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, 0.65fr);

    align-items: start;

    gap: 86px;
}

.about-story__copy {
    min-width: 0;
}

.about-story__block {
    max-width: 760px;
}

.about-story__block +
.about-story__block {
    margin-top: 52px;

    padding-top: 48px;

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

.about-story__label {
    margin: 0 0 9px;

    color: var(--terracotta);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.about-story__block h2 {
    margin: 0 0 20px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(30px, 3vw, 40px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.03em;
}

.about-story__block p {
    margin: 0 0 18px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.75;
}

.about-story__block p:last-child {
    margin-bottom: 0;
}

.about-story__block strong {
    color: var(--green-dark);
}


/* =========================================================
   TUCUM VALUES CARD
   ========================================================= */

.about-symbol {
    position: sticky;

    top: 40px;

    padding: 36px 36px 40px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--green-dark);

    color: #FFFFFF;

    box-shadow:
        0 20px 50px rgba(23, 70, 53, 0.18);
}

.about-symbol::after {
    content: "";

    position: absolute;

    right: -54px;
    bottom: -56px;

    width: 170px;
    height: 170px;

    border:
        28px solid rgba(233, 185, 73, 0.08);

    border-radius: 50%;
}

.about-symbol__logo {
    position: relative;
    z-index: 1;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-symbol__logo img {
    display: block;

    width: min(290px, 100%);
    height: auto;

    object-fit: contain;
}

.about-symbol__line {
    width: 78px;
    height: 4px;

    margin: 30px auto 24px;

    border-radius: 999px;

    background: var(--terracotta);
}

.about-symbol p {
    position: relative;
    z-index: 1;

    margin: 0;

    padding: 10px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    font-family: "Manrope", sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;

    text-align: center;
}

.about-symbol p:last-child {
    border-bottom: 0;
}


/* =========================================================
   TEACHERS
   ========================================================= */

.teachers-section {
    padding: 92px 0 108px;

    background: var(--bg);
}

.teachers-section__heading {
    max-width: 820px;

    margin-bottom: 48px;
}

.teachers-section__heading h2 {
    margin: 0 0 18px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(38px, 4.5vw, 58px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.04em;
}

.teachers-section__heading >
p:last-child {
    max-width: 690px;

    margin: 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.65;
}


/* FEATURED MINHOQUINHO */

.leader-profile {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.82fr)
        minmax(0, 1.18fr);

    min-height: 510px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--green-dark);

    box-shadow:
        0 24px 58px rgba(23, 70, 53, 0.17);
}

.leader-profile__image {
    position: relative;

    min-width: 0;

    margin: 0;

    overflow: hidden;

    background: #DDD6C8;
}

.leader-profile__image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 510px;

    object-fit: cover;
    object-position: center top;
}

.leader-profile__accent {
    position: absolute;

    left: 26px;
    bottom: 26px;

    width: 82px;
    height: 7px;

    border-radius: 999px;

    background: var(--gold);

    box-shadow:
        33px 0 0 -1px var(--terracotta);
}

.leader-profile__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 54px 58px;
}

.leader-profile h3 {
    margin: 0 0 25px;

    color: #FFFFFF;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(37px, 4vw, 54px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.04em;
}

.leader-profile__lead {
    max-width: 640px;

    margin: 0 0 19px;

    color:
        rgba(255, 255, 255, 0.9);

    font-size: 18px;

    line-height: 1.65;
}

.leader-profile__extra {
    max-width: 640px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.67);

    font-size: 15px;

    line-height: 1.7;
}


/* TEACHER GROUPS */

.teachers-group {
    margin-top: 72px;
}

.teachers-group +
.teachers-group {
    margin-top: 76px;

    padding-top: 62px;

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

.teachers-group__label {
    margin: 0 0 20px;

    color: var(--terracotta);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* RISADA + PINGADO */

.teachers-group--secondary {
    display: flex;

    justify-content: center;
}

.teachers-grid {
    display: grid;

    gap: 18px;
}

.teachers-grid--secondary {
    width: min(900px, 100%);

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    margin-inline: auto;
}


/* TEACHER CARDS */

.teacher-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background: var(--surface);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.teacher-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(31, 91, 69, 0.23);

    box-shadow:
        0 18px 40px rgba(30, 45, 37, 0.09);
}

.teacher-card__image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 4;

    margin: 0;

    overflow: hidden;

    background: #DDD6C8;
}

.teacher-card__image::after {
    content: "";

    position: absolute;

    right: 18px;
    bottom: 17px;

    width: 58px;
    height: 5px;

    border-radius: 999px;

    background: var(--gold);

    box-shadow:
        -24px 0 0 -1px var(--green);

    pointer-events: none;
}

.teacher-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition:
        transform 400ms ease;
}

.teacher-card:hover
.teacher-card__image img {
    transform: scale(1.025);
}

.teacher-card__content {
    padding: 26px 27px 30px;
}

.teacher-card__role {
    margin: 0 0 7px;

    color: var(--terracotta);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.teacher-card h3 {
    margin: 0 0 13px;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 25px;
    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.teacher-card__text {
    margin: 0;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   MESTRES
   ========================================================= */

.teachers-group__mestre-heading {
    margin-bottom: 22px;
}

.teachers-group__mestre-heading
.teachers-group__label {
    margin-bottom: 9px;
}

.teachers-group__mestre-heading h3 {
    margin: 0;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 32px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.03em;
}

.teachers-grid--mestres {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.teacher-card--mestre {
    display: grid;

    grid-template-columns:
        minmax(200px, 0.72fr)
        minmax(0, 1fr);

    align-items: stretch;

    background:
        rgba(31, 91, 69, 0.025);
}

.teacher-card__image--mestre {
    height: 100%;

    min-height: 390px;

    aspect-ratio: auto;
}

.teacher-card--mestre
.teacher-card__content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 34px;
}

.teacher-card--mestre h3 {
    font-size: 28px;
}


/* EXPANDABLE BIOS */

.teacher-bio {
    margin-top: 22px;

    padding-top: 18px;

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

.teacher-bio summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 3px 0;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    list-style: none;
}

.teacher-bio summary::-webkit-details-marker {
    display: none;
}

.teacher-bio__open {
    display: none;
}

.teacher-bio__icon {
    flex: 0 0 auto;

    color: var(--gold);

    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform 180ms ease;
}

.teacher-bio[open]
.teacher-bio__closed {
    display: none;
}

.teacher-bio[open]
.teacher-bio__open {
    display: inline;
}

.teacher-bio[open]
.teacher-bio__icon {
    transform: rotate(45deg);
}

.teacher-bio__content {
    padding-top: 18px;
}

.teacher-bio__content p {
    margin: 0 0 15px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

.teacher-bio__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TUCUM WORLD
   ========================================================= */

.tucum-world {
    padding: 88px 0 94px;

    overflow: hidden;

    background: var(--green-dark);

    color: #FFFFFF;
}

.tucum-world .section-eyebrow {
    color: var(--gold);
}

.tucum-world__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.7fr);

    align-items: end;

    gap: 80px;
}

.tucum-world__heading h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(40px, 5vw, 62px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.04em;
}

.tucum-world__heading h2 span {
    display: block;

    color: var(--gold);
}

.tucum-world__heading >
p {
    max-width: 470px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 17px;

    line-height: 1.65;
}


/* MAP */

.about-map {
    margin-top: 50px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: var(--radius-lg);

    background:
        rgba(255, 255, 255, 0.035);
}

.about-map svg {
    display: block;

    width: 100%;
    height: auto;
}

.about-map__land {
    fill:
        rgba(247, 243, 234, 0.77);

    stroke:
        rgba(255, 255, 255, 0.12);

    stroke-width: 1;
}

.about-map__halo {
    fill: var(--gold);

    opacity: 0.2;
}

.about-map__pin {
    fill: var(--gold);

    stroke: #FFFFFF;

    stroke-width: 2;
}

.about-map__pin--terracotta {
    fill: var(--terracotta);
}

.about-map__leader {
    fill: none;

    stroke:
        rgba(255, 255, 255, 0.58);

    stroke-width: 1.4;
}

.about-map__label {
    fill: #FFFFFF;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.about-map__count {
    fill: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 800;
}


/* LOCATIONS */

.tucum-locations {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 30px;

    margin-top: 42px;
}

.tucum-locations__group {
    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.18);
}

.tucum-locations__group h3 {
    margin: 0 0 14px;

    color: var(--gold);

    font-family: "Manrope", sans-serif;

    font-size: 17px;
    font-weight: 800;
}

.tucum-locations__group ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.tucum-locations__group li {
    padding: 3px 0;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 15px;
}


/* =========================================================
   STANDARD PAGES
   ========================================================= */

.page-shell {
    padding: 70px 0;
}

.page-shell h1 {
    margin-top: 0;

    color: var(--green-dark);

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1;
}

.post-card {
    padding: 24px 0;

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


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

.site-footer {
    padding: 44px 0;

    background: #000000;

    color:
        rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
    width: min(
        var(--content),
        calc(100% - (var(--page-gutter) * 2))
    );

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.site-footer__brand strong {
    color: #FFFFFF;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 800;
}

.site-footer__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 14px 22px;
}


/* SOCIAL ICONS */

.site-footer__social {
    display: flex;
    align-items: center;

    gap: 9px;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    color: #FFFFFF;

    text-decoration: none;

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

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    border-color: var(--gold);

    background: var(--gold);

    color: #111111;

    transform: translateY(-2px);
}

.site-footer__social-link svg {
    display: block;

    width: 18px;
    height: 18px;

    overflow: visible;
}

.site-footer__social-link:first-child svg {
    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;
}

.site-footer__social-link:first-child
.social-icon-dot {
    fill: currentColor;

    stroke: none;
}

.site-footer__social-link:last-child svg {
    fill: currentColor;

    stroke: none;
}

.site-footer__email {
    color: #FFFFFF;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.site-footer__email:hover {
    color: var(--gold);
}

.site-footer__copyright {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    :root {
        --page-gutter: 28px;
    }


    /* HOMEPAGE */

    .hero__inner {
        min-height: auto;

        padding: 46px 0 58px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr);

        gap: 44px;
    }

    .hero h1 {
        font-size:
            clamp(44px, 6vw, 62px);
    }

    .hero__intro {
        font-size: 18px;
    }

    .why-capoeira {
        padding: 74px 0 80px;
    }

    .why-capoeira__heading {
        gap: 48px;

        margin-bottom: 36px;
    }

    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* SCHEDULE */

    .beginner-class__card {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(300px, 0.9fr);

        gap: 38px;

        padding: 38px;
    }

    .beginner-class__notes {
        grid-template-columns: 1fr;
    }

    .schedule-motion--beginner,
    .schedule-motion--class,
    .schedule-motion--conditioning {
        max-width: 400px;
    }

    .class-group__feature,
    .class-group__feature--reverse {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.75fr);

        gap: 42px;
    }

    .class-group__feature--reverse {
        grid-template-columns:
            minmax(300px, 0.75fr)
            minmax(0, 1fr);
    }

    .class-gallery__slide {
        flex:
            0 0 calc((100% - 18px) / 2);
    }


    /* ABOUT */

    .about-story__grid {
        gap: 52px;
    }

    .leader-profile {
        grid-template-columns:
            minmax(300px, 0.85fr)
            minmax(0, 1.15fr);
    }

    .leader-profile__content {
        padding: 44px;
    }

    .teachers-grid--secondary {
        width: min(820px, 100%);
    }

    .teachers-grid--mestres {
        grid-template-columns: 1fr;
    }

    .teacher-card--mestre {
        grid-template-columns:
            minmax(280px, 0.7fr)
            minmax(0, 1.3fr);
    }

    .tucum-world__heading {
        gap: 48px;
    }

    .tucum-locations {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    :root {
        --page-gutter: 20px;
    }


    /* HEADER */

    .site-header__inner {
        min-height: 72px;
    }

    .site-brand .custom-logo {
        width: auto;
        height: auto;

        max-width: none;
        max-height: 52px;
    }

    .menu-toggle {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;
    }

    .menu-toggle__line {
        margin: 3px auto;
    }

    .primary-nav {
        position: fixed;

        inset: 72px 0 0;

        display: none;

        align-items: stretch;

        flex-direction: column;

        padding: 26px 20px;

        background: var(--bg);

        overflow-y: auto;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav__list {
        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .primary-nav__list li {
        border-bottom:
            1px solid var(--line);
    }

    .primary-nav__list a {
        display: block;

        padding: 17px 0;

        font-family: "Manrope", sans-serif;

        font-size: 22px;
        font-weight: 700;
    }

    .header-cta {
        width: 100%;

        min-height: 54px;

        margin-top: 10px;

        font-size: 16px;
    }


    /* SLOGAN */

    .capoeira-slogan__inner {
        padding: 26px 0 4px;
    }

    .capoeira-slogan p {
        font-size:
            clamp(29px, 8vw, 38px);
    }

    .capoeira-slogan__inner::before,
    .capoeira-slogan__inner::after {
        width: 60px;
    }

    .capoeira-slogan__inner::before {
        margin-bottom: 16px;
    }

    .capoeira-slogan__inner::after {
        margin-top: 16px;
    }


    /* HOMEPAGE */

    .hero__inner {
        min-height: 0;

        padding: 36px 0 48px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 34px;
    }

    .hero__content {
        max-width: none;
    }

    .hero h1 {
        max-width: 580px;

        margin-bottom: 18px;

        font-size:
            clamp(39px, 11vw, 54px);
    }

    .hero__intro {
        margin-bottom: 13px;

        font-size: 17px;
    }

    .hero__reassurance {
        margin-bottom: 22px;

        font-size: 15px;
    }

    .hero__schedule {
        margin-bottom: 21px;

        padding: 10px 15px;

        font-size: 15px;
    }

    .button--primary {
        width: 100%;

        min-height: 58px;
    }

    .hero__media {
        aspect-ratio: 16 / 9;

        border-radius: 16px;
    }

    .why-capoeira {
        padding: 62px 0 66px;
    }

    .why-capoeira__heading {
        display: block;

        margin-bottom: 30px;
    }

    .why-capoeira h2 {
        margin-bottom: 20px;

        font-size:
            clamp(38px, 10vw, 50px);
    }

    .why-capoeira__intro {
        font-size: 17px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .benefit-card {
        min-height: 0;

        padding: 22px 22px 24px;
    }

    .benefit-card h3 {
        font-size: 25px;
    }

    .benefit-card p {
        font-size: 16px;
    }

    .why-capoeira__reassurance {
        margin-top: 42px;
    }

    .why-capoeira__reassurance h3 {
        font-size: 30px;
    }

    .why-capoeira__reassurance p {
        font-size: 17px;
    }

    .schedule-cta {
        padding: 56px 0;
    }

    .schedule-cta__inner {
        flex-direction: column;

        align-items: stretch;

        gap: 26px;
    }

    .schedule-cta h2 {
        font-size: 38px;
    }


    /* SCHEDULE */

    .schedule-page__intro {
        padding: 52px 0 36px;
    }

    .schedule-page__header {
        text-align: left;
    }

    .schedule-page__header h1 {
        font-size: 50px;
    }

    .schedule-page__header >
    p:last-child {
        margin-left: 0;

        font-size: 17px;
    }

    .beginner-class {
        padding-bottom: 60px;
    }

    .beginner-class__card {
        display: flex;

        flex-direction: column;

        gap: 36px;

        padding: 28px 24px 30px;
    }

    .beginner-class__content h2 {
        font-size: 38px;
    }

    .class-time {
        font-size: 30px;
    }

    .class-description {
        font-size: 15px;

        line-height: 1.6;
    }

    .beginner-class__notes {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .class-location--featured {
        width: 100%;

        padding: 17px;
    }

    .class-map {
        height: 185px;
    }

    .beginner-class__visual {
        justify-content: center;
    }

    .schedule-motion--beginner {
        width:
            min(100%, 470px);

        max-width: none;
    }

    .existing-classes {
        padding: 58px 0 0;
    }

    .class-group {
        padding-bottom: 46px;
    }

    .class-group +
    .class-group {
        padding-top: 46px;
    }

    .class-group__feature,
    .class-group__feature--reverse {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 24px;

        margin-bottom: 27px;
    }

    .class-group__feature--reverse {
        flex-direction: column-reverse;
    }

    .class-group__intro h2 {
        font-size: 29px;
    }

    .class-group__intro p {
        font-size: 16px;

        line-height: 1.6;
    }

    .schedule-motion--class {
        width:
            min(100%, 470px);

        max-width: none;

        align-self: flex-end;
    }

    .schedule-motion--conditioning {
        width:
            min(100%, 470px);

        max-width: none;

        align-self: flex-start;
    }

    .existing-classes__grid--two,
    .existing-classes__grid--one {
        grid-template-columns: 1fr;

        max-width: none;
    }

    .class-card {
        padding: 24px;
    }

    .class-card__location {
        min-height: 0;
    }


    /* MOBILE GALLERY */

    .class-gallery {
        margin-top: 56px;

        padding: 42px 0 48px;
    }

    .class-gallery__header {
        margin-bottom: 19px;
    }

    .class-gallery__eyebrow {
        font-size: 12px;
    }

    .class-gallery__track {
        touch-action: auto;

        scroll-snap-type: x mandatory;

        overscroll-behavior-x: auto;
    }

    .class-gallery__slide {
        flex: 0 0 84%;

        padding: 7px;
    }

    .class-gallery__progress {
        width: 70%;

        margin-top: 24px;
    }


    /* ABOUT */

    .about-hero {
        padding: 56px 0 58px;
    }

    .about-hero__inner {
        text-align: left;
    }

    .about-hero h1 {
        font-size:
            clamp(43px, 12vw, 58px);
    }

    .about-hero__intro {
        font-size: 17px;
    }

    .about-story {
        padding: 62px 0 68px;
    }

    .about-story__grid {
        display: block;
    }

    .about-story__block +
    .about-story__block {
        margin-top: 38px;

        padding-top: 36px;
    }

    .about-story__block h2 {
        font-size: 30px;
    }

    .about-story__block p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* TUCUM VALUES MOBILE */

    .about-symbol {
        position: relative;

        top: auto;

        margin-top: 44px;

        padding: 30px 26px 32px;
    }

    .about-symbol__logo img {
        width:
            min(300px, 100%);
    }

    .about-symbol__line {
        width: 76px;

        margin:
            26px auto 20px;
    }

    .about-symbol p {
        padding: 11px 0;

        font-size: 22px;

        text-align: center;
    }


    /* TEACHERS */

    .teachers-section {
        padding: 66px 0 76px;
    }

    .teachers-section__heading {
        margin-bottom: 34px;
    }

    .teachers-section__heading h2 {
        font-size:
            clamp(36px, 10vw, 48px);
    }

    .teachers-section__heading >
    p:last-child {
        font-size: 16px;
    }

    .leader-profile {
        display: block;

        min-height: 0;
    }

    .leader-profile__image {
        aspect-ratio: 4 / 4.4;
    }

    .leader-profile__image img {
        min-height: 0;

        height: 100%;
    }

    .leader-profile__content {
        padding: 34px 28px 38px;
    }

    .leader-profile h3 {
        font-size: 38px;
    }

    .leader-profile__lead {
        font-size: 17px;
    }

    .leader-profile__extra {
        font-size: 15px;
    }

    .teachers-group {
        margin-top: 52px;
    }

    .teachers-group +
    .teachers-group {
        margin-top: 52px;

        padding-top: 46px;
    }

    .teachers-group--secondary {
        display: block;
    }

    .teachers-grid--secondary,
    .teachers-grid--mestres {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .teacher-card__image {
        aspect-ratio: 4 / 4.3;
    }

    .teacher-card__content {
        padding: 24px 24px 27px;
    }


    /* MESTRES - MOBILE */

    .teachers-group__mestre-heading {
        margin-bottom: 20px;
    }

    .teachers-group__mestre-heading h3 {
        font-size: 28px;
    }

    .teacher-card--mestre {
        display: block;

        height: auto;
    }

    .teacher-card__image--mestre {
        width: 100%;
        height: auto;

        min-height: 0;

        aspect-ratio: 4 / 4.4;
    }

    .teacher-card__image--mestre img {
        width: 100%;
        height: 100%;

        min-height: 0;

        object-fit: cover;
    }

    .teacher-card--mestre
    .teacher-card__content {
        display: block;

        width: 100%;
        height: auto;

        padding: 27px 24px 30px;
    }

    .teacher-card--mestre h3 {
        font-size: 26px;
    }

    .teacher-card--mestre
    .teacher-card__text {
        display: block;
    }

    .teacher-card--mestre
    .teacher-bio {
        display: block;
    }


    /* WORLD */

    .tucum-world {
        padding: 64px 0 70px;
    }

    .tucum-world__heading {
        display: block;
    }

    .tucum-world__heading h2 {
        margin-bottom: 22px;

        font-size:
            clamp(38px, 10vw, 50px);
    }

    .tucum-world__heading >
    p {
        font-size: 16px;
    }

    .about-map {
        margin-top: 34px;

        padding: 14px;

        border-radius: 16px;
    }

    .about-map__label,
    .about-map__leader {
        display: none;
    }

    .tucum-locations {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;

        margin-top: 34px;
    }


    /* FOOTER */

    .site-footer {
        padding: 38px 0;
    }

    .site-footer__inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 24px;
    }

    .site-footer__contact {
        justify-content: flex-start;

        align-items: center;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 520px) {

    .site-footer__contact {
        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    :root {
        --page-gutter: 16px;
    }

    .capoeira-slogan__inner {
        width:
            calc(100% - 40px);
    }

    .capoeira-slogan p {
        font-size: 29px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero__schedule {
        width: 100%;

        justify-content: center;
    }

    .schedule-page__header h1 {
        font-size: 43px;
    }

    .class-group__title-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

    .members-badge {
        width: fit-content;
    }

    .class-gallery__slide {
        flex: 0 0 90%;
    }

    .class-gallery__progress {
        width: 78%;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-symbol {
        padding: 27px 22px 30px;
    }

    .about-symbol p {
        font-size: 21px;
    }

    .leader-profile__content {
        padding: 30px 24px 34px;
    }

    .leader-profile h3 {
        font-size: 34px;
    }

    .tucum-locations {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .button,
    .benefit-card,
    .benefit-card::before,
    .teacher-card,
    .teacher-card__image img,
    .teacher-bio__icon,
    .site-footer__social-link {
        transition: none;
    }

    .button:hover,
    .benefit-card:hover,
    .teacher-card:hover,
    .site-footer__social-link:hover {
        transform: none;
    }

    .teacher-card:hover
    .teacher-card__image img {
        transform: none;
    }

}