:root {
    --ink: #211B15;
    --ink-soft: #5A5148;
    --ivory: #FBF7F0;
    --ivory-2: #F4EDE1;
    --card: #FFFFFF;
    --line: #E7DECF;
    --terra: #B24A32;
    --saffron: #C98A2B;
    --olive: #5C6448;
    --shadow: 0 24px 60px -28px rgba(46, 33, 20, .35);
    --shadow-sm: 0 10px 30px -18px rgba(46, 33, 20, .4);
    --r: 18px;
    --maxw: 1280px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--ivory)
}

body::before {
    content: "";
    position: fixed;
    inset: -35%;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
    background-repeat: no-repeat;
    background-image: radial-gradient(38% 42% at 14% 12%, rgba(201, 138, 43, .90), transparent 60%),
    radial-gradient(36% 40% at 88% 16%, rgba(178, 74, 50, .72), transparent 60%),
    radial-gradient(44% 46% at 84% 92%, rgba(201, 138, 43, .78), transparent 62%);
    -webkit-animation: bgDrift 7s ease-in-out infinite alternate;
    animation: bgDrift 7s ease-in-out infinite alternate
}

@-webkit-keyframes bgDrift {
    0% {
        -webkit-transform: translate3d(-8%, -5%, 0) scale(1)
    }
    50% {
        -webkit-transform: translate3d(9%, 7%, 0) scale(1.15)
    }
    100% {
        -webkit-transform: translate3d(-5%, 9%, 0) scale(1.06)
    }
}

@keyframes bgDrift {
    0% {
        transform: translate3d(-8%, -5%, 0) scale(1)
    }
    50% {
        transform: translate3d(9%, 7%, 0) scale(1.15)
    }
    100% {
        transform: translate3d(-5%, 9%, 0) scale(1.06)
    }
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

.eyebrow {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--terra)
}

.muted {
    color: var(--ink-soft)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 999px;
    transition: .25s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap
}

.btn-primary {
    background: var(--terra);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(178, 74, 50, .7)
}

.btn-primary:hover {
    background: #9d3f2b;
    transform: translateY(-1px)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: #3a3128
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line)
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: #fff
}

.btn-lg {
    padding: 17px 30px;
    font-size: 16px
}

.topbar {
    background: var(--ink);
    color: #F3E9D8;
    font-size: 13px
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 9px;
    padding-bottom: 9px
}

.topbar b {
    color: var(--saffron)
}

.topbar a {
    opacity: .9
}

.topbar a:hover {
    opacity: 1
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 240, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    max-width: var(--maxw);
    margin: 0 auto;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px
}

.logo img {
    height: 46px;
    width: auto
}

.logo .txt b {
    font-family: 'Fraunces';
    font-weight: 600;
    font-size: 19px;
    letter-spacing: .02em;
    display: block
}

.logo .txt small {
    font-size: 11px;
    color: var(--ink-soft)
}

.menu {
    display: flex;
    gap: 28px;
    font-size: 14.5px;
    font-weight: 500
}

.menu a {
    color: var(--ink-soft);
    transition: .2s
}

.menu a:hover {
    color: var(--ink)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.lang-wrap {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    color: var(--ink-soft);
    transition: .2s
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 180px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none
}

.lang-menu.open {
    display: block
}

.lang-menu button {
    width: 100%;
    text-align: left;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.lang-menu button + button {
    border-top: 1px solid var(--ivory-2)
}

.lang-menu button:hover {
    background: var(--ivory)
}

.lang-menu .chk {
    color: var(--terra);
    font-size: 12px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 14px 20px
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 11px 6px;
    font-weight: 500;
    color: var(--ink-soft)
}

.mobile-menu a.btn-dark {
    color: #fff
}

.mobile-menu a.btn-dark:hover {
    color: #fff
}

.hero {
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(680px 420px at 85% -5%, rgba(201, 138, 43, .16), transparent 60%), radial-gradient(520px 420px at 8% 110%, rgba(92, 100, 72, .10), transparent 60%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 44px;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 48px
}

.badge {
    display: inline-flex;
    width: fit-content;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 66px);
    letter-spacing: -.02em
}

.script {
    font-family: 'Caveat', cursive;
    color: var(--terra);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1;
    display: block;
    margin-top: 4px
}

.hero p.lead {
    font-size: 18px;
    max-width: 520px;
    color: var(--ink-soft);
    margin: 22px 0 0
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0 0
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.hero-logo-wrap {
    position: relative;
    width: min(580px, 100%);
    display: grid;
    place-items: center
}

.hero-logo-wrap:before {
    content: "";
    position: absolute;
    inset: -8% 2%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(201, 138, 43, .20), rgba(178, 74, 50, .08) 55%, transparent 72%);
    filter: blur(8px)
}

.hero-logo-wrap img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(46, 33, 20, .22))
}

