/* =========================================================
   STYLE MANTRA - Main Styles
   ========================================================= */

:root {
    --sm-bg: #fffaf7;
    --sm-surface: #ffffff;
    --sm-text: #241b1d;
    --sm-muted: #76686b;
    --sm-accent: #9a5369;
    --sm-accent-dark: #71384b;
    --sm-border: rgba(36, 27, 29, 0.10);
    --sm-shadow: 0 14px 40px rgba(43, 28, 32, 0.10);
    --sm-radius: 14px;
    --sm-container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--sm-bg);
    color: var(--sm-text);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 247, 0.96);
    border-bottom: 1px solid var(--sm-border);
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    box-shadow: var(--sm-shadow);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: auto;
    max-width: 190px;
    height: 68px;
    object-fit: contain;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.main-nav > a,
.dropdown-toggle {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--sm-text);
    padding: 13px 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .1px;
    cursor: pointer;
    transition: color .2s ease;
}

.main-nav > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    border-radius: 20px;
    background: var(--sm-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown-toggle:hover {
    color: var(--sm-accent-dark);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover .dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 15px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    padding: 8px;
    background: var(--sm-surface);
    border: 1px solid var(--sm-border);
    border-radius: 12px;
    box-shadow: var(--sm-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;
    color: var(--sm-text);
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}

.dropdown-menu a:hover {
    background: var(--sm-bg);
    color: var(--sm-accent-dark);
}

.nav-cta {
    margin-left: 7px;
    padding-inline: 18px !important;
    border-radius: 999px;
    background: var(--sm-accent) !important;
    color: #fff !important;
}

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

.nav-cta:hover,
.nav-cta.active {
    background: var(--sm-accent-dark) !important;
    color: #fff !important;
}

/* Mobile menu button */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--sm-border);
    border-radius: 10px;
    background: var(--sm-surface);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--sm-text);
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Basic page helpers */
.section {
    padding: 80px 0;
}

.section-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
}

.section-subtitle {
    max-width: 680px;
    margin: 0;
    color: var(--sm-muted);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1100px) {
    .header-inner {
        min-height: 82px;
    }

    .brand img {
        max-width: 165px;
        height: 60px;
    }

    .main-nav > a,
    .dropdown-toggle {
        padding-inline: 8px;
        font-size: 13px;
    }

    .main-nav > a::after,
    .dropdown-toggle::after {
        left: 8px;
        right: 8px;
    }
}

/* =========================================================
   MOBILE NAVIGATION - FIXED
   ========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(100% - 30px, var(--sm-container));
    }


    /* Hamburger */

    .nav-toggle {

        display: block;

        position: relative;

        z-index: 1002;

    }


    /* Mobile Navigation */

    .main-nav {

        position: fixed;

        top: var(--sm-header-height, 82px);

        right: 0;

        bottom: 0;

        left: 0;

        width: 100%;

        height: calc(
            100vh - var(--sm-header-height, 82px)
        );

        display: block;

        margin: 0;

        padding: 10px 24px 40px;

        background: var(--sm-surface);

        overflow-y: auto;

        -webkit-overflow-scrolling: touch;

        transform: translateX(100%);

        transition: transform .25s ease;

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

        z-index: 1001;

    }


    /* OPEN */

    .main-nav.is-open {

        transform: translateX(0);

    }


    /* Main menu links */

    .main-nav > a,
    .main-nav > .nav-dropdown > .dropdown-toggle {

        display: flex;

        width: 100%;

        min-height: 58px;

        align-items: center;

        justify-content: space-between;

        padding: 0 5px;

        margin: 0;

        border-bottom: 1px solid var(--sm-border);

        background: transparent;

        color: var(--sm-text);

        text-align: left;

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

        font-size: 16px;

        font-weight: 500;

        line-height: 1.4;

    }


    /* Remove desktop underline */

    .main-nav > a::after,
    .main-nav > .nav-dropdown > .dropdown-toggle::after {

        display: none;

    }


    /* Services */

    .nav-dropdown {

        width: 100%;

        margin: 0;

        border-bottom: 1px solid var(--sm-border);

    }


    .nav-dropdown .dropdown-toggle {

        border-bottom: 0;

    }


    /* Dropdown */

    .dropdown-menu {

        position: static;

        width: 100%;

        min-width: 0;

        display: none;

        padding: 0 0 8px 14px;

        margin: 0;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: transparent;

    }


    .nav-dropdown.open .dropdown-menu {

        display: block;

    }


    /* Dropdown links */

    .dropdown-menu a {

        display: flex;

        width: 100%;

        min-height: 48px;

        align-items: center;

        padding: 0 8px;

        color: var(--sm-muted);

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

        font-size: 14px;

        font-weight: 400;

        line-height: 1.4;

        border-bottom: 1px solid rgba(
            36,
            27,
            29,
            0.06
        );

    }


    .dropdown-menu a:last-child {

        border-bottom: 0;

    }


    /* Arrow */

    .nav-dropdown.open .dropdown-arrow {

        transform: rotate(180deg);

    }


    /* Contact button */

    .main-nav .nav-cta {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        min-height: 52px;

        margin: 18px 0 0;

        padding: 0 20px;

        border: 0 !important;

        border-radius: 999px;

        background: var(--sm-accent) !important;

        color: #fff !important;

    }

}


@media (max-width: 480px) {

    .container {

        width: min(100% - 24px, var(--sm-container));

    }


    .header-inner {

        min-height: 74px;

    }


    .brand img {

        max-width: 145px;

        height: 54px;

    }


    .main-nav {

        top: var(--sm-header-height, 74px);

        height: calc(
            100vh - var(--sm-header-height, 74px)
        );

        padding: 8px 18px 30px;

    }


    .main-nav > a,
    .main-nav > .nav-dropdown > .dropdown-toggle {

        min-height: 58px;

        font-size: 16px;

    }

}

/* =========================================================
   STYLE MANTRA FOOTER
   ========================================================= */

.site-footer {
    margin-top: 80px;
    background: #241b1d;
    color: #ffffff;
}

.footer-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1.3fr;
    gap: 55px;

    padding: 70px 0 55px;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    background: #fffaf7;
    padding: 10px 16px;

    border-radius: 10px;

    margin-bottom: 20px;
}

.footer-logo img {
    display: block;

    width: auto;
    max-width: 220px;
    height: 75px;

    object-fit: contain;
}

.footer-brand > p {
    margin: 0;

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

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.footer-social {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

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

    font-size: 12px;

    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: #9a5369;
    border-color: #9a5369;

    color: #ffffff;

    transform: translateY(-2px);
}


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

.footer-box h3 {
    margin: 5px 0 20px;

    color: #ffffff;

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


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

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: inline-block;

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

    font-size: 14px;

    transition: all 0.2s ease;
}

.footer-links li a::before {
    content: "›";

    margin-right: 7px;

    color: #9a5369;

    transition: margin 0.2s ease;
}

.footer-links li a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-links li a:hover::before {
    margin-right: 10px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 19px;
}

.footer-icon {
    width: 25px;
    min-width: 25px;

    font-size: 15px;

    line-height: 1.6;
}

.footer-contact-item strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

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

.footer-contact-item p {
    margin: 0;

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

    font-size: 12px;

    line-height: 1.65;
}

.footer-contact-item a {
    display: block;

    margin-bottom: 5px;

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

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}


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

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

.footer-bottom-container {
    width: min(100% - 40px, 1240px);
    min-height: 65px;

    margin: 0 auto;

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

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

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

    font-size: 12px;
}


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

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 35px;
    }

    .footer-brand {
        max-width: 100%;
    }
}


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

@media (max-width: 600px) {

    .site-footer {
        margin-top: 55px;
    }

    .footer-container {
        width: min(100% - 30px, 1240px);

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0 35px;
    }


    .footer-logo img {
        height: 62px;

        max-width: 190px;
    }


    .footer-brand > p {
        font-size: 13px;
    }


    .footer-bottom-container {
        width: min(100% - 30px, 1240px);

        min-height: auto;

        display: block;

        padding: 18px 0;
    }

    .footer-bottom p + p {
        margin-top: 7px;
    }
}


