:root {
    --dark: #08080b;
    --white: #ffffff;
    --soft: #f8f6f4;
    --pink: #e83e7c;
    --gold: #d9a441;
    --text: #1c1c1c;
    --muted: #666666;
    --line: rgba(28, 28, 28, 0.1);
    --shadow: 0 22px 60px rgba(8, 8, 11, 0.12);
    --radius: 22px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    font-size: clamp(42px, 7vw, 86px);
}

h2 {
    font-size: clamp(30px, 4vw, 52px);
}

h3 {
    font-size: 24px;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8, 8, 11, 0.96), rgba(8, 8, 11, 0.72));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    font-weight: 700;
    text-transform: uppercase;
}

.site-logo small {
    display: block;
    margin-top: 2px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.site-logo strong {
    display: block;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: var(--pink);
    color: var(--dark);
    font-family: Georgia, serif;
    font-size: 26px;
    line-height: 1;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav .menu li {
    position: relative;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.primary-nav a:hover {
    color: var(--pink);
}

.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a {
    color: var(--pink);
}

.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    min-width: 210px;
    gap: 4px;
    margin: 0;
    padding: 12px;
    list-style: none;
    border: 1px solid rgba(217, 164, 65, 0.18);
    border-radius: 0;
    background: rgba(8, 8, 11, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav .sub-menu a {
    display: block;
    padding: 9px 10px;
    color: rgba(255, 255, 255, 0.82);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.btn-small {
    min-height: 43px;
    padding-inline: 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background: radial-gradient(circle at 70% 20%, rgba(232, 62, 124, 0.36), transparent 32%), linear-gradient(135deg, #08080b, #1b1117 56%, #08080b);
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.hero-inner {
    max-width: 840px;
}

.hero-inner p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding: 80px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: 46px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.image-card,
.text-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.text-card {
    padding: 28px;
}

.card-media {
    min-height: 230px;
    background: linear-gradient(135deg, rgba(232, 62, 124, 0.24), rgba(217, 164, 65, 0.2)), #ece7e2;
}

.card-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 600 / 420;
}

.card-media.portrait img {
    aspect-ratio: 600 / 760;
}

.card-body {
    padding: 24px;
}

.card-body a,
.text-card a {
    color: var(--pink);
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-grid article {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-grid strong {
    display: block;
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1;
}

.feature-grid span {
    color: var(--muted);
}

.dark-cta {
    background: var(--dark);
    color: var(--white);
}

.dark-cta p {
    color: rgba(255, 255, 255, 0.72);
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-row button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
}

.filter-row button.active,
.filter-row button:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
}

.trial-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trial-form label {
    display: grid;
    gap: 6px;
    color: var(--text);
    font-weight: 700;
}

.trial-form input,
.trial-form select,
.trial-form textarea,
.search-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    background: var(--white);
    color: var(--text);
    font: inherit;
}

.trial-form textarea {
    resize: vertical;
}

.span-2 {
    grid-column: 1 / -1;
}

.check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.check input {
    width: auto;
    min-height: auto;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-panel {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    box-shadow: var(--shadow);
}

.hero-form .split,
.profile-hero .split {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.slim {
    max-width: 640px;
}

.detail-layout,
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 34px;
}

.prose {
    max-width: 820px;
}

.prose h2 {
    margin-top: 34px;
    font-size: 34px;
}

.sticky-card {
    position: sticky;
    top: 110px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: left;
}

.faq-item div {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.open div {
    display: block;
}

.masonry-grid {
    columns: 3 260px;
    column-gap: 18px;
}

.masonry-grid figure {
    break-inside: avoid;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.masonry-grid span,
.mini-gallery span {
    display: block;
    background: linear-gradient(135deg, rgba(232, 62, 124, 0.4), rgba(217, 164, 65, 0.38)), #eee7df;
}

.masonry-grid span {
    height: 220px;
}

.masonry-grid figcaption {
    padding: 12px 16px;
    color: var(--muted);
}

.profile-photo {
    min-height: 420px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
}

.map-placeholder {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.notice {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.notice.success {
    background: #e9f8ef;
    color: #176b35;
}

.notice.error {
    background: #fff0f3;
    color: #a31c3f;
}

.site-footer {
    padding: 34px 0 20px;
    background: radial-gradient(circle at 18% 0%, rgba(232, 62, 124, 0.08), transparent 30%), linear-gradient(180deg, #09090d 0%, #050507 100%);
    color: var(--white);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
    margin-bottom: 16px;
    color: var(--gold);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.95fr 1.35fr;
    gap: 34px;
    align-items: start;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin-bottom: 6px;
    line-height: 1.35;
}

.footer-grid a:hover {
    color: var(--pink);
}

.footer-about p {
    max-width: 310px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 24px;
}

.footer-logo strong {
    font-size: 20px;
}

.footer-menu a {
    font-size: 13px;
}

.footer-contact p {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    margin-bottom: 9px;
    font-size: 13px;
}

.footer-contact p span {
    color: var(--gold);
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-row a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mini-gallery span {
    aspect-ratio: 1;
    border-radius: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.whatsapp-sticky {
    position: fixed;
    z-index: 40;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #07130b;
    font-weight: 900;
    box-shadow: var(--shadow);
}

/* Home page reference layout */
.rs-home {
    --rs-dark: #050507;
    --rs-black: #09090d;
    --rs-pink: #f04b93;
    --rs-pink-dark: #d9367d;
    --rs-gold: #c99a3c;
    --rs-white: #ffffff;
    --rs-muted: #b8b8c0;
    --rs-soft-bg: #faf8f5;
    --rs-border: rgba(255, 255, 255, 0.12);
    background: var(--rs-soft-bg);
}

.rs-home-hero {
    position: relative;
    height: 760px;
    min-height: 760px;
    max-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 72% 18%, rgba(201, 154, 60, 0.22), transparent 30%), linear-gradient(90deg, #050507 0%, #09090d 54%, #050507 100%);
    background-position: center right;
    background-size: cover;
    color: var(--rs-white);
}

.rs-home-hero-inner {
    position: relative;
    height: 760px;
    min-height: 760px;
    max-height: 760px;
    display: flex;
    align-items: center;
}

.rs-home-hero-copy {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    min-height: 420px;
    padding-top: 52px;
}

.rs-hero-slide {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.rs-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.rs-kicker {
    margin: 0 0 18px;
    color: var(--rs-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rs-home-hero h1,
.rs-home-hero h2 {
    margin: 0;
    color: var(--rs-white);
    font-size: clamp(64px, 6vw, 102px);
    line-height: 0.94;
    text-transform: uppercase;
}

.rs-home-hero h1 span,
.rs-home-hero h2 span {
    display: block;
    color: var(--rs-pink);
}

.rs-hero-text {
    max-width: 500px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
}

.rs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.rs-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rs-btn-pink {
    background: var(--rs-pink);
    color: var(--rs-white);
}

.rs-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--rs-white);
}

.rs-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 56%;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 3px solid var(--rs-pink);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

.rs-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid var(--rs-black);
}

.rs-hero-count {
    position: absolute;
    right: 0;
    bottom: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rs-white);
    font-family: Georgia, serif;
    font-size: 20px;
}

.rs-hero-count button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--rs-white);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.rs-hero-count i {
    display: block;
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.58);
}

.rs-hero-features {
    position: absolute;
    left: 0;
    bottom: 52px;
    display: grid;
    grid-template-columns: repeat(4, minmax(92px, auto));
    gap: 28px;
}

.rs-hero-features article {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--rs-white);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.rs-hero-features span {
    color: var(--rs-gold);
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
}

.rs-hero-features svg {
    display: block;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rs-home-section {
    padding: 74px 0;
}

.rs-programs,
.rs-teachers,
.rs-testimonials {
    background: var(--rs-soft-bg);
}

.rs-section-title {
    margin-bottom: 30px;
}

.rs-section-title.centered {
    text-align: center;
}

.rs-section-title p {
    margin: 0 0 9px;
    color: var(--rs-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rs-section-title h2 {
    margin: 0;
    color: #3d3d45;
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 400;
}

.rs-section-title.centered > span {
    display: block;
    width: 42px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--rs-pink);
}

.rs-section-title.dark h2 {
    color: var(--rs-white);
}

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

.rs-course-card,
.rs-teacher-card,
.rs-testimonial-grid article {
    overflow: hidden;
    border-radius: 9px;
    background: var(--rs-white);
    box-shadow: 0 12px 32px rgba(9, 9, 13, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.rs-course-card:hover,
.rs-teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(9, 9, 13, 0.15);
}

.rs-card-image {
    height: 170px;
    background: linear-gradient(135deg, rgba(240, 75, 147, 0.2), rgba(201, 154, 60, 0.18)), #ece7e2;
}

.rs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-course-body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 14px 20px;
}

.rs-course-body > span {
    color: var(--rs-pink);
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    line-height: 1;
}

.rs-course-icon svg {
    display: block;
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rs-course-body h3 {
    margin: 0 0 3px;
    color: #1c1c1c;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 21px;
    font-weight: 900;
}

.rs-course-body p {
    margin: 0;
    color: var(--rs-pink);
    font-size: 12px;
    font-weight: 800;
}

.rs-why {
    background: radial-gradient(circle at 50% 0%, rgba(201, 154, 60, 0.12), transparent 28%), linear-gradient(180deg, #09090d, #050507);
    color: var(--rs-white);
}

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

.rs-why-grid article {
    min-height: 190px;
    padding: 28px 24px;
    border: 1px solid var(--rs-border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
}

.rs-why-grid span {
    display: block;
    margin-bottom: 15px;
    color: var(--rs-gold);
    font-size: 44px;
}

.rs-why-grid h3 {
    margin: 0 0 13px;
    color: var(--rs-gold);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rs-why-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.rs-row-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.rs-mini-btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--rs-pink);
    border-radius: 4px;
    color: var(--rs-pink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.rs-card-image.teacher {
    height: 250px;
}

.rs-teacher-body {
    padding: 18px 20px 21px;
}

.rs-teacher-body h3 {
    margin: 0 0 5px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.rs-teacher-body p,
.rs-teacher-body small {
    display: block;
    margin: 0 0 3px;
    color: #666666;
    font-size: 13px;
}

.rs-teacher-body a {
    display: inline-block;
    margin-top: 12px;
    color: var(--rs-pink);
    font-size: 13px;
    font-weight: 800;
}

.rs-gallery-strip {
    position: relative;
    padding: 12px 0 76px;
    background: var(--rs-soft-bg);
}

.rs-gallery-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.rs-gallery-item {
    height: 205px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 75, 147, 0.22), rgba(201, 154, 60, 0.2)), #ece7e2;
}

.rs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-gallery-btn {
    position: absolute;
    left: 50%;
    bottom: 38px;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0 42px;
    border-radius: 4px;
    background: var(--rs-pink);
    color: var(--rs-white);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.rs-testimonials {
    padding-top: 38px;
}

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

.rs-testimonial-grid article {
    min-height: 210px;
    padding: 30px 34px;
}

.rs-testimonial-grid b {
    display: inline-block;
    color: var(--rs-pink);
    font-family: Georgia, serif;
    font-size: 62px;
    line-height: 0.55;
}

.rs-testimonial-grid span {
    display: block;
    margin: 6px 0 18px;
    color: var(--rs-gold);
    letter-spacing: 0.18em;
}

.rs-testimonial-grid p {
    margin: 0 0 18px;
    color: #4d4d55;
}

.rs-testimonial-grid strong {
    color: #1c1c1c;
}

.rs-trial-banner {
    min-height: 245px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--rs-pink), var(--rs-pink-dark));
    background-position: center right;
    background-size: cover;
    color: var(--rs-white);
}

.rs-trial-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    align-items: center;
    gap: 46px;
}

.rs-trial-banner h2 {
    margin: 0 0 12px;
    color: var(--rs-white);
    font-size: clamp(34px, 4vw, 54px);
}

.rs-trial-banner p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.rs-quick-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rs-quick-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.rs-quick-form input,
.rs-quick-form select {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 4px;
    padding: 0 18px;
    background: var(--rs-white);
    color: #62626a;
    font: inherit;
}

.rs-quick-form button {
    grid-column: 1 / -1;
    min-height: 56px;
    border: 0;
    border-radius: 4px;
    background: var(--rs-black);
    color: var(--rs-white);
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 1440px) {
    .rs-home-hero,
    .rs-home-hero-inner {
        height: 760px;
        min-height: 760px;
        max-height: 760px;
    }

    .rs-card-image {
        height: 155px;
    }
}

@media (max-width: 992px) {
    .rs-home-hero,
    .rs-home-hero-inner {
        height: 680px;
        min-height: 680px;
        max-height: 680px;
    }

    .rs-play {
        display: none;
    }

    .rs-home-hero-copy {
        min-height: 430px;
    }

    .rs-hero-features,
    .rs-course-grid,
    .rs-why-grid,
    .rs-teacher-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-trial-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 0;
    }
}

@media (max-width: 768px) {
    .rs-home-hero {
        height: auto;
        min-height: 560px;
        max-height: none;
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .rs-home-hero-inner {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .rs-home-hero-copy {
        padding-top: 0;
        min-height: 390px;
    }

    .rs-home-hero h1,
    .rs-home-hero h2 {
        font-size: clamp(46px, 13vw, 52px);
        line-height: 0.95;
    }

    .rs-hero-features,
    .rs-course-grid,
    .rs-why-grid,
    .rs-teacher-grid,
    .rs-testimonial-grid,
    .rs-quick-form {
        grid-template-columns: 1fr;
    }

    .rs-hero-features {
        position: static;
        margin-top: 34px;
        gap: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-hero-count {
        position: static;
        justify-content: flex-start;
        margin-top: 22px;
    }

    .rs-row-title {
        display: grid;
        align-items: start;
    }

    .rs-gallery-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .rs-gallery-item {
        min-width: 78%;
        scroll-snap-align: start;
    }

    .rs-gallery-btn {
        position: static;
        width: min(100%, 260px);
        margin: 18px auto 0;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .primary-nav .menu {
        gap: 18px;
    }

    .primary-nav a {
        font-size: 11px;
    }

    .site-logo strong {
        font-size: 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: 82px 0 auto 0;
        display: none;
        padding: 22px;
        background: rgba(8, 8, 11, 0.98);
    }

    .primary-nav.open {
        display: block;
    }

    .primary-nav .menu {
        display: grid;
        gap: 14px;
    }

    .primary-nav a {
        font-size: 13px;
    }

    .primary-nav .sub-menu {
        position: static;
        display: grid;
        margin-top: 8px;
        padding: 8px 0 0 14px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .header-actions .btn {
        display: none;
    }

    .split,
    .detail-layout,
    .blog-layout {
        grid-template-columns: 1fr;
    }

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

    .sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .container,
    .hero-form .split,
    .profile-hero .split {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        min-height: 680px;
        padding: 130px 0 60px;
    }

    .hero-inner p {
        font-size: 17px;
    }

    .section {
        padding: 48px 0;
    }

    .cards-4,
    .cards-3,
    .cards-2,
    .feature-grid,
    .trial-form,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-row,
    .footer-bottom {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-actions .btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .header-inner {
        min-height: 70px;
    }

    .primary-nav {
        inset: 70px 0 auto 0;
    }

    .site-logo strong {
        font-size: 15px;
    }

    .hero {
        min-height: 620px;
    }

    .text-card,
    .card-body,
    .form-panel {
        padding: 20px;
    }
}
