
:root {
    --cslt-ink: #2b2528;
    --cslt-muted: #766d70;
    --cslt-red: #cf7761;
    --cslt-green: #e2a18e;
    --cslt-green-dark: #86453e;
    --cslt-cream: #fff7f4;
    --cslt-line: rgba(75,45,42,.11);
    --cslt-shadow: 0 22px 60px rgba(95,54,48,.16);
}

body.csl-theatre-page .sidebar,
body.csl-theatre-page #secondary,
body.csl-theatre-page .widget-area,
body.csl-theatre-page .entry-title,
body.csl-theatre-page .entry-meta,
body.csl-theatre-page .post-edit-link {
    display: none !important;
}

body.csl-theatre-page .content-left-wrap,
body.csl-theatre-page .content-area,
body.csl-theatre-page #primary,
body.csl-theatre-page .site-content,
body.csl-theatre-page .container,
body.csl-theatre-page article,
body.csl-theatre-page .entry-content {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.csl-theatre-page .site-content {
    padding-top: 0 !important;
}

.csl-theatre,
.csl-theatre * {
    box-sizing: border-box;
}

.csl-theatre {
    overflow: hidden;
    color: var(--cslt-ink);
    background: #fff;
    font-family: inherit;
}

.csl-theatre a { text-decoration: none; }

.cslt-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.cslt-hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    padding: 58px 0 88px;
    background:
        radial-gradient(circle at 10% 18%, rgba(207,119,97,.12), transparent 25%),
        linear-gradient(135deg,#fff 0%,#fffaf7 54%,#fff0eb 100%);
}

.cslt-hero::before {
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(134,69,62,.09) 1px,transparent 1px);
    background-size:28px 28px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 80%);
    pointer-events:none;
}

.cslt-hero__grid {
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:70px;
    align-items:center;
}