:root {
    --sm-pink: #9a5369;
    --sm-pink-dark: #71384b;
    --sm-dark: #241b1d;
    --sm-cream: #fffaf7;
    --sm-text: #241b1d;
    --sm-muted: #76686b;
}

.sm-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.sm-section {
    padding: 100px 0;
}

.sm-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--sm-pink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sm-section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.sm-section-heading.sm-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sm-section-heading h2,
.sm-why-content h2,
.sm-course-content h2,
.sm-bridal-content h2,
.sm-cta-content h2 {
    margin: 0 0 18px;
    color: var(--sm-text);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
}

.sm-section-heading h2 span,
.sm-why-content h2 span,
.sm-course-content h2 span,
.sm-bridal-content h2 span,
.sm-cta-content h2 span {
    color: var(--sm-pink);
}

.sm-section-heading p,
.sm-why-content > p,
.sm-course-content > p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 15px;
    line-height: 1.9;
}


/* HERO */

.sm-hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.sm-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 12, 15, .80) 0%,
            rgba(20, 12, 15, .55) 43%,
            rgba(20, 12, 15, .10) 75%,
            rgba(20, 12, 15, .05) 100%
        );
}

.sm-hero-content {
    position: relative;
    z-index: 1;
}

.sm-hero-copy {
    max-width: 650px;
    color: #ffffff;
}

.sm-hero-copy .sm-eyebrow {
    color: #f2d7df;
}

.sm-hero-copy h1 {
    margin: 0 0 22px;

    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(55px, 7vw, 90px);
    font-weight: 400;
    line-height: .98;
}

.sm-hero-copy h1 span {
    display: block;
    color: #f2c9d4;
}

.sm-hero-copy > p {
    max-width: 580px;
    margin: 0;

    color: rgba(255, 255, 255, .82);

    font-size: 16px;
    line-height: 1.9;
}

.sm-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

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

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid transparent;
    border-radius: 999px;

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

    transition: all .25s ease;
}

.sm-btn-primary {
    background: var(--sm-pink);
    color: #ffffff;
}

.sm-btn-primary:hover {
    background: var(--sm-pink-dark);
    transform: translateY(-2px);
}

.sm-btn-outline {
    border-color: rgba(255, 255, 255, .65);
    color: #ffffff;
}

.sm-btn-outline:hover {
    background: #ffffff;
    color: var(--sm-dark);
}

.sm-btn-dark {
    background: var(--sm-dark);
    color: #ffffff;
}

.sm-btn-dark:hover {
    background: var(--sm-pink);
    transform: translateY(-2px);
}

.sm-btn-light {
    background: #ffffff;
    color: var(--sm-dark);
}

.sm-btn-light:hover {
    background: #f8e9ed;
    transform: translateY(-2px);
}


/* INTRO */

.sm-intro {
    background: var(--sm-cream);
}

.sm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 60px;

    border-top: 1px solid rgba(36, 27, 29, .12);
    border-bottom: 1px solid rgba(36, 27, 29, .12);
}

.sm-stat {
    display: flex;
    align-items: center;
    gap: 17px;

    min-height: 115px;
    padding: 20px 25px;

    border-right: 1px solid rgba(36, 27, 29, .12);
}

.sm-stat:last-child {
    border-right: 0;
}

.sm-stat strong {
    color: var(--sm-pink);

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
}

.sm-stat span {
    color: var(--sm-text);
    font-size: 12px;
    line-height: 1.6;
}


/* SERVICES */

.sm-services {
    background: #ffffff;
}

.sm-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.sm-service-card {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    padding: 34px;

    background-size: cover;
    background-position: center;

    isolation: isolate;

    transition: transform .3s ease;
}

.sm-service-card::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            0deg,
            rgba(24, 15, 18, .85),
            rgba(24, 15, 18, .12)
        );
}

.sm-service-card:hover {
    transform: translateY(-5px);
}

.sm-service-hair {
    background-image:
        url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1000&q=85");
}

.sm-service-skin {
    background-image:
        url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1000&q=85");
}

.sm-service-body {
    background-image:
        url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1000&q=85");
}

.sm-service-bridal {
    background-image:
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1000&q=85");
}

.sm-service-number {
    position: absolute;
    top: 25px;
    right: 28px;

    color: rgba(255, 255, 255, .65);

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 26px;
}

.sm-service-content {
    color: #ffffff;
}

.sm-service-content > span:first-child {
    color: #f0cbd5;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sm-service-content h3 {
    margin: 7px 0 8px;

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
}

.sm-service-content p {
    max-width: 410px;

    margin: 0 0 15px;

    color: rgba(255, 255, 255, .75);

    font-size: 13px;
    line-height: 1.7;
}

.sm-service-link {
    font-size: 12px;
    font-weight: 600;
}

.sm-center-button {
    margin-top: 38px;
    text-align: center;
}


/* WHY */

.sm-why {
    background: #f7efec;
}

.sm-why-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 90px;
}

.sm-why-image {
    position: relative;
}

.sm-image-frame {
    height: 610px;
    overflow: hidden;
}

.sm-image-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sm-floating-card {
    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;
    flex-direction: column;

    min-width: 220px;

    padding: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(36, 27, 29, .14);
}