.lang-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
    width: min(420px, 100%);
    text-align: center
}

.lang-card .eb {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600
}

.lang-card h3 {
    font-size: 19px;
    margin: 6px 0 14px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center
}

.chip-lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s
}

.chip-lang:hover {
    border-color: var(--terra);
    color: var(--terra)
}

.trust {
    background: var(--ink);
    color: #EBDFCB
}

.trust .wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 16px 20px
}

.ti {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
    justify-content: center;
    padding: 6px 22px
}

.ti-ic {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex: none
}

.ti-t {
    display: flex;
    flex-direction: column;
    line-height: 1.18
}

.ti-t b {
    font-family: 'Fraunces';
    font-weight: 600;
    font-size: 16px;
    color: #fff
}

.ti-t span {
    font-size: 12.5px;
    color: #B9A88C
}

.ti-sep {
    width: 1px;
    background: rgba(255, 255, 255, .13);
    margin: 6px 0;
    flex: none
}

section.blk {
    padding: 70px 0
}

.head {
    max-width: 660px;
    margin-bottom: 36px
}

.head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.head h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    margin: 14px 0 14px
}

.head p {
    font-size: 17px;
    color: var(--ink-soft)
}

.langs {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.lc {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: .25s;
    position: relative
}

.lc:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--terra)
}

.lc .flag {
    font-size: 38px;
    line-height: 1
}

.lc .flag-img {
    height: 46px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 9px rgba(46, 33, 20, .18))
}

.lflag {
    height: 17px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 2px
}

.lc h3 {
    font-size: 18px;
    margin-top: 12px
}

.lc .nat {
    font-size: 12.5px;
    color: var(--ink-soft)
}

.lc .lv {
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--terra)
}

.lc.soon {
    opacity: .6
}

.lc .soon-b {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--ivory-2);
    color: var(--ink-soft);
    padding: 4px 9px;
    border-radius: 999px
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.pf {
    display: grid;
    grid-template-columns:1fr 1.15fr;
    gap: 34px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm)
}

.pf.rev .pf-text {
    order: 2
}

.pf-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ivory-2);
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.pf-ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--terra)
}

.pf h3 {
    font-size: 23px;
    margin-bottom: 10px
}

.pf p {
    font-size: 16px;
    color: var(--ink-soft)
}

.pf-media {
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible
}

.pf-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terra);
    text-align: center;
    margin: 0 0 18px
}

.pf-frame {
    position: relative;
    border-radius: 28px;
    padding: 5px;
    border: 1px solid rgba(220, 201, 174, .5);
    box-shadow: 0 24px 60px rgba(50, 35, 25, .10), 0 6px 20px rgba(50, 35, 25, .06);
    transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease
}

.pf-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    padding: 1.4px;
    background: linear-gradient(115deg, transparent 36%, rgba(228, 208, 178, .9) 46%, rgba(215, 161, 94, .8) 50%, rgba(196, 106, 61, .45) 55%, transparent 66%);
    background-size: 260% 260%;
    background-repeat: no-repeat;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-animation: pfSheen 11s ease-in-out infinite alternate;
    animation: pfSheen 11s ease-in-out infinite alternate
}

@-webkit-keyframes pfSheen {
    from {
        background-position: 0% 0%
    }
    to {
        background-position: 100% 100%
    }
}

@keyframes pfSheen {
    from {
        background-position: 0% 0%
    }
    to {
        background-position: 100% 100%
    }
}

.pf-frame:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 161, 94, .75);
    box-shadow: 0 30px 72px rgba(50, 35, 25, .13), 0 8px 24px rgba(50, 35, 25, .08)
}

.pf-screen {
    border-radius: 23px;
    overflow: hidden;
    border: 1px solid rgba(220, 201, 174, .45);
    line-height: 0
}

.pf-screen video {
    display: block;
    width: 100%;
    height: auto
}

.filter {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
    gap: 6px;
    flex-wrap: wrap;
    background: var(--ivory-2);
    border: 1px solid var(--line);
    padding: 6px;
    border-radius: 999px;
    width: fit-content
}

.filter button {
    border: none;
    background: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s
}

.filter button.active {
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm)
}

.teachers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px
}

.teacher {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: .25s;
    display: flex;
    flex-direction: column
}

.teacher:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm)
}

.teacher .ph {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ivory-2);
    cursor: pointer
}