.cslt-kicker {
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:var(--cslt-red);
    font-size:13px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.cslt-kicker::before {
    content:"";
    width:28px;height:2px;border-radius:99px;background:currentColor;
}

.cslt-hero h1,
.cslt-section-heading h2,
.cslt-details h2,
.cslt-info h2,
.cslt-contact h2 {
    margin:0;
    font-weight:800;
    letter-spacing:-.04em;
    line-height:1.04;
}

.cslt-hero h1 { font-size:clamp(48px,6vw,82px); }
.cslt-hero h1 span { color:var(--cslt-green-dark); }

.cslt-lead {
    max-width:680px;
    margin:26px 0 0;
    color:var(--cslt-muted);
    font-size:clamp(17px,2vw,20px);
    line-height:1.7;
}

.cslt-actions { display:flex;flex-wrap:wrap;gap:14px;margin-top:34px; }

.cslt-button {
    min-height:54px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:13px;
    padding:14px 22px;
    border:1px solid transparent;
    border-radius:999px;
    font-size:15px;
    font-weight:800;
    transition:.25s ease;
}
.cslt-button:hover { transform:translateY(-3px); }
.cslt-button--primary {
    color:#fff!important;
    background:linear-gradient(135deg,var(--cslt-red),#d51f35);
    box-shadow:0 14px 30px rgba(207,119,97,.28);
}
.cslt-button--ghost {
    color:var(--cslt-ink)!important;
    border-color:rgba(75,45,42,.16);
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(8px);
}

.cslt-practical {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:42px;
}
.cslt-practical>div {
    display:flex;
    gap:12px;
    align-items:center;
    min-width:220px;
    padding:14px 17px;
    border:1px solid rgba(75,45,42,.10);
    border-radius:18px;
    background:rgba(255,255,255,.72);
}
.cslt-practical__icon {
    width:38px;height:38px;display:grid;place-items:center;border-radius:12px;
    color:#fff;background:var(--cslt-green-dark);font-size:18px;
}
.cslt-practical p { display:grid;gap:2px;margin:0; }
.cslt-practical small { color:var(--cslt-muted);font-size:11px; }
.cslt-practical strong { font-size:13px; }

.cslt-visual-card {
    position:relative;
    min-height:500px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.85);
    border-radius:46px;
    background:linear-gradient(145deg,rgba(255,255,255,.97),rgba(255,240,235,.78));
    box-shadow:var(--cslt-shadow);
    isolation:isolate;
}
.cslt-visual-card__rings {
    position:absolute;
    width:390px;height:390px;border-radius:50%;
    border:1px solid rgba(134,69,62,.18);
}
.cslt-visual-card__rings::before,
.cslt-visual-card__rings::after {
    content:"";position:absolute;border-radius:50%;inset:34px;border:1px solid rgba(134,69,62,.14);
}
.cslt-visual-card__rings::after { inset:75px;background:rgba(226,161,142,.14); }
.cslt-visual-card>img {
    position:relative;z-index:2;width:min(330px,66%);
    filter:drop-shadow(0 20px 30px rgba(95,54,48,.18));
    animation:csltFloat 5s ease-in-out infinite;
}
.cslt-visual-card__label {
    position:absolute;top:26px;right:26px;padding:9px 14px;border-radius:999px;
    color:var(--cslt-green-dark);background:rgba(255,255,255,.82);
    border:1px solid rgba(134,69,62,.16);font-size:12px;font-weight:800;
}
.cslt-floating-note {
    position:absolute;z-index:3;display:grid;gap:3px;padding:14px 17px;
    border-radius:17px;background:rgba(255,255,255,.87);
    border:1px solid rgba(255,255,255,.95);box-shadow:0 14px 28px rgba(23,35,51,.10);
    backdrop-filter:blur(9px);
}
.cslt-floating-note strong{font-size:13px}
.cslt-floating-note span{font-size:11px;color:var(--cslt-muted)}
.cslt-floating-note--top{left:-28px;top:105px}
.cslt-floating-note--bottom{right:-28px;bottom:80px}

.cslt-orb {position:absolute;border-radius:50%;pointer-events:none}
.cslt-orb--1{width:200px;height:200px;right:-70px;top:40px;background:rgba(226,161,142,.18)}
.cslt-orb--2{width:120px;height:120px;left:3%;bottom:30px;background:rgba(207,119,97,.10)}

.cslt-scroll {
    position:absolute;left:50%;bottom:28px;width:30px;height:48px;
    display:grid;place-items:start center;padding-top:8px;border:1px solid rgba(75,45,42,.20);
    border-radius:999px;transform:translateX(-50%);
}
.cslt-scroll span{width:4px;height:8px;border-radius:99px;background:var(--cslt-red);animation:csltScroll 1.7s infinite}

.cslt-intro {padding:88px 0 92px}
.cslt-section-heading{max-width:780px;margin:0 auto 56px;text-align:center}
.cslt-section-heading .cslt-kicker{justify-content:center}
.cslt-section-heading h2{font-size:clamp(37px,5vw,59px)}
.cslt-section-heading p{max-width:680px;margin:20px auto 0;color:var(--cslt-muted);font-size:17px;line-height:1.7}




.cslt-intro--compact{
    padding:58px 0;
}
.cslt-benefits-compact{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:28px;
    align-items:stretch;
    padding:22px;
    border:1px solid rgba(75,45,42,.10);
    border-radius:26px;
    background:#fff;
    box-shadow:0 14px 36px rgba(23,35,51,.055);
}
.cslt-benefits-compact__heading{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:8px 14px 8px 8px;
    border-right:1px solid var(--cslt-line);
}
.cslt-benefits-compact__heading .cslt-kicker{
    margin-bottom:8px;
}
.cslt-benefits-compact__heading h2{
    margin:0;
    font-size:26px;
    line-height:1.12;
    letter-spacing:-.03em;
}
.cslt-benefits-compact__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
}
.cslt-benefits-compact__item{
    display:flex;
    gap:12px;
    align-items:center;
    min-height:112px;
    padding:16px;
    border-radius:18px;
    background:var(--cslt-cream);
    transition:transform .25s ease,background .25s ease,box-shadow .25s ease;
}
.cslt-benefits-compact__item:hover{
    transform:translateY(-3px);
    background:#fff;
    box-shadow:0 12px 26px rgba(95,54,48,.08);
}
.cslt-benefits-compact__icon{
    flex:0 0 auto;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:14px;
    color:var(--cslt-green-dark);
    background:linear-gradient(145deg,#f8ddd5,#f1c9be);
    font-size:19px;
    font-weight:900;
}
.cslt-benefits-compact__item h3{
    margin:0;
    font-size:16px;
    line-height:1.2;
}
.cslt-benefits-compact__item p{
    margin:6px 0 0;
    color:var(--cslt-muted);
    font-size:12px;
    line-height:1.45;
}

.cslt-details{padding:86px 0;background:var(--cslt-cream)}
.cslt-details__grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:85px;align-items:center}