.sm-floating-card strong {
    color: var(--sm-text);

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.sm-floating-card span {
    margin-top: 3px;

    color: var(--sm-muted);

    font-size: 10px;
}

.sm-feature-list {
    margin-top: 35px;
}

.sm-feature {
    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(36, 27, 29, .10);
}

.sm-feature:first-child {
    border-top: 1px solid rgba(36, 27, 29, .10);
}

.sm-feature-icon {
    color: var(--sm-pink);

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 22px;
}

.sm-feature h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.sm-feature p {
    margin: 0;

    color: var(--sm-muted);

    font-size: 12px;
    line-height: 1.7;
}

.sm-text-link {
    display: inline-block;

    margin-top: 28px;

    color: var(--sm-pink-dark);

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

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


/* BRIDAL */

.sm-bridal {
    min-height: 570px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(34, 20, 24, .88),
            rgba(34, 20, 24, .38),
            rgba(34, 20, 24, .10)
        ),
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.sm-bridal-content {
    max-width: 650px;
}

.sm-bridal-content .sm-eyebrow {
    color: #f3d8df;
}

.sm-bridal-content h2 {
    color: #ffffff;
}

.sm-bridal-content p {
    max-width: 560px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 15px;
    line-height: 1.9;
}


/* COURSES */

.sm-courses {
    background: #ffffff;
}

.sm-course-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.sm-course-points {
    display: grid;
    grid-template-columns: 1fr;
}

.sm-course-points > div {
    padding: 24px 0;

    border-top: 1px solid rgba(36, 27, 29, .12);
}

.sm-course-points > div:last-child {
    border-bottom: 1px solid rgba(36, 27, 29, .12);
}

.sm-course-points strong {
    color: var(--sm-pink);

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.sm-course-points h3 {
    margin: 6px 0 5px;
    font-size: 17px;
}

.sm-course-points p {
    margin: 0;

    color: var(--sm-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* LOCATIONS */

.sm-location {
    background: var(--sm-cream);
}

.sm-location-grid {
    display: grid;

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

    gap: 20px;
}

.sm-location-card {
    padding: 40px;

    border: 1px solid rgba(36, 27, 29, .10);

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.sm-location-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(36, 27, 29, .08);
}

.sm-location-label {
    color: var(--sm-pink);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sm-location-card h3 {
    margin: 9px 0 13px;

    font-family: "DM Serif Display", Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.sm-location-card p {
    margin: 0 0 18px;

    color: var(--sm-muted);

    font-size: 13px;
    line-height: 1.8;
}

.sm-location-card > a {
    color: var(--sm-pink-dark);

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


/* CTA */

.sm-cta {
    padding: 105px 0;

    background: var(--sm-dark);

    text-align: center;
}

.sm-cta-content {
    max-width: 800px;

    margin: 0 auto;
}

.sm-cta .sm-eyebrow {
    color: #e8bbc8;
}

.sm-cta-content h2 {
    color: #ffffff;
}

.sm-cta-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255, 255, 255, .65);

    font-size: 14px;
    line-height: 1.8;
}

.sm-cta .sm-hero-buttons {
    justify-content: center;
}


/* TABLET */

@media (max-width: 1000px) {

    .sm-section {
        padding: 80px 0;
    }

    .sm-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm-stat:nth-child(2) {
        border-right: 0;
    }

    .sm-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(36, 27, 29, .12);
    }

    .sm-why-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sm-why-image {
        max-width: 650px;
    }

    .sm-course-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .sm-container {
        width: min(100% - 30px, 1240px);
    }

    .sm-section {
        padding: 65px 0;
    }

    .sm-hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .sm-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20, 12, 15, .82),
                rgba(20, 12, 15, .50)
            );
    }

    .sm-hero-copy h1 {
        font-size: clamp(48px, 15vw, 70px);
    }

    .sm-hero-copy > p {
        font-size: 14px;
    }

    .sm-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .sm-btn {
        width: 100%;
    }

    .sm-section-heading {
        margin-bottom: 35px;
    }

    .sm-section-heading h2,
    .sm-why-content h2,
    .sm-course-content h2,
    .sm-bridal-content h2,
    .sm-cta-content h2 {
        font-size: 42px;
    }

    .sm-stats {
        grid-template-columns: 1fr;
    }

    .sm-stat,
    .sm-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(36, 27, 29, .12);
    }

    .sm-stat:last-child {
        border-bottom: 0;
    }

    .sm-service-grid {
        grid-template-columns: 1fr;
    }

    .sm-service-card {
        min-height: 340px;
    }

    .sm-image-frame {
        height: 480px;
    }

    .sm-floating-card {
        right: 15px;
        bottom: 20px;
    }

    .sm-bridal {
        min-height: 600px;
        background-position: 60% center;
    }

    .sm-location-grid {
        grid-template-columns: 1fr;
    }

    .sm-location-card {
        padding: 30px;
    }

    .sm-cta {
        padding: 75px 0;
    }
}

/* =========================================================
   STYLE MANTRA - ABOUT PAGE
   Paste this section at the END of style.css
   ========================================================= */

.about-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.about-section {
    padding: 100px 0;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    color: #9a5369;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.about-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.about-heading h2,
.about-story-content h2,
.about-course-content h2,
.about-cta-content h2 {
    margin: 0 0 18px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.about-heading h2 span,
.about-story-content h2 span,
.about-course-content h2 span,
.about-cta-content h2 span {
    color: #9a5369;
}

.about-heading p {
    margin: 0;

    color: #76686b;

    font-size: 15px;
    line-height: 1.9;
}


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

.about-page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(30, 18, 22, .82),
            rgba(30, 18, 22, .48),
            rgba(30, 18, 22, .15)
        );
}

.about-page-hero-content {
    position: relative;
    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.about-page-hero-content .about-eyebrow {
    color: #f2d7df;
}

.about-page-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: .98;
}

.about-page-hero-content h1 span {
    display: block;
    color: #f1c6d2;
}

.about-page-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   STORY
   ========================================================= */

.about-story {
    background: #fffaf7;
}

.about-story-grid {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 90px;
}

.about-story-image {
    position: relative;
}

.about-main-image {
    height: 600px;

    overflow: hidden;
}

.about-main-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-card {
    position: absolute;

    right: -25px;
    bottom: 35px;

    min-width: 235px;

    padding: 20px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(36,27,29,.14);
}

.about-image-card strong {
    display: block;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 25px;

    font-weight: 400;
}

.about-image-card span {
    display: block;

    margin-top: 4px;

    color: #76686b;

    font-size: 10px;
}

.about-story-content > p {
    margin: 0 0 16px;

    color: #76686b;

    font-size: 14px;

    line-height: 1.9;
}


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

.about-btn {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 24px;

    border-radius: 999px;

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

    transition: all .25s ease;
}

.about-btn-dark {
    margin-top: 16px;

    background: #241b1d;

    color: #ffffff;
}

.about-btn-dark:hover {
    background: #9a5369;

    transform: translateY(-2px);
}

.about-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.about-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.about-btn-light {
    background: #ffffff;

    color: #241b1d;
}

.about-btn-light:hover {
    background: #f7e3e8;

    transform: translateY(-2px);
}

.about-btn-outline {
    border: 1px solid rgba(255,255,255,.65);

    color: #ffffff;
}

.about-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


/* =========================================================
   APPROACH
   ========================================================= */

.about-approach {
    background: #f7efec;
}

.about-values {
    display: grid;

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

    gap: 0;

    border-top: 1px solid rgba(36,27,29,.12);
    border-bottom: 1px solid rgba(36,27,29,.12);
}

.about-value {
    min-height: 270px;

    padding: 35px 28px;

    border-right: 1px solid rgba(36,27,29,.12);
}

.about-value:last-child {
    border-right: 0;
}

.about-value-number {
    margin-bottom: 35px;

    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 28px;
}

.about-value h3 {
    margin: 0 0 10px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 29px;

    font-weight: 400;
}

.about-value p {
    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES
   ========================================================= */

.about-services {
    background: #ffffff;
}

.about-service-list {
    border-top: 1px solid rgba(36,27,29,.12);
}

.about-service-item {
    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    gap: 25px;

    padding: 28px 5px;

    border-bottom: 1px solid rgba(36,27,29,.12);

    transition: padding .25s ease;
}

.about-service-item:hover {
    padding-left: 12px;
    padding-right: 12px;
}

.about-service-no {
    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 22px;
}

.about-service-item h3 {
    margin: 0 0 5px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 30px;

    font-weight: 400;
}

.about-service-item p {
    max-width: 600px;

    margin: 0;

    color: #76686b;

    font-size: 13px;

    line-height: 1.7;
}

.about-service-item > a {
    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid rgba(36,27,29,.15);

    border-radius: 50%;

    color: #9a5369;

    font-size: 18px;

    transition: all .25s ease;
}

.about-service-item:hover > a {
    background: #9a5369;

    border-color: #9a5369;

    color: #ffffff;
}


/* =========================================================
   COURSE
   ========================================================= */

.about-course {
    padding: 100px 0;

    background: #241b1d;
}

.about-course-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.about-course-content {
    max-width: 620px;
}

.about-course-content h2 {
    color: #ffffff;
}

.about-course-content > p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.9;
}

.about-course-points {
    border-top: 1px solid rgba(255,255,255,.14);
}

.about-course-points > div {
    display: flex;

    align-items: center;

    gap: 25px;

    min-height: 80px;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.about-course-points strong {
    color: #e5b5c2;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 24px;

    font-weight: 400;
}

.about-course-points span {
    color: rgba(255,255,255,.78);

    font-size: 14px;
}


/* =========================================================
   LOCATIONS
   ========================================================= */

.about-location {
    background: #fffaf7;
}

.about-location-grid {
    display: grid;

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

    gap: 20px;
}

.about-location-card {
    padding: 40px;

    background: #ffffff;

    border: 1px solid rgba(36,27,29,.10);

    transition: all .25s ease;
}

.about-location-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(36,27,29,.08);
}

.about-location-card > span {
    color: #9a5369;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.about-location-card h3 {
    margin: 10px 0 13px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 40px;

    font-weight: 400;
}

.about-location-card p {
    margin: 0 0 18px;

    color: #76686b;

    font-size: 13px;

    line-height: 1.8;
}

.about-location-card > a {
    color: #71384b;

    font-size: 13px;

    font-weight: 600;
}


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

.about-cta {
    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            #f4e2e6,
            #fffaf7
        );

    text-align: center;
}

.about-cta-content {
    max-width: 780px;

    margin: 0 auto;
}

.about-cta-content p {
    max-width: 600px;

    margin: 0 auto;

    color: #76686b;

    font-size: 14px;

    line-height: 1.8;
}

.about-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


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