.teacher .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.teacher .ph:hover img {
    transform: scale(1.05)
}

.teacher .play {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .94);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-sm)
}

.teacher .info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.teacher h3 {
    font-size: 22px
}

.teacher .role {
    font-size: 14px;
    color: var(--terra);
    font-weight: 600;
    margin: 4px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.teacher .bio {
    font-size: 14px;
    color: var(--ink-soft);
    flex: 1
}

.teacher .acts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.teacher .acts .btn {
    font-size: 13.5px;
    padding: 11px 17px
}

.contact-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0;
    padding: 88px 24px;
    text-align: center;
    color: #fff;
    background: radial-gradient(120% 120% at 50% 50%, #bd5733 0%, #9b3f26 62%, #7c2c1d 100%)
}

.cb-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto
}

.contact-band::before, .contact-band::after {
    content: "";
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    filter: blur(40px);
    pointer-events: none;
    will-change: transform;
    z-index: 0
}

.contact-band::before {
    background: radial-gradient(33% 40% at 30% 30%, rgba(242, 201, 138, .92) 0%, rgba(242, 201, 138, 0) 55%),
    radial-gradient(30% 34% at 72% 42%, rgba(220, 126, 62, .78) 0%, rgba(220, 126, 62, 0) 56%),
    radial-gradient(32% 38% at 55% 78%, rgba(235, 181, 106, .7) 0%, rgba(235, 181, 106, 0) 58%);
    -webkit-animation: blobOne 5s ease-in-out infinite alternate;
    animation: blobOne 5s ease-in-out infinite alternate
}

.contact-band::after {
    background: radial-gradient(38% 42% at 66% 64%, rgba(158, 59, 36, .85) 0%, rgba(158, 59, 36, 0) 58%),
    radial-gradient(30% 36% at 24% 70%, rgba(120, 42, 30, .8) 0%, rgba(120, 42, 30, 0) 58%),
    radial-gradient(28% 32% at 42% 18%, rgba(198, 86, 46, .62) 0%, rgba(198, 86, 46, 0) 58%);
    -webkit-animation: blobTwo 7s ease-in-out infinite alternate;
    animation: blobTwo 7s ease-in-out infinite alternate
}

@-webkit-keyframes blobOne {
    0% {
        -webkit-transform: translate3d(-7%, -5%, 0) scale(1) rotate(0deg)
    }
    50% {
        -webkit-transform: translate3d(9%, 7%, 0) scale(1.14) rotate(10deg)
    }
    100% {
        -webkit-transform: translate3d(-5%, 9%, 0) scale(1.04) rotate(-8deg)
    }
}

@keyframes blobOne {
    0% {
        transform: translate3d(-7%, -5%, 0) scale(1) rotate(0deg)
    }
    50% {
        transform: translate3d(9%, 7%, 0) scale(1.14) rotate(10deg)
    }
    100% {
        transform: translate3d(-5%, 9%, 0) scale(1.04) rotate(-8deg)
    }
}

@-webkit-keyframes blobTwo {
    0% {
        -webkit-transform: translate3d(7%, 5%, 0) scale(1.05) rotate(0deg)
    }
    50% {
        -webkit-transform: translate3d(-9%, -7%, 0) scale(1.18) rotate(-12deg)
    }
    100% {
        -webkit-transform: translate3d(5%, -9%, 0) scale(1.08) rotate(8deg)
    }
}

@keyframes blobTwo {
    0% {
        transform: translate3d(7%, 5%, 0) scale(1.05) rotate(0deg)
    }
    50% {
        transform: translate3d(-9%, -7%, 0) scale(1.18) rotate(-12deg)
    }
    100% {
        transform: translate3d(5%, -9%, 0) scale(1.08) rotate(8deg)
    }
}

.contact-band > * {
    position: relative;
    z-index: 2
}

.contact-band h2, .contact-band p, .contact-band .eyebrow {
    text-shadow: 0 1px 14px rgba(50, 16, 8, .28)
}

.contact-band .eyebrow {
    color: #F4D9B8
}

.contact-band h2 {
    color: #fff;
    font-size: clamp(30px, 3.6vw, 46px);
    margin: 12px 0 14px
}

.contact-band p {
    max-width: 620px;
    margin: 0 auto;
    opacity: .94;
    font-size: 17px
}

.contact-band .btn {
    margin-top: 26px;
    background: #fff;
    color: var(--terra)
}

.contact-band .btn:hover {
    background: #fff6ea
}

.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 26px
}

.socials a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    display: grid;
    place-items: center;
    transition: .2s
}

