:root {
    --rd-forest: #173b2a;
    --rd-forest-deep: #0d281b;
    --rd-moss: #566a5e;
    --rd-sage: #dce6d8;
    --rd-sage-soft: #edf2e9;
    --rd-lilac: #d8c5f6;
    --rd-lilac-deep: #76539d;
    --rd-gold: #b58b2d;
    --rd-cream: #f8f6ef;
    --rd-paper: #fffdf8;
    --rd-ink: #14261c;
    --rd-white: #ffffff;
    --rd-line: rgba(23, 59, 42, .13);
    --rd-shadow: 0 26px 70px rgba(16, 48, 31, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--rd-cream);
    color: var(--rd-ink);
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", "Plus Jakarta Sans", Arial, sans-serif;
}

.rd-home {
    background: var(--rd-cream);
    overflow: hidden;
}

.rd-home h1,
.rd-home h2,
.rd-home h3,
.rd-home h4,
.rd-home p {
    margin-top: 0;
}

.rd-home h1,
.rd-home h2,
.rd-home h3,
.rd-home h4 {
    color: var(--rd-forest);
    font-family: Georgia, "Times New Roman", serif;
}

.rd-home p {
    color: var(--rd-moss);
    line-height: 1.8;
}

.rd-topbar {
    background: var(--rd-forest-deep);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    letter-spacing: .25px;
}

.rd-topbar-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 38px;
}

.rd-topbar p {
    align-items: center;
    display: flex;
    gap: 9px;
    margin: 0;
}

.rd-topbar-dot {
    background: var(--rd-lilac);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(216, 197, 246, .12);
    display: block;
    height: 6px;
    width: 6px;
}

.rd-topbar-links {
    align-items: center;
    display: flex;
    gap: 26px;
}

.rd-topbar a {
    color: rgba(255, 255, 255, .82);
}

.rd-topbar a:hover {
    color: var(--rd-lilac);
}

.rd-topbar a i {
    color: var(--rd-lilac);
    margin-right: 6px;
}

.rd-site-header {
    background: rgba(248, 246, 239, .94);
    border-bottom: 1px solid var(--rd-line);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
}

.rd-nav-wrap {
    align-items: center;
    display: flex;
    gap: 34px;
    min-height: 84px;
}

.rd-brand {
    display: block;
    flex: 0 0 auto;
}

.rd-brand img {
    display: block;
    height: 52px;
    object-fit: contain;
    width: 190px;
}