@media (max-width: 1000px) {

    .about-section {
        padding: 80px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-story-image {
        max-width: 650px;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-value:nth-child(2) {
        border-right: 0;
    }

    .about-value:nth-child(-n+2) {
        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .about-course-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


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

@media (max-width: 700px) {

    .about-container {
        width: min(100% - 30px, 1240px);
    }

    .about-section {
        padding: 65px 0;
    }

    .about-page-hero {
        min-height: 500px;

        background-position: 65% center;
    }

    .about-page-hero-content h1 {
        font-size: 52px;
    }

    .about-page-hero-content p {
        font-size: 14px;
    }

    .about-heading h2,
    .about-story-content h2,
    .about-course-content h2,
    .about-cta-content h2 {
        font-size: 42px;
    }

    .about-main-image {
        height: 470px;
    }

    .about-image-card {
        right: 15px;
        bottom: 20px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-value,
    .about-value:nth-child(2) {
        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

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

    .about-value {
        min-height: auto;
        padding: 30px 20px;
    }

    .about-value-number {
        margin-bottom: 20px;
    }

    .about-service-item {
        grid-template-columns: 45px 1fr 42px;

        gap: 12px;

        padding: 22px 0;
    }

    .about-service-item h3 {
        font-size: 27px;
    }

    .about-service-item p {
        font-size: 12px;
    }

    .about-service-no {
        font-size: 18px;
    }

    .about-location-grid {
        grid-template-columns: 1fr;
    }

    .about-location-card {
        padding: 30px;
    }

    .about-course {
        padding: 70px 0;
    }

    .about-cta {
        padding: 75px 0;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .about-btn {
        width: 100%;
    }
}

/* =========================================================
   STYLE MANTRA - SERVICES PAGE
   Paste at the END of style.css
   ========================================================= */

.services-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.services-section {
    padding: 100px 0;
}

.services-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9a5369;

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

    letter-spacing: 2.5px;
}

.services-centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.services-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.services-heading h2,
.service-detail-content h2,
.services-final-content h2 {
    margin: 0 0 18px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.services-heading h2 span,
.service-detail-content h2 span,
.services-final-content h2 span {
    color: #9a5369;
}

.services-heading p {
    margin: 0;

    color: #76686b;

    font-size: 15px;

    line-height: 1.9;
}


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

.services-page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.services-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28,17,21,.84),
            rgba(28,17,21,.48),
            rgba(28,17,21,.12)
        );
}

.services-hero-content {
    position: relative;
    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.services-hero-content .services-eyebrow {
    color: #f2d7df;
}

.services-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: .98;
}

.services-hero-content h1 span {
    display: block;

    color: #f1c6d2;
}

.services-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   QUICK NAV
   ========================================================= */

.services-intro {
    background: #fffaf7;
}

.services-quick-nav {
    display: grid;

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

    border-top: 1px solid rgba(36,27,29,.12);
    border-bottom: 1px solid rgba(36,27,29,.12);
}

.services-quick-nav a {
    display: flex;

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

    gap: 15px;

    min-height: 90px;

    border-right: 1px solid rgba(36,27,29,.12);

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 22px;

    transition: all .25s ease;
}

.services-quick-nav a:last-child {
    border-right: 0;
}

.services-quick-nav a span {
    color: #9a5369;

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

    font-size: 11px;

    font-weight: 600;
}

.services-quick-nav a:hover {
    background: #f5e6e9;

    color: #71384b;
}


/* =========================================================
   SERVICE DETAIL
   ========================================================= */

.service-detail {
    padding: 110px 0;

    scroll-margin-top: 90px;
}

.service-hair {
    background: #ffffff;
}

.service-skin {
    background: #f7efec;
}

.service-body {
    background: #ffffff;
}

.service-bridal {
    background: #f7efec;
}

.service-detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.service-detail-grid.reverse .service-detail-image {
    order: 2;
}

.service-detail-grid.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;

    height: 610px;

    overflow: hidden;
}

.service-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.025);
}

.service-image-label {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 10px 15px;

    background: #ffffff;

    color: #241b1d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.service-detail-content {
    max-width: 600px;
}

.service-detail-content > p {
    margin: 0;

    color: #76686b;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.service-list {
    margin-top: 30px;

    border-top: 1px solid rgba(36,27,29,.12);
}

.service-list-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(36,27,29,.12);
}

.service-list-item > span {
    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 19px;
}

.service-list-item h3 {
    margin: 0 0 4px;

    color: #241b1d;

    font-size: 15px;

    font-weight: 600;
}

.service-list-item p {
    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.65;
}


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

.services-btn {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.services-btn-dark {
    margin-top: 28px;

    background: #241b1d;

    color: #ffffff;
}

.services-btn-dark:hover {
    background: #9a5369;

    transform: translateY(-2px);
}

.services-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.services-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.services-btn-outline {
    border: 1px solid rgba(255,255,255,.60);

    color: #ffffff;
}

.services-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


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

.services-final-cta {
    padding: 105px 0;

    background: #241b1d;

    text-align: center;
}

.services-final-content {
    max-width: 800px;

    margin: 0 auto;
}

.services-final-content .services-eyebrow {
    color: #e8bbc8;
}

.services-final-content h2 {
    color: #ffffff;
}

.services-final-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.8;
}

.services-final-buttons {
    display: flex;

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

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


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

@media (max-width: 1000px) {

    .services-section,
    .service-detail {
        padding: 80px 0;
    }

    .services-quick-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-quick-nav a:nth-child(2) {
        border-right: 0;
    }

    .services-quick-nav a:nth-child(-n+2) {
        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .service-detail-grid.reverse .service-detail-image,
    .service-detail-grid.reverse .service-detail-content {
        order: initial;
    }

    .service-detail-image {
        max-width: 700px;

        height: 560px;
    }

    .service-detail-content {
        max-width: 700px;
    }
}


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

@media (max-width: 700px) {

    .services-container {
        width: min(100% - 30px, 1240px);
    }

    .services-section,
    .service-detail {
        padding: 65px 0;
    }

    .services-page-hero {
        min-height: 500px;

        background-position: 65% center;
    }

    .services-hero-content h1 {
        font-size: 52px;
    }

    .services-hero-content p {
        font-size: 14px;
    }

    .services-heading h2,
    .service-detail-content h2,
    .services-final-content h2 {
        font-size: 42px;
    }

    .services-quick-nav {
        grid-template-columns: 1fr;
    }

    .services-quick-nav a,
    .services-quick-nav a:nth-child(2) {
        min-height: 70px;

        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .services-quick-nav a:last-child {
        border-bottom: 0;
    }

    .service-detail-image {
        height: 470px;
    }

    .service-list-item {
        grid-template-columns: 38px 1fr;
    }

    .services-final-cta {
        padding: 75px 0;
    }

    .services-final-buttons {
        flex-direction: column;
    }

    .services-final-buttons .services-btn {
        width: 100%;
    }
}

/* =========================================================
   STYLE MANTRA - OUR WORK / GALLERY
   Paste this section at the END of style.css
   ========================================================= */

.work-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.work-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9a5369;

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

    letter-spacing: 2.5px;
}


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

.work-page-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.work-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28,17,21,.84),
            rgba(28,17,21,.48),
            rgba(28,17,21,.12)
        );
}

.work-hero-content {
    position: relative;
    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.work-hero-content .work-eyebrow {
    color: #f2d7df;
}

.work-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: .98;
}

.work-hero-content h1 span {
    display: block;

    color: #f1c6d2;
}

.work-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   GALLERY SECTION
   ========================================================= */

.work-gallery-section {
    padding: 100px 0;

    background: #fffaf7;
}

.work-heading {
    max-width: 720px;

    margin-bottom: 50px;
}