.socials a:hover {
    background: rgba(255, 255, 255, .28);
    transform: translateY(-2px)
}

.socials svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

footer {
    background: var(--ink);
    color: #CDBFA9;
    padding: 56px 0 28px
}

.fgrid {
    display: grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #3a3128
}

footer .logo img {
    height: 62px;
    opacity: .95
}

footer p.about {
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
    color: #a89a86
}

footer h4 {
    font-family: 'Inter';
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a7d6b;
    margin-bottom: 16px;
    font-weight: 600
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14.5px
}

footer ul a:hover {
    color: #fff
}

.fbot {
    padding-top: 22px;
    font-size: 13px;
    color: #8a7d6b;
    text-align: center
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(35, 25, 20, .38);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.modal.open {
    display: flex
}

.modal.open .modal-card {
    animation: modalIn .42s cubic-bezier(.2, .7, .2, 1)
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.modal-card {
    background: #fff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow: auto
}

.modal-card.video {
    max-width: 860px;
    padding: 22px 22px 24px;
    overflow: hidden;
    color: #F1DEC2;
    border-radius: 28px;
    border: 1px solid rgba(225, 190, 145, .65);
    background: radial-gradient(circle at 20% 10%, rgba(190, 92, 48, .18), transparent 45%), linear-gradient(145deg, #33251d 0%, #211914 55%, #171310 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .045), 0 35px 100px rgba(75, 35, 20, .35), 0 0 70px rgba(185, 77, 50, .08)
}

.vid-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(232, 199, 157, .75);
    text-align: center;
    margin: 2px 0 14px
}

.vid-screen {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .4)
}

.vid-screen video, .vid-screen video:focus, .vid-screen video:focus-visible {
    outline: none !important
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ivory-2);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    color: var(--ink);
    transition: .35s ease
}

.modal-card.video .modal-close {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 16px;
    font-size: 22px;
    color: #E2BB8B;
    background: rgba(55, 38, 28, .45);
    border: 1px solid rgba(225, 190, 145, .55);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 3
}

.modal-card.video .modal-close:hover {
    background: rgba(185, 77, 50, .30);
    border-color: rgba(225, 190, 145, .9);
    transform: rotate(90deg)
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 6px
}

.modal .sub {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 20px
}

.field {
    margin-bottom: 14px
}

.field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 6px
}

.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--ivory);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: .2s
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--terra);
    background: #fff
}

.vid-body {
    padding: 26px 6px 6px;
    background: none
}

.vid-body h3 {
    font-family: 'Fraunces';
    font-size: clamp(28px, 3vw, 34px);
    font-weight: 600;
    letter-spacing: -.01em;
    color: #F1DEC2;
    margin-bottom: 8px
}

.vid-body .role {
    font-size: 15px;
    font-weight: 600;
    color: #D79A68;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.vid-body p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(239, 222, 200, .72)
}

#modalVideo {
    width: 100%;
    display: block;
    background: #000;
    max-height: 56vh;
    outline: none
}

html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .7s cubic-bezier(.2, .7, .2, 1)
}

html.js .reveal.in {
    opacity: 1;
    transform: none
}

.hidden {
    display: none
}

.auth-wrap {
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: 56px 0
}

.auth-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 38px 34px
}

.auth-card .eyebrow {
    display: block;
    margin-bottom: 10px
}

.auth-card h2 {
    font-size: 27px;
    margin: 0 0 12px
}

.auth-card p.sub {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px
}

.auth-card .field {
    margin-bottom: 16px
}

.auth-card ul.errorlist {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    color: var(--terra);
    font-size: 13px
}

.auth-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px
}

.auth-card .fielderr {
    color: var(--terra);
    font-size: 12.5px;
    margin-top: 5px
}

.auth-card .auth-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 14px;
    text-align: center
}

.auth-card .auth-links a {
    color: var(--terra);
    font-weight: 600
}

.auth-card .auth-links a:hover {
    color: #9d3f2b
}

.auth-card .login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 2px 0 18px;
    font-size: 13.5px;
    flex-wrap: wrap
}

.auth-card .login-row a {
    color: var(--terra);
    font-weight: 600
}

.auth-card .remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    cursor: pointer;
    margin: 0
}

.auth-card .remember input {
    width: auto;
    margin: 0;
    accent-color: var(--terra)
}