.cslt-instructor-card{
    overflow:hidden;
    border:1px solid rgba(75,45,42,.10);
    border-radius:32px;
    background:#fff;
    box-shadow:var(--cslt-shadow);
}
.cslt-instructor-card__photo{
    position:relative;
    height:320px;
    overflow:hidden;
    background:#f2d5cc;
}
.cslt-instructor-card__photo::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:90px;
    background:linear-gradient(to top,rgba(255,255,255,.94),transparent);
}
.cslt-instructor-card__photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 22%;
    display:block;
    transition:transform .6s ease;
}
.cslt-instructor-card:hover .cslt-instructor-card__photo img{
    transform:scale(1.035);
}
.cslt-instructor-card__content{
    padding:28px 30px 30px;
}
.cslt-instructor-card__content h2{
    margin:0;
    font-size:42px;
}
.cslt-instructor-card__content>p{
    margin:14px 0 20px;
    color:var(--cslt-muted);
    line-height:1.7;
}
.cslt-instructor-card__tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.cslt-instructor-card__tags span{
    padding:8px 11px;
    border-radius:999px;
    color:var(--cslt-green-dark);
    background:#fbe8e2;
    font-size:11px;
    font-weight:800;
}

.cslt-details h2{font-size:clamp(38px,5vw,60px)}
.cslt-details__content>p{margin:22px 0 30px;color:var(--cslt-muted);font-size:17px;line-height:1.75}