.work-heading h2 {
    margin: 0 0 18px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.work-heading h2 span {
    color: #9a5369;
}

.work-heading p {
    margin: 0;

    color: #76686b;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   MASONRY STYLE GALLERY
   ========================================================= */

.work-gallery {
    columns: 4 250px;

    column-gap: 18px;
}

.work-item {
    position: relative;

    display: block;

    width: 100%;

    margin: 0 0 18px;

    overflow: hidden;

    break-inside: avoid;

    background: #eee;

    cursor: zoom-in;
}

.work-item img {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .5s ease,
        filter .5s ease;
}

.work-item-overlay {
    position: absolute;

    inset: 0;

    display: flex;

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

    background: rgba(36,27,29,.48);

    opacity: 0;

    transition: opacity .3s ease;
}

.work-item-overlay span {
    display: flex;

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

    width: 70px;
    height: 70px;

    border: 1px solid rgba(255,255,255,.75);

    border-radius: 50%;

    color: #ffffff;

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

    letter-spacing: 1px;

    transform: translateY(10px);

    transition: transform .3s ease;
}

.work-item:hover img {
    transform: scale(1.04);
}

.work-item:hover .work-item-overlay {
    opacity: 1;
}

.work-item:hover .work-item-overlay span {
    transform: translateY(0);
}


/* =========================================================
   GALLERY COUNT
   ========================================================= */

.work-count {
    margin-top: 30px;

    text-align: center;

    color: #76686b;

    font-size: 12px;

    letter-spacing: .5px;
}

.work-count span {
    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 22px;
}


/* =========================================================
   EMPTY GALLERY
   ========================================================= */

.work-empty {
    max-width: 600px;

    margin: 20px auto 0;

    padding: 70px 30px;

    border: 1px dashed rgba(36,27,29,.20);

    text-align: center;
}

.work-empty-icon {
    width: 60px;
    height: 60px;

    display: flex;

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

    margin: 0 auto 20px;

    border: 1px solid #9a5369;

    border-radius: 50%;

    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 30px;
}

.work-empty h3 {
    margin: 0 0 10px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 30px;

    font-weight: 400;
}

.work-empty p {
    margin: 0;

    color: #76686b;

    font-size: 13px;

    line-height: 1.8;
}


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

.work-cta {
    padding: 105px 0;

    background: #241b1d;

    text-align: center;
}

.work-cta-content {
    max-width: 800px;

    margin: 0 auto;
}

.work-cta-content .work-eyebrow {
    color: #e8bbc8;
}

.work-cta-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.work-cta-content h2 span {
    color: #e7b8c5;
}

.work-cta-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.8;
}

.work-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.work-btn {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.work-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.work-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.work-btn-outline {
    border: 1px solid rgba(255,255,255,.60);

    color: #ffffff;
}

.work-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.work-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

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

    padding: 30px;

    background: rgba(15,10,12,.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.work-lightbox.is-open {
    opacity: 1;

    visibility: visible;
}

.work-lightbox-content {
    position: relative;

    max-width: 90vw;
    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.work-lightbox-content img {
    display: block;

    max-width: 90vw;
    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 20px 70px rgba(0,0,0,.35);
}

.work-lightbox-counter {
    margin-top: 12px;

    color: rgba(255,255,255,.70);

    font-size: 12px;
}

.work-lightbox-close,
.work-lightbox-prev,
.work-lightbox-next {
    position: absolute;

    z-index: 2;

    display: flex;

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

    border: 1px solid rgba(255,255,255,.30);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.work-lightbox-close:hover,
.work-lightbox-prev:hover,
.work-lightbox-next:hover {
    background: #9a5369;

    border-color: #9a5369;
}

.work-lightbox-close {
    top: 25px;
    right: 30px;

    width: 46px;
    height: 46px;

    font-size: 28px;

    line-height: 1;
}

.work-lightbox-prev,
.work-lightbox-next {
    top: 50%;

    width: 52px;
    height: 52px;

    font-family: Georgia, serif;

    font-size: 38px;

    transform: translateY(-50%);
}

.work-lightbox-prev {
    left: 25px;
}

.work-lightbox-next {
    right: 25px;
}

body.work-lightbox-open {
    overflow: hidden;
}


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

@media (max-width: 1000px) {

    .work-gallery-section {
        padding: 80px 0;
    }

    .work-gallery {
        columns: 3 220px;
    }

    .work-lightbox-prev {
        left: 12px;
    }

    .work-lightbox-next {
        right: 12px;
    }
}


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

@media (max-width: 700px) {

    .work-container {
        width: min(100% - 30px, 1240px);
    }

    .work-page-hero {
        min-height: 460px;

        background-position: 60% center;
    }

    .work-hero-content h1 {
        font-size: 52px;
    }

    .work-gallery-section {
        padding: 65px 0;
    }

    .work-heading h2 {
        font-size: 42px;
    }

    .work-gallery {
        columns: 2 140px;

        column-gap: 10px;
    }

    .work-item {
        margin-bottom: 10px;
    }

    .work-lightbox {
        padding: 15px;
    }

    .work-lightbox-content img {
        max-width: 94vw;

        max-height: 78vh;
    }

    .work-lightbox-close {
        top: 15px;
        right: 15px;
    }

    .work-lightbox-prev,
    .work-lightbox-next {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .work-lightbox-prev {
        left: 8px;
    }

    .work-lightbox-next {
        right: 8px;
    }

    .work-cta {
        padding: 75px 0;
    }

    .work-cta-buttons {
        flex-direction: column;
    }

    .work-btn {
        width: 100%;
    }
}


/* =========================================================
   STYLE MANTRA - COURSES PAGE
   Paste at the END of style.css
   ========================================================= */

.courses-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.courses-section {
    padding: 100px 0;
}

.courses-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9a5369;

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

    letter-spacing: 2.5px;
}

.courses-centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.courses-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.courses-heading h2,
.courses-cta-content h2 {
    margin: 0 0 18px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.courses-heading h2 span,
.courses-cta-content h2 span {
    color: #9a5369;
}

.courses-heading p {
    margin: 0;

    color: #76686b;

    font-size: 15px;

    line-height: 1.9;
}


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

.courses-page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.courses-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28,17,21,.86),
            rgba(28,17,21,.50),
            rgba(28,17,21,.12)
        );
}

.courses-hero-content {
    position: relative;
    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.courses-hero-content .courses-eyebrow {
    color: #f2d7df;
}

.courses-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: .98;
}

.courses-hero-content h1 span {
    display: block;

    color: #f1c6d2;
}

.courses-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;
}


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

.courses-intro {
    background: #fffaf7;
}

.courses-highlights {
    display: grid;

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

    border-top: 1px solid rgba(36,27,29,.12);
    border-bottom: 1px solid rgba(36,27,29,.12);
}

.course-highlight {
    min-height: 210px;

    padding: 35px 30px;

    border-right: 1px solid rgba(36,27,29,.12);
}

.course-highlight:last-child {
    border-right: 0;
}

.course-highlight > span {
    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 28px;
}

.course-highlight h3 {
    margin: 20px 0 8px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 25px;

    font-weight: 400;
}

.course-highlight p {
    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   COURSE LIST
   ========================================================= */

.courses-list-section {
    padding: 100px 0;

    background: #ffffff;
}

.courses-grid {
    display: grid;

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

    gap: 25px;

    align-items: start;
}

.course-card {
    overflow: hidden;

    background: #fffaf7;

    border: 1px solid rgba(36,27,29,.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.course-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(36,27,29,.12);
}


/* Poster */

.course-card-image {
    position: relative;

    overflow: hidden;

    background: #f2e8e3;
}

.course-card-image img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform .5s ease;
}

.course-card:hover .course-card-image img {
    transform: scale(1.025);
}

.course-view-btn {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%) translateY(10px);

    min-width: 105px;
    min-height: 40px;

    padding: 0 16px;

    border: 1px solid rgba(255,255,255,.75);

    border-radius: 999px;

    background: rgba(36,27,29,.72);

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    opacity: 0;

    transition:
        opacity .3s ease,
        transform .3s ease,
        background .2s ease;
}

.course-card:hover .course-view-btn {
    opacity: 1;

    transform: translateX(-50%) translateY(0);
}

.course-view-btn:hover {
    background: #9a5369;
}


/* Course Content */

.course-card-content {
    position: relative;

    padding: 28px 25px 30px;
}

.course-card-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 23px;
}

.course-card-content h3 {
    margin: 0 50px 10px 0;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 29px;

    font-weight: 400;
}

.course-card-content p {
    min-height: 70px;

    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   BUTTON
   ========================================================= */

.courses-btn {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 23px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.courses-btn-dark {
    margin-top: 22px;

    background: #241b1d;

    color: #ffffff;
}

.courses-btn-dark:hover {
    background: #9a5369;

    transform: translateY(-2px);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.courses-benefits {
    background: #f7efec;
}

.courses-benefit-grid {
    display: grid;

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

    border-top: 1px solid rgba(36,27,29,.12);
    border-bottom: 1px solid rgba(36,27,29,.12);
}

.courses-benefit {
    min-height: 250px;

    padding: 30px 25px;

    border-right: 1px solid rgba(36,27,29,.12);
}

.courses-benefit:last-child {
    border-right: 0;
}

.courses-benefit-no {
    color: #9a5369;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 27px;
}

.courses-benefit h3 {
    margin: 22px 0 10px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 24px;

    font-weight: 400;
}

.courses-benefit p {
    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.8;
}


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

.courses-cta {
    padding: 105px 0;

    background: #241b1d;

    text-align: center;
}

.courses-cta-content {
    max-width: 800px;

    margin: 0 auto;
}

.courses-cta-content .courses-eyebrow {
    color: #e8bbc8;
}

.courses-cta-content h2 {
    color: #ffffff;
}

.courses-cta-content h2 span {
    color: #e7b8c5;
}

.courses-cta-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.8;
}

.courses-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.courses-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.courses-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.courses-btn-outline {
    border: 1px solid rgba(255,255,255,.60);

    color: #ffffff;
}

.courses-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.course-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

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

    padding: 25px;

    background: rgba(15,10,12,.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.course-lightbox.is-open {
    opacity: 1;

    visibility: visible;
}

.course-lightbox-content {
    position: relative;

    max-width: 90vw;
    max-height: 94vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.course-lightbox-content img {
    display: block;

    max-width: 90vw;
    max-height: 86vh;

    width: auto;
    height: auto;

    object-fit: contain;
}

.course-lightbox-content h3 {
    margin: 12px 0 0;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 20px;

    font-weight: 400;
}

.course-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    z-index: 2;

    width: 46px;
    height: 46px;

    display: flex;

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

    border: 1px solid rgba(255,255,255,.30);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    font-size: 28px;

    cursor: pointer;
}

.course-lightbox-close:hover {
    background: #9a5369;

    border-color: #9a5369;
}

body.course-lightbox-open {
    overflow: hidden;
}


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

@media (max-width: 1000px) {

    .courses-section,
    .courses-list-section {
        padding: 80px 0;
    }

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

    .courses-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-benefit:nth-child(2) {
        border-right: 0;
    }

    .courses-benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .courses-highlights {
        grid-template-columns: 1fr;
    }

    .course-highlight {
        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .course-highlight:last-child {
        border-bottom: 0;
    }
}


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

@media (max-width: 700px) {

    .courses-container {
        width: min(100% - 30px, 1240px);
    }

    .courses-section,
    .courses-list-section {
        padding: 65px 0;
    }

    .courses-page-hero {
        min-height: 480px;

        background-position: 60% center;
    }

    .courses-hero-content h1 {
        font-size: 52px;
    }

    .courses-hero-content p {
        font-size: 14px;
    }

    .courses-heading h2,
    .courses-cta-content h2 {
        font-size: 42px;
    }

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

        gap: 25px;
    }

    .course-card-content p {
        min-height: auto;
    }

    .courses-benefit-grid {
        grid-template-columns: 1fr;
    }

    .courses-benefit,
    .courses-benefit:nth-child(2) {
        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .courses-benefit:last-child {
        border-bottom: 0;
    }

    .courses-cta {
        padding: 75px 0;
    }

    .courses-cta-buttons {
        flex-direction: column;
    }

    .courses-cta-buttons .courses-btn {
        width: 100%;
    }

    .course-lightbox {
        padding: 15px;
    }

    .course-lightbox-content img {
        max-width: 94vw;
        max-height: 82vh;
    }

    .course-lightbox-close {
        top: 15px;
        right: 15px;
    }
}

/* =========================================================
   STYLE MANTRA - CONTACT PAGE
   Paste at the END of style.css
   ========================================================= */

.contact-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.contact-section {
    padding: 100px 0;
}

.contact-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9a5369;

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

    letter-spacing: 2.5px;
}


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

.contact-page-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.contact-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28,17,21,.86),
            rgba(28,17,21,.50),
            rgba(28,17,21,.12)
        );
}

.contact-hero-content {
    position: relative;
    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.contact-hero-content .contact-eyebrow {
    color: #f2d7df;
}

.contact-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 400;

    line-height: .98;
}

.contact-hero-content h1 span {
    display: block;

    color: #f1c6d2;
}

.contact-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   MAIN CONTACT
   ========================================================= */

.contact-main {
    background: #fffaf7;
}

.contact-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.contact-heading h2,
.contact-social-heading h2,
.contact-final-content h2 {
    margin: 0 0 18px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.contact-heading h2 span,
.contact-social-heading h2 span {
    color: #9a5369;
}

.contact-heading p,
.contact-social-heading p {
    max-width: 650px;

    margin: 0;

    color: #76686b;

    font-size: 14px;

    line-height: 1.9;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form-box {
    padding: 45px;

    background: #ffffff;

    border: 1px solid rgba(36,27,29,.10);

    box-shadow:
        0 15px 40px rgba(36,27,29,.05);
}

.contact-box-heading {
    margin-bottom: 30px;
}

.contact-box-heading > span {
    color: #9a5369;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-box-heading h3 {
    margin: 8px 0 0;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 34px;

    font-weight: 400;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contact-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.contact-field label {
    color: #241b1d;

    font-size: 11px;

    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid rgba(36,27,29,.15);

    border-radius: 0;

    outline: none;

    background: #fffaf7;

    color: #241b1d;

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

    font-size: 12px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.contact-field input,
.contact-field select {
    height: 50px;
}

.contact-field textarea {
    resize: vertical;

    min-height: 140px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #9a5369;

    background: #ffffff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaa0a1;
}

.contact-submit-btn {
    min-height: 54px;

    display: flex;

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

    gap: 15px;

    margin-top: 5px;

    border: 0;

    border-radius: 999px;

    background: #241b1d;

    color: #ffffff;

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

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}

.contact-submit-btn span {
    font-size: 18px;
}

.contact-submit-btn:hover {
    background: #9a5369;

    transform: translateY(-2px);
}

.contact-form-note {
    margin: 0;

    text-align: center;

    color: #998c8e;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   INFO CARDS
   ========================================================= */

.contact-info {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.contact-info-card {
    padding: 30px;

    background: #f7efec;

    border: 1px solid rgba(36,27,29,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

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

    box-shadow:
        0 12px 30px rgba(36,27,29,.07);
}

.contact-info-label {
    display: block;

    margin-bottom: 8px;

    color: #9a5369;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-info-card h3 {
    margin: 0 0 10px;

    color: #241b1d;

    font-family: "DM Serif Display", Georgia, serif;

    font-size: 32px;

    font-weight: 400;
}

.contact-info-card p {
    margin: 0 0 15px;

    color: #76686b;

    font-size: 12px;

    line-height: 1.8;
}

.contact-info-link {
    color: #71384b;

    font-size: 12px;

    font-weight: 600;
}

.contact-info-link:hover {
    color: #9a5369;
}


/* =========================================================
   QUICK CONTACT
   ========================================================= */

.contact-quick-section {
    padding: 0 0 100px;

    background: #fffaf7;
}

.contact-quick-grid {
    display: grid;

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

    border-top: 1px solid rgba(36,27,29,.12);

    border-bottom: 1px solid rgba(36,27,29,.12);
}

.contact-quick-card {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 110px;

    padding: 20px 25px;

    border-right: 1px solid rgba(36,27,29,.12);

    transition: background .25s ease;
}

.contact-quick-card:last-child {
    border-right: 0;
}

.contact-quick-card:hover {
    background: #f7efec;
}

.contact-quick-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #241b1d;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;
}

.contact-quick-card > div:nth-child(2) {
    flex: 1;
}

.contact-quick-card span {
    display: block;

    margin-bottom: 4px;

    color: #9a5369;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.contact-quick-card strong {
    display: block;

    color: #241b1d;

    font-size: 12px;

    font-weight: 600;
}

.contact-quick-card b {
    color: #9a5369;

    font-size: 18px;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.contact-social {
    background: #ffffff;
}

.contact-social-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.contact-social-links {
    border-top: 1px solid rgba(36,27,29,.12);
}

.contact-social-links a {
    display: flex;

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

    min-height: 75px;

    padding: 0 5px;

    border-bottom: 1px solid rgba(36,27,29,.12);

    color: #241b1d;

    transition:
        padding .25s ease,
        color .25s ease;
}

.contact-social-links a:hover {
    padding-left: 15px;

    padding-right: 15px;

    color: #9a5369;
}

.contact-social-links a span {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: .8px;
}

.contact-social-links a b {
    color: #9a5369;

    font-size: 20px;

    font-weight: 400;
}


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

.contact-final-cta {
    padding: 105px 0;

    background: #241b1d;

    text-align: center;
}

.contact-final-content {
    max-width: 800px;

    margin: 0 auto;
}

.contact-final-content .contact-eyebrow {
    color: #e8bbc8;
}

.contact-final-content h2 {
    color: #ffffff;
}

.contact-final-content h2 span {
    color: #e7b8c5;
}

.contact-final-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.8;
}

.contact-final-buttons {
    display: flex;

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

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.contact-btn {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 26px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.contact-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.contact-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.contact-btn-outline {
    border: 1px solid rgba(255,255,255,.60);

    color: #ffffff;
}

.contact-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


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

@media (max-width: 1000px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        max-width: none;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-card {
        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .contact-quick-card:last-child {
        border-bottom: 0;
    }
}


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

@media (max-width: 700px) {

    .contact-container {
        width: min(100% - 30px, 1240px);
    }

    .contact-section {
        padding: 65px 0;
    }

    .contact-page-hero {
        min-height: 470px;

        background-position: 60% center;
    }

    .contact-hero-content h1 {
        font-size: 52px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .contact-heading h2,
    .contact-social-heading h2,
    .contact-final-content h2 {
        font-size: 42px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-quick-section {
        padding-bottom: 65px;
    }

    .contact-final-cta {
        padding: 75px 0;
    }

    .contact-final-buttons {
        flex-direction: column;
    }

    .contact-final-buttons .contact-btn {
        width: 100%;
    }
}
/* =========================================================
   STYLE MANTRA - RESULTS PAGE
   Paste at the END of style.css
   ========================================================= */

.results-container {
    width: min(100% - 40px, 1100px);
    margin: 0 auto;
}

.results-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9a5369;

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

    letter-spacing: 2.5px;
}


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

.results-page-hero {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    background-image:
        url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.results-page-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(28,17,21,.88),
            rgba(28,17,21,.52),
            rgba(28,17,21,.15)
        );
}

.results-hero-content {
    position: relative;

    z-index: 1;

    max-width: 680px;

    color: #ffffff;
}

.results-hero-content .results-eyebrow {
    color: #f2d7df;
}

.results-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: clamp(55px, 7vw, 82px);

    font-weight: 400;

    line-height: .98;
}

.results-hero-content h1 span {
    display: block;

    color: #f1c6d2;
}

.results-hero-content p {
    max-width: 580px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   SEARCH SECTION
   ========================================================= */

.results-search-section {
    padding: 90px 0;

    background: #fffaf7;
}

.results-search-box {
    max-width: 850px;

    margin: 0 auto;

    padding: 50px;

    background: #ffffff;

    border: 1px solid rgba(36,27,29,.10);

    box-shadow:
        0 20px 50px rgba(36,27,29,.06);
}

.results-search-heading {
    text-align: center;

    margin-bottom: 35px;
}

.results-search-heading h2 {
    margin: 0 0 15px;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: clamp(38px, 5vw, 52px);

    font-weight: 400;

    line-height: 1.1;
}

.results-search-heading h2 span {
    color: #9a5369;
}

.results-search-heading p {
    margin: 0;

    color: #76686b;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SEARCH FORM
   ========================================================= */

.results-search-form {
    display: grid;

    grid-template-columns: 1fr auto;

    align-items: end;

    gap: 15px;
}

.results-input-wrap {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.results-input-wrap label {
    color: #241b1d;

    font-size: 11px;

    font-weight: 600;
}

.results-input-wrap input {
    width: 100%;

    height: 54px;

    box-sizing: border-box;

    padding: 0 18px;

    border: 1px solid rgba(36,27,29,.15);

    outline: none;

    background: #fffaf7;

    color: #241b1d;

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

    font-size: 13px;

    text-transform: uppercase;

    transition: border-color .2s ease;
}

.results-input-wrap input:focus {
    border-color: #9a5369;

    background: #ffffff;
}

.results-input-wrap input::placeholder {
    color: #aaa0a1;

    text-transform: none;
}

.results-search-btn {
    height: 54px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border: 0;

    border-radius: 999px;

    background: #241b1d;

    color: #ffffff;

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

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition: all .25s ease;
}

.results-search-btn span {
    font-size: 18px;
}

.results-search-btn:hover {
    background: #9a5369;

    transform: translateY(-2px);
}


/* =========================================================
   RESULT SECTION
   ========================================================= */

.results-result-section {
    padding: 0 0 100px;

    background: #fffaf7;
}


/* =========================================================
   SUCCESS RESULT
   ========================================================= */

.result-success {
    padding: 45px;

    background: #ffffff;

    border: 1px solid rgba(36,27,29,.10);

    box-shadow:
        0 15px 45px rgba(36,27,29,.06);
}

.result-success-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(36,27,29,.10);
}

.result-success-top h2 {
    margin: 0;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1.05;
}

.result-success-top h2 span {
    color: #9a5369;
}

.result-verified {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #58704f;

    font-size: 11px;

    font-weight: 600;
}

.result-check {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #58704f;

    color: #ffffff;

    font-size: 14px;
}


/* =========================================================
   DETAILS
   ========================================================= */

.result-details {
    display: grid;

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

    gap: 0;

    margin-top: 10px;
}

.result-detail-item {
    min-height: 105px;

    padding: 25px 20px;

    border-bottom: 1px solid rgba(36,27,29,.10);
}

.result-detail-item:nth-child(odd) {
    border-right: 1px solid rgba(36,27,29,.10);
}

.result-detail-item span {
    display: block;

    margin-bottom: 8px;

    color: #9a5369;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.result-detail-item strong {
    display: block;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1.25;
}


/* =========================================================
   DOCUMENT
   ========================================================= */

.result-document {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding: 20px;

    background: #f7efec;
}

.result-document-heading {
    display: flex;

    align-items: center;

    gap: 15px;
}

.result-pdf-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #241b1d;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}

.result-document-heading span {
    display: block;

    margin-bottom: 3px;

    color: #9a5369;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.result-document-heading h3 {
    margin: 0;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 22px;

    font-weight: 400;
}

.result-pdf-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 45px;

    padding: 0 20px;

    border-radius: 999px;

    background: #9a5369;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;

    transition: all .25s ease;
}

.result-pdf-btn:hover {
    background: #71384b;

    transform: translateY(-2px);
}


/* =========================================================
   PDF VIEWER
   ========================================================= */

.result-pdf-viewer {
    margin-top: 25px;

    border: 1px solid rgba(36,27,29,.12);

    background: #241b1d;
}

.result-pdf-viewer-header {
    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 0 18px;
}

.result-pdf-viewer-header span {
    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.result-pdf-viewer-header a {
    color: #e7b8c5;

    font-size: 10px;

    font-weight: 600;
}

.result-pdf-viewer iframe {
    display: block;

    width: 100%;

    height: 750px;

    border: 0;

    background: #ffffff;
}


/* =========================================================
   NOT FOUND
   ========================================================= */

.result-not-found {
    max-width: 650px;

    margin: 0 auto;

    padding: 65px 30px;

    background: #ffffff;

    border: 1px solid rgba(36,27,29,.10);

    text-align: center;

    box-shadow:
        0 15px 40px rgba(36,27,29,.05);
}

.result-not-found-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border: 1px solid #9a5369;

    border-radius: 50%;

    color: #9a5369;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 28px;
}

.result-not-found h2 {
    margin: 0 0 15px;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 48px;

    font-weight: 400;
}

.result-not-found h2 span {
    color: #9a5369;
}

.result-not-found p {
    margin: 5px 0;

    color: #76686b;

    font-size: 13px;

    line-height: 1.8;
}

.result-not-found p strong {
    color: #241b1d;
}

.result-try-again {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 25px;

    min-height: 48px;

    padding: 0 23px;

    border-radius: 999px;

    background: #241b1d;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    transition: all .25s ease;
}

.result-try-again:hover {
    background: #9a5369;

    transform: translateY(-2px);
}


/* =========================================================
   INFO
   ========================================================= */

.results-info-section {
    padding: 100px 0;

    background: #f7efec;
}

.results-info-grid {
    display: grid;

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

    border-top: 1px solid rgba(36,27,29,.12);

    border-bottom: 1px solid rgba(36,27,29,.12);
}

.results-info-card {
    min-height: 230px;

    padding: 30px;

    border-right: 1px solid rgba(36,27,29,.12);
}

.results-info-card:last-child {
    border-right: 0;
}

.results-info-card > span {
    color: #9a5369;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 28px;
}

.results-info-card h3 {
    margin: 25px 0 10px;

    color: #241b1d;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 400;
}

.results-info-card p {
    margin: 0;

    color: #76686b;

    font-size: 12px;

    line-height: 1.8;
}


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

.results-cta {
    padding: 105px 0;

    background: #241b1d;

    text-align: center;
}

.results-cta-content {
    max-width: 800px;

    margin: 0 auto;
}

.results-cta-content .results-eyebrow {
    color: #e8bbc8;
}

.results-cta-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

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

    font-weight: 400;

    line-height: 1.08;
}

.results-cta-content h2 span {
    color: #e7b8c5;
}

.results-cta-content p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.8;
}

.results-cta-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.results-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 26px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.results-btn-primary {
    background: #9a5369;

    color: #ffffff;
}

.results-btn-primary:hover {
    background: #71384b;

    transform: translateY(-2px);
}

.results-btn-outline {
    border: 1px solid rgba(255,255,255,.60);

    color: #ffffff;
}

.results-btn-outline:hover {
    background: #ffffff;

    color: #241b1d;
}


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

@media (max-width: 900px) {

    .results-search-section,
    .results-info-section {
        padding: 80px 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-info-grid {
        grid-template-columns: 1fr;
    }

    .results-info-card {
        border-right: 0;

        border-bottom: 1px solid rgba(36,27,29,.12);
    }

    .results-info-card:last-child {
        border-bottom: 0;
    }

    .result-pdf-viewer iframe {
        height: 650px;
    }
}


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

@media (max-width: 700px) {

    .results-container {
        width: min(100% - 30px, 1100px);
    }

    .results-page-hero {
        min-height: 450px;

        background-position: 60% center;
    }

    .results-hero-content h1 {
        font-size: 52px;
    }

    .results-hero-content p {
        font-size: 14px;
    }

    .results-search-section {
        padding: 60px 0;
    }

    .results-search-box {
        padding: 30px 20px;
    }

    .results-search-heading h2 {
        font-size: 40px;
    }

    .results-search-form {
        grid-template-columns: 1fr;
    }

    .results-search-btn {
        width: 100%;
    }

    .results-result-section {
        padding-bottom: 65px;
    }

    .result-success {
        padding: 25px 20px;
    }

    .result-success-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .result-success-top h2 {
        font-size: 40px;
    }

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

    .result-detail-item {
        border-right: 0 !important;
    }

    .result-document {
        flex-direction: column;

        align-items: stretch;
    }

    .result-pdf-btn {
        width: 100%;
    }

    .result-pdf-viewer iframe {
        height: 550px;
    }

    .result-pdf-viewer-header {
        min-height: 65px;

        padding: 10px 15px;
    }

    .result-not-found {
        padding: 50px 20px;
    }

    .result-not-found h2 {
        font-size: 40px;
    }

    .results-info-section {
        padding: 65px 0;
    }

    .results-cta {
        padding: 75px 0;
    }

    .results-cta-buttons {
        flex-direction: column;
    }

    .results-cta-buttons .results-btn {
        width: 100%;
    }
}


/* =========================================================
   DETAILED COURSE PROGRAMMES
   ========================================================= */

.detailed-course-section {
    padding: 100px 0;
    background: #fffaf7;
}


/* =========================================================
   COURSE LIST
   ========================================================= */

.detailed-course-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 55px;
}


/* =========================================================
   COURSE CARD
   ========================================================= */

.detailed-course-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .75fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--sm-border);
    box-shadow: var(--sm-shadow);
}


/* =========================================================
   POSTER
   ========================================================= */

.detailed-course-poster {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #f5ebe7;
}


.detailed-course-poster img {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(36, 27, 29, .14);
}


/* =========================================================
   CONTENT
   ========================================================= */

.detailed-course-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 50px;
}


.detailed-course-number {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sm-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


.detailed-course-content h3 {
    max-width: 520px;
    margin: 0 0 18px;
    color: var(--sm-text);
    font-family:
        "DM Serif Display",
        Georgia,
        serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.05;
}


.detailed-course-content > p {
    max-width: 500px;
    margin: 0 0 28px;
    color: var(--sm-muted);
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   DURATION
   ========================================================= */

.detailed-course-duration {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin-bottom: 25px;
    border-top: 1px solid var(--sm-border);
    border-bottom: 1px solid var(--sm-border);
}


.detailed-duration-box {
    padding: 18px 15px;
}


.detailed-duration-box + .detailed-duration-box {
    border-left: 1px solid var(--sm-border);
}


.detailed-duration-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--sm-text);
    font-size: 20px;
    font-weight: 600;
}


.detailed-duration-box span {
    color: var(--sm-muted);
    font-size: 10px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.detailed-course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    max-width: 500px;
    margin-bottom: 30px;
}


.detailed-course-features div {
    color: var(--sm-muted);
    font-size: 10px;
    line-height: 1.5;
}


.detailed-course-features span {
    margin-right: 5px;
    color: var(--sm-accent);
    font-weight: 700;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.detailed-course-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.detailed-view-btn,
.detailed-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}


.detailed-view-btn {
    border: 1px solid var(--sm-border);
    background: #ffffff;
    color: var(--sm-text);
}


.detailed-view-btn:hover {
    border-color: var(--sm-accent);
    color: var(--sm-accent);
}


.detailed-enquire-btn {
    background: var(--sm-accent);
    color: #ffffff;
}


.detailed-enquire-btn:hover {
    background: var(--sm-accent-dark);
}


.detailed-view-btn span,
.detailed-enquire-btn span {
    font-size: 16px;
}


/* =========================================================
   ALTERNATING LAYOUT
   ========================================================= */

.detailed-course-card:nth-child(even) {
    grid-template-columns: minmax(400px, .75fr) minmax(0, 1fr);
}


.detailed-course-card:nth-child(even)
.detailed-course-poster {
    order: 2;
}


.detailed-course-card:nth-child(even)
.detailed-course-content {
    order: 1;
}


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

@media (max-width: 1000px) {

    .detailed-course-card,
    .detailed-course-card:nth-child(even) {
        grid-template-columns: 1fr;
    }


    .detailed-course-card:nth-child(even)
    .detailed-course-poster,
    .detailed-course-card:nth-child(even)
    .detailed-course-content {
        order: initial;
    }


    .detailed-course-poster {
        padding: 20px;
    }


    .detailed-course-content {
        padding: 40px 35px;
    }

}


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

@media (max-width: 600px) {

    .detailed-course-section {
        padding: 70px 0;
    }


    .detailed-course-list {
        gap: 30px;
        margin-top: 40px;
    }


    .detailed-course-poster {
        padding: 10px;
    }


    .detailed-course-content {
        padding: 30px 22px;
    }


    .detailed-course-content h3 {
        font-size: 34px;
    }


    .detailed-course-content > p {
        font-size: 12px;
        line-height: 1.8;
    }


    .detailed-course-duration {
        grid-template-columns: 1fr;
    }


    .detailed-duration-box + .detailed-duration-box {
        border-top: 1px solid var(--sm-border);
        border-left: 0;
    }


    .detailed-course-features {
        grid-template-columns: 1fr;
    }


    .detailed-course-actions {
        flex-direction: column;
    }


    .detailed-view-btn,
    .detailed-enquire-btn {
        width: 100%;
    }

}