.auth-card .logo-top {
    height: 54px;
    width: auto;
    display: block;
    margin: 0 auto 10px
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns:1.15fr .85fr;
        gap: 28px
    }

    .hero-logo-wrap {
        width: 100%
    }

    .langs {
        grid-template-columns:repeat(3, 1fr)
    }

    .teacher {
        flex-basis: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2)
    }

    .pf {
        grid-template-columns:1fr;
        gap: 20px
    }

    .pf.rev .pf-text {
        order: 0
    }

    .pf-media {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto
    }

    .fgrid {
        grid-template-columns:1fr 1fr
    }

    .menu {
        display: none
    }

    .burger {
        display: flex
    }

    .cabinet-btn {
        display: none
    }
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 18px
    }

    .nav {
        padding: 12px 18px;
        gap: 10px
    }

    .logo .txt {
        display: none
    }

    .logo img {
        height: 40px
    }

    .lang-btn {
        padding: 8px 12px;
        font-size: 13px
    }

    .topbar {
        font-size: 12px
    }

    .topbar .wrap {
        gap: 10px;
        padding-top: 8px;
        padding-bottom: 8px
    }

    .topbar .wrap span:first-child {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .topbar .wrap span:last-child {
        flex: none;
        white-space: nowrap
    }

    .hero-grid {
        grid-template-columns:1.25fr .75fr;
        padding-top: 20px;
        padding-bottom: 30px;
        gap: 16px
    }

    .badge {
        font-size: 11.5px;
        padding: 7px 12px;
        margin-bottom: 14px
    }

    .hero h1 {
        font-size: clamp(27px, 7.2vw, 40px)
    }

    .script {
        font-size: clamp(23px, 6vw, 34px)
    }

    .hero p.lead {
        font-size: 15.5px;
        margin-top: 14px
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 18px
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center
    }

    .hero-logo-wrap {
        width: 100%
    }

    .trust .wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 14px 10px;
        gap: 4px 6px
    }

    .ti {
        flex: 0 0 47%;
        justify-content: flex-start;
        padding: 9px 6px;
        gap: 10px
    }

    .ti-ic {
        width: 42px;
        height: 42px
    }

    .ti-t b {
        font-size: 14px
    }

    .ti-t span {
        font-size: 11.5px
    }

    .ti-sep {
        display: none
    }

    section.blk {
        padding: 50px 0
    }

    .head {
        margin-bottom: 26px
    }

    .langs {
        grid-template-columns:1fr 1fr;
        gap: 12px
    }

    .lc {
        padding: 20px 12px
    }

    .lc .flag-img {
        height: 40px
    }

    .pf {
        padding: 20px;
        gap: 18px
    }

    .pf h3 {
        font-size: 20px
    }

    .pf-media {
        max-width: 88%;
        margin-left: auto;
        margin-right: auto
    }

    .pf-frame {
        border-radius: 22px
    }

    .pf-screen {
        border-radius: 18px
    }

    .filter {
        margin-bottom: 26px
    }

    .teachers {
        gap: 12px
    }

    .teacher {
        flex-basis: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2)
    }

    .teacher .info {
        padding: 14px 13px 16px
    }

    .teacher h3 {
        font-size: 16.5px
    }

    .teacher .role {
        font-size: 11.5px;
        margin: 3px 0 8px;
        gap: 5px
    }

    .teacher .bio {
        font-size: 12.5px;
        line-height: 1.5
    }

    .teacher .play {
        padding: 6px 11px;
        font-size: 11px;
        bottom: 10px;
        right: 10px
    }

    .teacher .acts {
        gap: 7px;
        margin-top: 12px
    }

    .teacher .acts .btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.25
    }

    .contact-band {
        padding: 56px 22px
    }

    .socials a {
        width: 48px;
        height: 48px
    }

    .fgrid {
        grid-template-columns:1fr;
        gap: 28px
    }

    footer {
        padding: 44px 0 26px
    }

    .modal {
        padding: 16px
    }

    .modal-card {
        padding: 24px 20px
    }

    .modal-card.video {
        padding: 16px 16px 20px;
        border-radius: 22px
    }

    .modal-card.video .modal-close {
        width: 42px;
        height: 42px;
        top: 12px;
        right: 12px
    }

    #modalVideo, .vid-screen video {
        max-height: 46vh
    }

    .vid-body {
        padding: 20px 4px 4px
    }
}

@media (max-width: 400px) {
    .langs {
        grid-template-columns:1fr
    }

    .ti {
        flex: 0 0 100%
    }

    .hero-grid {
        grid-template-columns:1.35fr .65fr;
        gap: 12px
    }

    .hero h1 {
        font-size: clamp(25px, 7vw, 32px)
    }

    .script {
        font-size: clamp(21px, 5.6vw, 28px)
    }

    .topbar .wrap span:first-child {
        display: none
    }

    .topbar .wrap {
        justify-content: center
    }
}