.rd-primary-nav {
    align-items: center;
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.rd-primary-nav a,
.rd-nav-login {
    color: var(--rd-forest);
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.rd-primary-nav a::after {
    background: var(--rd-lilac-deep);
    bottom: -9px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    width: 100%;
}

.rd-primary-nav a:hover,
.rd-primary-nav a.active,
.rd-nav-login:hover {
    color: var(--rd-lilac-deep);
}

.rd-primary-nav a:hover::after,
.rd-primary-nav a.active::after {
    transform: scaleX(1);
}

.rd-nav-actions {
    align-items: center;
    display: flex;
    gap: 18px;
}

.rd-nav-cta {
    align-items: center;
    background: var(--rd-forest);
    border-radius: 999px;
    color: var(--rd-white);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
}

.rd-nav-cta:hover {
    background: var(--rd-lilac-deep);
    color: var(--rd-white);
}

.rd-menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    padding: 8px 0 8px 8px;
}

.rd-menu-toggle span {
    background: var(--rd-forest);
    display: block;
    height: 2px;
    margin: 5px 0;
    width: 25px;
}

.rd-section {
    padding: 110px 0;
}

.rd-section-kicker {
    align-items: center;
    color: var(--rd-gold);
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 2.1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rd-section-kicker::before {
    background: currentColor;
    content: "";
    height: 1px;
    width: 32px;
}

.rd-section-title {
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: -2px;
    line-height: 1.03;
    margin-bottom: 24px;
}

.rd-section-copy {
    font-size: 17px;
    margin-bottom: 0;
    max-width: 650px;
}

.rd-lead {
    color: var(--rd-forest) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.55 !important;
}

.rd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.rd-btn {
    align-items: center;
    border: 1px solid var(--rd-forest);
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 750;
    gap: 9px;
    justify-content: center;
    letter-spacing: .1px;
    min-height: 54px;
    padding: 0 25px;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

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

.rd-btn-primary:hover {
    background: var(--rd-lilac-deep);
    border-color: var(--rd-lilac-deep);
    color: var(--rd-white);
}

.rd-btn-secondary {
    background: rgba(255, 255, 255, .58);
    color: var(--rd-forest);
}

.rd-btn-secondary:hover {
    background: var(--rd-white);
    color: var(--rd-lilac-deep);
}

.rd-hero {
    background:
        radial-gradient(circle at 85% 18%, rgba(216, 197, 246, .65), transparent 27%),
        radial-gradient(circle at 14% 88%, rgba(220, 230, 216, .9), transparent 30%),
        var(--rd-cream);
    min-height: 770px;
    padding: 78px 0 66px;
    position: relative;
}

.rd-hero::after {
    border: 1px solid rgba(181, 139, 45, .2);
    border-radius: 50%;
    content: "";
    height: 610px;
    position: absolute;
    right: -240px;
    top: -245px;
    width: 610px;
}

.rd-hero-symbol {
    color: rgba(23, 59, 42, .045);
    font-family: Georgia, serif;
    font-size: 250px;
    line-height: 1;
    pointer-events: none;
    position: absolute;
}

.rd-hero-symbol-one {
    bottom: -40px;
    left: -30px;
}

.rd-hero-symbol-two {
    right: 3%;
    top: 30px;
}

.rd-hero-content {
    max-width: 760px;
}

.rd-hero h1 {
    font-size: clamp(52px, 6.7vw, 92px);
    letter-spacing: -4px;
    line-height: .95;
    margin-bottom: 28px;
}

.rd-hero h1 em {
    color: var(--rd-lilac-deep);
    font-weight: 400;
}

.rd-hero-copy {
    font-size: 18px;
    max-width: 660px;
}

.rd-hero-trust {
    border-top: 1px solid var(--rd-line);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    max-width: 690px;
    padding-top: 24px;
}

.rd-hero-trust div {
    align-items: center;
    display: flex;
    gap: 10px;
}

.rd-hero-trust span {
    color: var(--rd-gold);
    font-family: Georgia, serif;
    font-size: 18px;
}

.rd-hero-trust strong {
    color: var(--rd-forest);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.rd-hero-visual {
    margin-left: auto;
    max-width: 515px;
    position: relative;
}

.rd-hero-image-frame {
    background: var(--rd-white);
    border-radius: 280px 280px 26px 26px;
    box-shadow: var(--rd-shadow);
    overflow: hidden;
    position: relative;
}

.rd-hero-photo {
    display: block;
    height: 585px;
    object-fit: cover;
    object-position: 50% 43%;
    width: 100%;
}

.rd-photo-caption {
    background: rgba(13, 40, 27, .86);
    bottom: 0;
    color: var(--rd-white);
    font-family: Georgia, serif;
    font-size: 17px;
    left: 0;
    line-height: 1.4;
    padding: 20px 26px;
    position: absolute;
    right: 0;
}

.rd-photo-caption small {
    color: var(--rd-lilac);
    font-family: Inter, sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rd-orbit {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .91);
    border: 1px solid rgba(181, 139, 45, .28);
    border-radius: 18px;
    bottom: 75px;
    box-shadow: 0 18px 50px rgba(16, 48, 31, .17);
    display: flex;
    gap: 13px;
    left: -64px;
    padding: 16px 18px;
    position: absolute;
}

.rd-orbit-number {
    align-items: center;
    background: var(--rd-lilac);
    border-radius: 50%;
    color: var(--rd-forest);
    display: flex;
    flex: 0 0 auto;
    font-family: Georgia, serif;
    font-size: 24px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.rd-orbit strong,
.rd-orbit div > span {
    display: block;
}

.rd-orbit strong {
    color: var(--rd-forest);
    font-family: Georgia, serif;
    font-size: 18px;
}

.rd-orbit div > span {
    color: var(--rd-moss);
    font-size: 10px;
    margin-top: 3px;
}

.rd-marquee {
    background: var(--rd-lilac);
    border-bottom: 1px solid rgba(23, 59, 42, .08);
    border-top: 1px solid rgba(23, 59, 42, .08);
    padding: 20px 0;
}

.rd-marquee-row {
    align-items: center;
    display: flex;
    gap: clamp(17px, 3vw, 42px);
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
}

.rd-marquee-row span {
    color: var(--rd-forest);
    font-family: Georgia, serif;
    font-size: 16px;
}

.rd-marquee-row i {
    background: var(--rd-gold);
    border-radius: 50%;
    display: block;
    height: 5px;
    width: 5px;
}

.rd-intro {
    background: var(--rd-paper);
}

.rd-intro-art {
    background: var(--rd-sage);
    border-radius: 30px;
    min-height: 580px;
    overflow: hidden;
    position: relative;
}

.rd-intro-art img {
    height: 580px;
    object-fit: cover;
    width: 100%;
}

.rd-intro-stamp {
    align-items: center;
    background: var(--rd-forest);
    border-radius: 50%;
    bottom: 28px;
    color: var(--rd-white);
    display: flex;
    flex-direction: column;
    height: 126px;
    justify-content: center;
    position: absolute;
    right: 28px;
    text-align: center;
    width: 126px;
}

.rd-intro-stamp span {
    color: var(--rd-lilac);
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1;
}

.rd-intro-stamp small {
    font-size: 9px;
    letter-spacing: .7px;
    line-height: 1.4;
    margin-top: 7px;
    text-transform: uppercase;
}

.rd-mini-grid {
    border-top: 1px solid var(--rd-line);
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
    padding-top: 26px;
}

.rd-mini-grid strong,
.rd-mini-grid span {
    display: block;
}

.rd-mini-grid strong {
    color: var(--rd-forest);
    font-family: Georgia, serif;
    font-size: 19px;
    margin-bottom: 7px;
}

.rd-mini-grid span {
    color: var(--rd-moss);
    font-size: 11px;
    line-height: 1.5;
}

.rd-number-story {
    background: var(--rd-sage-soft);
}

.rd-number-story-image {
    border-radius: 30px;
    box-shadow: var(--rd-shadow);
    overflow: hidden;
    position: relative;
}

.rd-number-story-image::after {
    background: linear-gradient(transparent, rgba(13, 40, 27, .74));
    bottom: 0;
    content: "";
    height: 36%;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.rd-number-story-image img {
    display: block;
    height: 620px;
    object-fit: cover;
    width: 100%;
}

.rd-number-story-image > span {
    bottom: 28px;
    color: var(--rd-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    left: 30px;
    position: absolute;
    z-index: 1;
}

.rd-number-story-copy {
    padding-left: 36px;
}

.rd-number-story-copy .rd-section-title {
    font-size: clamp(38px, 4.3vw, 59px);
}

.rd-number-points {
    border-top: 1px solid var(--rd-line);
    margin-top: 30px;
}

.rd-number-points > div {
    align-items: start;
    border-bottom: 1px solid var(--rd-line);
    display: grid;
    gap: 17px;
    grid-template-columns: 38px 1fr;
    padding: 17px 0;
}

.rd-number-points > div > span {
    color: var(--rd-gold);
    font-family: Georgia, serif;
    font-size: 18px;
}

.rd-number-points p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

.rd-number-points strong {
    color: var(--rd-forest);
    display: block;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}

.rd-paths {
    background: var(--rd-forest);
}

.rd-paths .rd-section-kicker {
    color: #e1c86e;
}

.rd-paths .rd-section-title,
.rd-paths .rd-section-copy {
    color: var(--rd-white);
}

.rd-paths .rd-section-copy {
    opacity: .72;
}

.rd-path-card {
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
    padding: 38px;
    position: relative;
    transition: transform .25s ease, background .25s ease;
}

.rd-path-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-5px);
}

.rd-path-featured {
    background: var(--rd-lilac);
    border-color: var(--rd-lilac);
}

.rd-path-featured:hover {
    background: #e0cef9;
}

.rd-path-head,
.rd-path-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.rd-path-label,
.rd-path-level {
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.rd-path-label {
    color: #e1c86e;
}

.rd-path-level {
    color: rgba(255, 255, 255, .52);
}

.rd-path-featured .rd-path-label,
.rd-path-featured .rd-path-level {
    color: var(--rd-lilac-deep);
}

.rd-path-card h3 {
    color: var(--rd-white);
    font-size: 38px;
    line-height: 1.05;
    margin: 56px 0 18px;
    max-width: 500px;
}

.rd-path-card > p {
    color: rgba(255, 255, 255, .7);
}

.rd-path-featured h3,
.rd-path-featured > p {
    color: var(--rd-forest);
}

.rd-check-list {
    list-style: none;
    margin: 18px 0 34px;
    padding: 0;
}

.rd-check-list li {
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    padding: 10px 0 10px 25px;
    position: relative;
}

.rd-check-list li::before {
    color: #e1c86e;
    content: "✦";
    left: 0;
    position: absolute;
}

.rd-path-featured .rd-check-list li {
    border-color: rgba(23, 59, 42, .13);
    color: var(--rd-forest);
}

.rd-path-featured .rd-check-list li::before {
    color: var(--rd-lilac-deep);
}

.rd-path-footer {
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin-top: auto;
    padding-top: 26px;
}

.rd-path-featured .rd-path-footer {
    border-color: rgba(23, 59, 42, .16);
}

.rd-path-footer small,
.rd-path-footer strong {
    display: block;
}

.rd-path-footer small {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.rd-path-footer strong {
    color: var(--rd-white);
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 4px;
}

.rd-path-featured .rd-path-footer small,
.rd-path-featured .rd-path-footer strong {
    color: var(--rd-forest);
}

.rd-circle-link {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: var(--rd-white);
    display: flex;
    height: 55px;
    justify-content: center;
    width: 55px;
}

.rd-circle-link:hover {
    background: var(--rd-white);
    color: var(--rd-forest);
}

.rd-path-featured .rd-circle-link {
    background: var(--rd-forest);
    border-color: var(--rd-forest);
}

.rd-centered-heading {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.rd-centered-heading .rd-section-kicker::before {
    display: none;
}

.rd-centered-heading p {
    font-size: 16px;
}

.rd-learning {
    background: var(--rd-paper);
}

.rd-module {
    background: var(--rd-cream);
    border: 1px solid var(--rd-line);
    border-radius: 27px;
    height: 100%;
    padding: 34px 30px;
}

.rd-module-dark {
    background: var(--rd-forest);
}

.rd-module-number {
    color: var(--rd-gold);
    font-family: Georgia, serif;
    font-size: 50px;
    line-height: 1;
}

.rd-module h3 {
    font-size: 27px;
    line-height: 1.15;
    margin: 24px 0 26px;
}

.rd-module-dark h3 {
    color: var(--rd-white);
}

.rd-module ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rd-module li {
    border-top: 1px solid var(--rd-line);
    color: var(--rd-moss);
    font-size: 13px;
    padding: 11px 0;
}

.rd-module-dark li {
    border-color: rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .72);
}

.rd-visual-break img {
    display: block;
    height: 700px;
    object-fit: cover;
    width: 100%;
}

.rd-visual-copy {
    background: var(--rd-lilac);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(50px, 8vw, 120px);
}

.rd-visual-copy h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.rd-benefit-list {
    border-top: 1px solid rgba(23, 59, 42, .16);
    margin-top: 25px;
}

.rd-benefit-list div {
    align-items: center;
    border-bottom: 1px solid rgba(23, 59, 42, .16);
    display: grid;
    gap: 20px;
    grid-template-columns: 42px 1fr;
    padding: 17px 0;
}

.rd-benefit-list span {
    color: var(--rd-lilac-deep);
    font-family: Georgia, serif;
    font-size: 18px;
}

.rd-benefit-list h3 {
    font-size: 22px;
    margin: 0;
}

.rd-elements {
    background: var(--rd-cream);
}

.rd-elements-art {
    border: 1px solid var(--rd-line);
    border-radius: 24px;
    margin-top: 35px;
    overflow: hidden;
}

.rd-elements-art img {
    display: block;
    height: 330px;
    object-fit: cover;
    width: 100%;
}

.rd-element-row {
    align-items: start;
    border-top: 1px solid var(--rd-line);
    display: grid;
    gap: 22px;
    grid-template-columns: 48px 200px 1fr;
    padding: 23px 0;
}

.rd-element-row:last-child {
    border-bottom: 1px solid var(--rd-line);
}

.rd-element-row > span {
    color: var(--rd-gold);
    font-family: Georgia, serif;
    font-size: 20px;
}

.rd-element-row strong {
    color: var(--rd-forest);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.rd-element-row p {
    font-size: 13px;
    margin: 0;
}

.rd-courses {
    background: var(--rd-paper);
}

.rd-text-link {
    color: var(--rd-forest);
    font-size: 13px;
    font-weight: 750;
}

.rd-text-link:hover {
    color: var(--rd-lilac-deep);
}

.rd-course-card {
    background: var(--rd-cream);
    border: 1px solid var(--rd-line);
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.rd-course-card:hover {
    box-shadow: var(--rd-shadow);
    transform: translateY(-5px);
}

.rd-course-card img {
    height: 235px;
    object-fit: cover;
    width: 100%;
}

.rd-course-card-body {
    padding: 25px;
}

.rd-course-card-body > span {
    color: var(--rd-gold);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.rd-course-card h3 {
    font-size: 25px;
    margin: 12px 0;
}

.rd-course-card p {
    color: var(--rd-lilac-deep);
    font-weight: 750;
    margin: 0;
}

.rd-mentor {
    background: var(--rd-sage-soft);
}

.rd-mentor-photo-wrap {
    background: var(--rd-sage);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.rd-mentor-photo {
    display: block;
    height: 650px;
    object-fit: cover;
    object-position: 50% 43%;
    width: 100%;
}

.rd-mentor-quote {
    background: rgba(13, 40, 27, .9);
    bottom: 22px;
    color: var(--rd-white);
    font-family: Georgia, serif;
    font-size: 17px;
    left: 22px;
    line-height: 1.5;
    padding: 18px 20px;
    position: absolute;
    right: 22px;
}

.rd-mentor-card {
    padding-left: 50px;
}

.rd-mentor-card h2 {
    font-size: clamp(47px, 5vw, 72px);
    line-height: 1;
    margin-bottom: 14px;
}

.rd-mentor-role {
    color: var(--rd-lilac-deep) !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.rd-mentor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.rd-mentor-tags span {
    border: 1px solid var(--rd-line);
    border-radius: 999px;
    color: var(--rd-forest);
    font-size: 10px;
    font-weight: 700;
    padding: 8px 13px;
}

.rd-assessment-teaser {
    background: var(--rd-lilac);
    padding: 58px 0;
}

.rd-assessment-teaser-inner {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: 190px 1fr auto;
}

.rd-assessment-symbols {
    display: flex;
}

.rd-assessment-symbols span {
    align-items: center;
    background: var(--rd-forest);
    border: 4px solid var(--rd-lilac);
    border-radius: 50%;
    color: var(--rd-white);
    display: flex;
    font-family: Georgia, serif;
    font-size: 23px;
    height: 68px;
    justify-content: center;
    margin-left: -10px;
    width: 68px;
}

.rd-assessment-symbols span:first-child {
    margin-left: 0;
}

.rd-assessment-teaser .rd-section-kicker {
    color: var(--rd-lilac-deep);
    margin-bottom: 10px;
}

.rd-assessment-teaser h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 9px;
}

.rd-assessment-teaser p {
    color: rgba(23, 59, 42, .72);
    font-size: 13px;
    margin: 0;
    max-width: 680px;
}

.rd-faq {
    background: var(--rd-paper);
}

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

.rd-faq-list details {
    border-bottom: 1px solid var(--rd-line);
    padding: 0 5px;
}

.rd-faq-list summary {
    color: var(--rd-forest);
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 22px;
    list-style: none;
    padding: 25px 40px 25px 0;
    position: relative;
}

.rd-faq-list summary::-webkit-details-marker {
    display: none;
}

.rd-faq-list summary::after {
    content: "+";
    font-family: Inter, sans-serif;
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 4px;
    top: 21px;
}

.rd-faq-list details[open] summary::after {
    content: "−";
}

.rd-faq-list details p {
    font-size: 14px;
    max-width: 650px;
    padding: 0 42px 23px 0;
}

.rd-contact {
    background:
        linear-gradient(rgba(13, 40, 27, .91), rgba(13, 40, 27, .94)),
        url("../../../../uploads/rd-numerology/community.jpeg") center/cover;
    color: var(--rd-white);
}

.rd-contact-inner {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.rd-contact .rd-section-kicker {
    color: #e1c86e;
}

.rd-contact .rd-section-kicker::before {
    display: none;
}

.rd-contact h2 {
    color: var(--rd-white);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1;
    margin-bottom: 26px;
}

.rd-contact p {
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    margin: 0 auto;
    max-width: 700px;
}

.rd-btn-light {
    background: var(--rd-lilac);
    border-color: var(--rd-lilac);
    color: var(--rd-forest);
}

.rd-btn-light:hover {
    background: var(--rd-white);
    border-color: var(--rd-white);
    color: var(--rd-forest);
}

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

.rd-btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--rd-white);
}

.rd-contact-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
    margin-top: 34px;
}

.rd-contact-links a,
.rd-contact-links span {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.rd-whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 4px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    color: var(--rd-white);
    display: flex;
    font-size: 25px;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 22px;
    width: 58px;
    z-index: 999;
}

.rd-whatsapp-float:hover {
    background: #1db95a;
    color: var(--rd-white);
    transform: translateY(-2px);
}

.footer-area {
    background: #0b2417 !important;
    color: rgba(255, 255, 255, .75);
}

.footer-area .footer-content > img {
    height: auto;
    max-width: 240px;
    object-fit: contain;
    width: 100%;
}

.footer-area h4,
.footer-area a,
.footer-area p {
    color: rgba(255, 255, 255, .8) !important;
}

.footer-area a:hover {
    color: var(--rd-lilac) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

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

    .rd-primary-nav a:nth-child(4) {
        display: none;
    }

    .rd-nav-wrap {
        gap: 22px;
    }

    .rd-nav-cta {
        display: none;
    }
}

@media (max-width: 991px) {
    .rd-section {
        padding: 86px 0;
    }

    .rd-topbar-inner {
        justify-content: center;
    }

    .rd-topbar-inner > p,
    .rd-topbar-links a:last-child {
        display: none;
    }

    .rd-nav-wrap {
        min-height: 74px;
    }

    .rd-brand img {
        height: 46px;
        width: 170px;
    }

    .rd-menu-toggle {
        display: block;
        margin-left: auto;
        order: 2;
    }

    .rd-nav-actions {
        margin-left: auto;
        order: 1;
    }

    .rd-primary-nav {
        align-items: stretch;
        background: var(--rd-paper);
        border: 1px solid var(--rd-line);
        border-radius: 18px;
        box-shadow: var(--rd-shadow);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 12px;
        padding: 12px;
        position: absolute;
        right: 12px;
        top: calc(100% + 10px);
    }

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

    .rd-primary-nav a,
    .rd-primary-nav a:nth-child(4) {
        border-bottom: 1px solid var(--rd-line);
        display: block;
        padding: 13px 10px;
    }

    .rd-primary-nav a:last-child {
        border-bottom: 0;
    }

    .rd-primary-nav a::after {
        display: none;
    }

    .rd-hero {
        padding-top: 65px;
    }

    .rd-hero-visual {
        margin: 25px auto 0;
    }

    .rd-orbit {
        left: 18px;
    }

    .rd-intro-art,
    .rd-intro-art img {
        height: 540px;
        min-height: 540px;
    }

    .rd-number-story-copy {
        padding-left: 0;
    }

    .rd-visual-break img {
        height: 560px;
    }

    .rd-mentor-card {
        padding: 25px 0 0;
    }

    .rd-assessment-teaser-inner {
        grid-template-columns: 150px 1fr;
    }

    .rd-assessment-teaser-inner .rd-btn {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .rd-topbar {
        display: none;
    }

    .rd-site-header {
        top: 0;
    }

    .rd-nav-login {
        display: none;
    }

    .rd-nav-actions {
        margin-left: auto;
    }

    .rd-section {
        padding: 70px 0;
    }

    .rd-section-title {
        font-size: 42px;
        letter-spacing: -1.3px;
    }

    .rd-hero {
        min-height: auto;
        padding: 56px 0 60px;
    }

    .rd-hero h1 {
        font-size: 54px;
        letter-spacing: -2.8px;
    }

    .rd-hero-copy {
        font-size: 16px;
    }

    .rd-hero-trust {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .rd-hero-photo {
        height: 500px;
    }

    .rd-orbit {
        bottom: 68px;
        padding: 12px;
    }

    .rd-orbit strong {
        font-size: 15px;
    }

    .rd-marquee-row {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .rd-mini-grid {
        grid-template-columns: 1fr;
    }

    .rd-number-story-image img {
        height: 470px;
    }

    .rd-path-card {
        min-height: 520px;
        padding: 28px;
    }

    .rd-path-card h3 {
        font-size: 32px;
        margin-top: 42px;
    }

    .rd-visual-break img {
        height: 480px;
    }

    .rd-visual-copy {
        padding: 60px 25px;
    }

    .rd-element-row {
        grid-template-columns: 42px 1fr;
    }

    .rd-element-row p {
        grid-column: 1 / -1;
    }

    .rd-mentor-photo {
        height: 520px;
    }

    .rd-assessment-teaser-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rd-assessment-symbols {
        justify-content: center;
    }

    .rd-assessment-teaser-inner .rd-btn {
        grid-column: 1;
        justify-self: center;
    }

    .rd-contact h2 {
        font-size: 49px;
    }

    .rd-contact-links {
        flex-direction: column;
    }

    .rd-contact-links span {
        display: none;
    }
}

@media (max-width: 420px) {
    .rd-brand img {
        width: 155px;
    }

    .rd-hero h1 {
        font-size: 47px;
    }

    .rd-btn {
        width: 100%;
    }

    .rd-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rd-hero-photo {
        height: 445px;
    }

    .rd-orbit {
        left: 10px;
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