.cslt-checks{display:grid;gap:13px}
.cslt-checks>div{display:grid;grid-template-columns:44px 1fr;gap:14px;align-items:center;padding:16px;border-radius:18px;background:#fff;border:1px solid var(--cslt-line)}
.cslt-checks>div>span{width:40px;height:40px;display:grid;place-items:center;border-radius:12px;color:#fff;background:var(--cslt-green-dark);font-weight:900}
.cslt-checks p{display:grid;gap:3px;margin:0}
.cslt-checks strong{font-size:14px}
.cslt-checks small{color:var(--cslt-muted);font-size:12px}

.cslt-info{padding:82px 0;background:#fff}
.cslt-info__box{
    padding:58px;border-radius:34px;color:#fff;
    background:radial-gradient(circle at 90% 10%,rgba(255,255,255,.15),transparent 30%),linear-gradient(135deg,#4b2e32,#86453e);
    box-shadow:0 25px 70px rgba(95,54,48,.22);
}
.cslt-kicker--light{color:#ffd0c1}
.cslt-info__heading{display:flex;justify-content:space-between;gap:40px;align-items:end}
.cslt-info h2{max-width:720px;font-size:clamp(36px,5vw,56px)}
.cslt-info__cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:38px 0 32px}
.cslt-info__cards>div{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:center;padding:20px;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:rgba(255,255,255,.07)}
.cslt-info__cards>div>span{width:44px;height:44px;display:grid;place-items:center;border-radius:14px;color:#ffd0c1;background:rgba(255,255,255,.09);font-size:20px}
.cslt-info__cards p{display:grid;gap:4px;margin:0}
.cslt-info__cards small{color:rgba(255,235,229,.75);font-size:11px}
.cslt-info__cards strong{font-size:13px}
.cslt-practical-info{grid-template-columns:repeat(4,minmax(0,1fr))}
.cslt-benefits-section{padding-top:82px;padding-bottom:82px}
.cslt-benefits__cards{grid-template-columns:repeat(4,1fr);margin-bottom:0}
.cslt-benefits__cards p{min-width:0}
.cslt-benefits__cards strong{font-size:15px;line-height:1.2}
.cslt-benefits__cards small{font-size:12px;line-height:1.45}
.cslt-button--light{color:var(--cslt-ink)!important;background:#fff}

.cslt-contact{padding:10px 0 72px;background:#fff}
.cslt-contact__box{
    display:grid;grid-template-columns:1fr .95fr;gap:55px;align-items:center;
    padding:48px;border:1px solid var(--cslt-line);border-radius:30px;background:var(--cslt-cream);
}
.cslt-contact h2{font-size:clamp(33px,4vw,49px)}
.cslt-contact__box>div:first-child>p{margin:18px 0 0;color:var(--cslt-muted);line-height:1.7}
.cslt-contact__actions{display:grid;gap:12px}
.cslt-contact__item{
    display:grid;grid-template-columns:46px 1fr;gap:14px;align-items:center;padding:17px;
    border:1px solid var(--cslt-line);border-radius:18px;background:#fff;color:var(--cslt-ink)!important;
}
.cslt-contact__item>span{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;color:#fff;background:var(--cslt-red);font-weight:800}
.cslt-contact__item p{display:grid;gap:3px;margin:0}
.cslt-contact__item small{color:var(--cslt-muted);font-size:11px}
.cslt-contact__item strong{font-size:13px;line-height:1.45}
.cslt-reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.75,.2,1);transition-delay:var(--delay,0ms)}
.cslt-reveal.is-visible{opacity:1;transform:none}
.cslt-reveal--delay{--delay:120ms}

@keyframes csltFloat{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-13px) rotate(1deg)}}
@keyframes csltScroll{0%{transform:translateY(0);opacity:0}35%{opacity:1}100%{transform:translateY(20px);opacity:0}}

@media(max-width:1020px){
    .cslt-benefits-compact{grid-template-columns:1fr}
    .cslt-benefits-compact__heading{
        padding:4px 4px 18px;
        border-right:0;
        border-bottom:1px solid var(--cslt-line);
    }
    .cslt-benefits-compact__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.cslt-hero__grid,.cslt-details__grid,.cslt-contact__box{grid-template-columns:1fr}
    .cslt-hero__content{text-align:center}
    .cslt-lead{margin-inline:auto}
    .cslt-actions,.cslt-practical{justify-content:center}
    .cslt-visual-card{width:min(620px,100%);margin-inline:auto}
    .cslt-benefits{grid-template-columns:repeat(2,1fr)}
    .cslt-details__grid{gap:50px}
    .cslt-info__heading{flex-direction:column;align-items:flex-start}
    .cslt-info__cards{grid-template-columns:1fr}
    .cslt-benefits__cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
    .cslt-intro--compact{padding:44px 0}
    .cslt-benefits-compact{padding:16px;border-radius:22px}
    .cslt-benefits-compact__heading h2{font-size:23px}
    .cslt-benefits-compact__grid{grid-template-columns:1fr}
    .cslt-benefits-compact__item{min-height:auto;padding:15px}
    .cslt-benefits-compact__item:hover{transform:none}
.cslt-orbit-card__icon{
        width:44px;
        height:44px;
        border-radius:14px;
    }
    .cslt-shell{width:min(100% - 24px,1180px)}
    .cslt-hero{min-height:auto;padding:50px 0 92px}
    .cslt-hero h1{font-size:clamp(42px,12vw,60px)}
    .cslt-actions{display:grid}
    .cslt-button{width:100%}
    .cslt-practical{display:grid}
    .cslt-visual-card{min-height:430px;border-radius:30px}
    .cslt-visual-card__rings{width:290px;height:290px}
    .cslt-floating-note--top{left:8px;top:72px}
    .cslt-floating-note--bottom{right:8px;bottom:55px}
    .cslt-intro,.cslt-details,.cslt-info{padding:64px 0}
.cslt-instructor-card__photo{height:285px}
    .cslt-instructor-card__content{padding:24px 22px 26px}
    .cslt-info__box{padding:32px 22px;border-radius:25px}
    .cslt-benefits__cards{grid-template-columns:1fr}
    .cslt-info__heading{gap:14px}
    .cslt-contact__box{padding:30px 22px;border-radius:24px}
}
@media(prefers-reduced-motion:reduce){
    .csl-theatre *,.csl-theatre *::before,.csl-theatre *::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
