:root {
    --primary: #2146a3;
    --secondary: #df9114;
    --background: #fdfaf4;
    --text: #2d3038;
    --muted: #5f6270;
    --page-shell-gutter: clamp(72px, 8vw, 160px);
    --page-safe-gutter: clamp(18px, 3vw, 28px);
    --header-gap: clamp(28px, 3.2vw, 52px);
    --logo-align-shift: 50px;
    --classes-page-gutter: calc(100% - (var(--page-shell-gutter) * 2));
    --motion-duration-fast: 300ms;
    --motion-duration-medium: 620ms;
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --focus-ring: 0 0 0 4px rgba(33, 70, 163, 0.14);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    font-family: "Space Grotesk", Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    scroll-behavior: smooth;
}

html[lang="he"],
html[lang="he"] *,
html[lang="he"] *::before,
html[lang="he"] *::after {
    font-family: "Miriam Libre",
        sans-serif;
    ;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    overflow-x: hidden;
}

img,
iframe,
video {
    max-width: 100%;
}

:where(h1, h2, h3, p, li) {
    overflow-wrap: anywhere;
}

main > section:not(:first-child),
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

html[data-i18n-state="loading"] body {
    opacity: 0;
}

html[data-i18n-state="ready"] body {
    opacity: 1;
    transition: opacity 140ms ease;
}

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

[id] {
    scroll-margin-top: 120px;
}

:where(a, button, input, textarea, select) {
    -webkit-tap-highlight-color: transparent;
}

:where(.nav-cta, .hero-cta, .studio-cta) {
    box-shadow: 0 14px 28px rgba(33, 70, 163, 0.12);
    cursor: pointer;
}

:where(.nav-cta, .hero-cta, .studio-cta, .classes-preview-next, .instructor-card-dots, .contact-status-toast__close) {
    transition:
        transform var(--motion-duration-fast) var(--motion-ease),
        box-shadow var(--motion-duration-fast) var(--motion-ease),
        background-color var(--motion-duration-fast) var(--motion-ease),
        border-color var(--motion-duration-fast) var(--motion-ease),
        color var(--motion-duration-fast) var(--motion-ease),
        opacity var(--motion-duration-fast) ease;
}

:where(.nav-cta, .hero-cta, .studio-cta):hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(33, 70, 163, 0.18);
}

:where(.nav-cta, .hero-cta, .studio-cta):active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 10px 20px rgba(33, 70, 163, 0.14);
}

:where(.nav-cta, .hero-cta, .studio-cta, .classes-preview-next, .instructor-card-dots, .contact-status-toast__close):focus-visible,
:where(.main-nav a, .footer-nav a, .footer-bottom a, .contact-info-copy a, .classes-preview-link, .classes-preview-arrow, .footer-social a, .about-contact-icon):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

:where(button, [type="button"], [type="submit"], [type="reset"], .nav-cta, .hero-cta, .studio-cta):disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
    box-shadow: none;
}

:where(.classes-preview-link, .classes-preview-arrow, .footer-nav a, .footer-bottom a, .contact-info-copy a, .footer-social a, .about-contact-icon) {
    transition:
        color var(--motion-duration-fast) var(--motion-ease),
        transform var(--motion-duration-fast) var(--motion-ease),
        box-shadow var(--motion-duration-fast) var(--motion-ease),
        border-color var(--motion-duration-fast) var(--motion-ease),
        background-color var(--motion-duration-fast) var(--motion-ease);
}

:where(.classes-preview-link, .classes-preview-arrow, .footer-nav a, .footer-bottom a, .contact-info-copy a):hover,
:where(.classes-preview-link, .classes-preview-arrow, .footer-nav a, .footer-bottom a, .contact-info-copy a):focus-visible {
    transform: translateY(-1px);
}

.classes-preview-link svg,
.classes-preview-arrow svg,
.studio-cta svg,
.hero-cta svg {
    transition: transform var(--motion-duration-fast) var(--motion-ease);
}

.classes-preview-link:hover svg,
.classes-preview-link:focus-visible svg,
.classes-preview-arrow:hover svg,
.classes-preview-arrow:focus-visible svg,
.studio-cta:hover svg,
.studio-cta:focus-visible svg,
.hero-cta:hover svg,
.hero-cta:focus-visible svg {
    transform: translateX(2px);
}

.footer-social a:hover,
.footer-social a:focus-visible,
.about-contact-icon:hover,
.about-contact-icon:focus-visible,
.classes-preview-next:hover,
.classes-preview-next:focus-visible,
.contact-status-toast__close:hover,
.contact-status-toast__close:focus-visible,
.instructor-card-dots:hover,
.instructor-card-dots:focus-visible {
    transform: translateY(-2px);
}

.footer-social a:hover,
.footer-social a:focus-visible,
.about-contact-icon:hover,
.about-contact-icon:focus-visible {
    box-shadow: 0 14px 24px rgba(33, 70, 163, 0.12);
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity var(--motion-duration-medium) var(--motion-ease),
        transform var(--motion-duration-medium) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    display: grid;
    width: 100%;
    grid-template-columns: var(--page-shell-gutter) auto 1fr auto var(--page-shell-gutter);
    align-items: center;
    column-gap: var(--header-gap);
    padding: 28px var(--page-safe-gutter) 0;
}

.logo {
    grid-column: 2;
    display: block;
    width: clamp(118px, 10vw, 140px);
    margin-inline-start: calc(var(--logo-align-shift) * -1);
    justify-self: start;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-left: 0;
}

.main-nav {
    grid-column: 3;
    display: flex;
    min-width: 0;
    justify-content: center;
    gap: var(--header-gap);
    color: #272a31;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
    padding-bottom: 6px;
    transition: color var(--motion-duration-fast) var(--motion-ease), transform var(--motion-duration-fast) var(--motion-ease);
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--motion-duration-fast) var(--motion-ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    color: var(--primary);
    transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-cta,
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.nav-cta {
    min-width: 154px;
    height: 48px;
    font-size: 12px;
    letter-spacing: 0.06em;
}

html[lang="he"] .nav-cta {
    min-width: 0;
    padding-inline: 22px;
    letter-spacing: 0;
    font-size: 14px;
}

.header-tools {
    grid-column: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
}

.nav-language-picker {
    position: relative;
}

.nav-language-picker summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 42px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(32, 84, 214, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #2054d6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 12px 30px rgba(32, 84, 214, 0.12);
}

.nav-language-current-label {
    display: none;
}

.nav-language-icon,
.nav-language-helper-icon {
    flex: 0 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.nav-language-icon {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232054d6' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 0 18'/%3E%3Cpath d='M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}

.nav-language-icon--large {
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23272a31' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 0 18'/%3E%3Cpath d='M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}

.nav-language-picker summary::-webkit-details-marker {
    display: none;
}

.nav-language-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--motion-duration-fast) var(--motion-ease);
}

.nav-language-picker[open] .nav-language-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-language-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-end: 0;
    display: grid;
    min-width: 152px;
    padding: 6px;
    border: 1px solid rgba(39, 42, 49, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(39, 42, 49, 0.14);
    z-index: 20;
}

.nav-language-menu-header,
.nav-language-menu-footer {
    display: none;
}

.nav-language-menu-copy,
.nav-language-item-copy {
    display: grid;
}

.nav-language-menu-title,
.nav-language-menu-description,
.nav-language-helper-text,
.nav-language-item-subtitle {
    margin: 0;
}

.nav-language-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 6px 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #272a31;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: start;
    text-transform: none;
}

.nav-language-item-badge {
    display: none;
}

.nav-language-item-label {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
}

.nav-language-item-subtitle {
    color: #767b85;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
}

.nav-language-check {
    color: #2054d6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

html[lang="he"] .nav-language-item-copy {
    text-align: left;
}

html[lang="en"] .nav-language-item-copy {
    text-align: right;
}

.nav-language-item:hover,
.nav-language-item:focus-visible,
.nav-language-item.is-active {
    background: rgba(32, 84, 214, 0.08);
    color: #1f2633;
}

.mobile-language-switcher {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 803px;
    grid-template-columns: clamp(72px, 8vw, 160px) minmax(620px, 700px) minmax(560px, 1fr);
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    background: var(--background);
}

.hero-content {
    position: relative;
    z-index: 2;
    grid-column: 2;
    padding-top: 291px;
    padding-left: 0;
}

.eyebrow {
    margin: 0 0 32px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

h1 {
    max-width: 720px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(56px, 5.15vw, 74px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

#hero-title {
    max-width: 760px;
    font-size: clamp(40px, 3.9vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-description {
    max-width: 472px;
    margin: 18px 0 0;
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.7;
}

.hero-quote {
    display: inline;
}

.hero-attribution {
    display: inline;
    white-space: nowrap;
    font-size: 0.96em;
    font-style: italic;
    letter-spacing: -0.02em;
}

.hero-cta {
    min-width: 216px;
    height: 59px;
    margin-top: 24px;
    gap: 16px;
    padding: 0 28px;
    font-size: 13px;
    letter-spacing: 0.045em;
}

html[lang="he"] .hero-cta {
    letter-spacing: 0;
    font-size: 16px;
}

.hero-cta svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.hero-image {
    position: relative;
    grid-column: 3;
    min-height: 803px;
    background: var(--background);
}

.hero-image::before {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 64%;
    background:
        radial-gradient(ellipse at left center,
            rgba(253, 250, 244, 0.72) 0%,
            rgba(253, 250, 244, 0.48) 18%,
            rgba(253, 250, 244, 0.24) 38%,
            rgba(253, 250, 244, 0.08) 58%,
            rgba(253, 250, 244, 0) 76%),
        linear-gradient(90deg,
            rgba(253, 250, 244, 1) 0%,
            rgba(253, 250, 244, 0.985) 10%,
            rgba(253, 250, 244, 0.95) 24%,
            rgba(253, 250, 244, 0.84) 40%,
            rgba(253, 250, 244, 0.64) 56%,
            rgba(253, 250, 244, 0.38) 72%,
            rgba(253, 250, 244, 0.16) 88%,
            rgba(253, 250, 244, 0) 100%);
    content: "";
    pointer-events: none;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 380px;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(253, 250, 244, 0.97) 0%,
            rgba(253, 250, 244, 0.88) 18%,
            rgba(253, 250, 244, 0.58) 48%,
            rgba(253, 250, 244, 0.22) 78%,
            rgba(253, 250, 244, 0) 100%);
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 54%;
}

.principles {
    padding: 46px 0 82px;
    /* background: linear-gradient(180deg, #fffdfa 0%, #fdfaf4 100%); */
}

.principles-inner {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.principles-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 42px;
}

.principles-mark {
    position: relative;
    width: 150px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.principles-mark::before,
.principles-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 56px;
    height: 1px;
    background: rgba(223, 145, 20, 0.4);
    transform: translateY(-50%);
}

.principles-mark::before {
    left: 0;
}

.principles-mark::after {
    right: 0;
}

.principles-mark svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    fill: rgba(223, 145, 20, 0.9);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
    background: #fffdfa;
}

.principles h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(21px, 2vw, 31px);
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1.1;
    text-transform: uppercase;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.principle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.principle-icon-wrap {
    display: grid;
    place-items: center;
    width: 144px;
    height: 144px;
}

.principle-icon {
    display: block;
    width: 132px;
    height: 132px;
    object-fit: contain;
    transform-origin: center;
    transform: rotate(0deg);
    transition: transform 1.8s cubic-bezier(0.17, 0.84, 0.32, 1);
}

.principle-icon-wrap:hover .principle-icon {
    transform: rotate(360deg);
}

html[lang="he"] body[data-page="home"] .principle-icon-wrap:hover .principle-icon {
    transform: rotate(-360deg);
}

.principle-card h3 {
    margin: 14px 0 10px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.principle-card p {
    max-width: 178px;
    margin: 0;
    color: #4e5160;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
}

.principle-accent {
    width: 40px;
    height: 2px;
    margin-top: 16px;
    background: rgba(223, 145, 20, 0.85);
}

.classes-preview {
    padding: 54px 0 96px;
    background: #fdfaf4;
}

.classes-preview-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.classes-preview-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 42px;
}

.classes-preview h2,
.classes-preview-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.classes-preview h2 {
    color: var(--primary);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 0.96;
}

.classes-preview-link {
    display: grid;
    grid-column: 2 / 4;
    grid-template-columns: auto 44px;
    align-items: center;
    column-gap: 16px;
    justify-self: end;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.classes-preview-carousel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 16px;
}

.classes-preview-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(45, 48, 56, 0.56);
    cursor: pointer;
    transition: transform var(--motion-duration-fast) var(--motion-ease), color var(--motion-duration-fast) var(--motion-ease), box-shadow var(--motion-duration-fast) var(--motion-ease);
}

.classes-preview-next:hover {
    color: rgba(45, 48, 56, 0.78);
}

.classes-preview-next.is-animating svg {
    animation: classes-preview-arrow-shift 280ms ease;
}

html[dir="rtl"] .classes-preview-next.is-animating svg {
    animation: classes-preview-arrow-shift-rtl 280ms ease;
}

.classes-preview-link svg,
.classes-preview-next svg,
.classes-preview-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.classes-preview-next svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.4;
}

.classes-preview-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow: hidden;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    touch-action: pan-y;
}

.classes-preview-grid.is-enhanced {
    display: block;
    cursor: grab;
    user-select: none;
}

.classes-preview-grid.is-enhanced:active {
    cursor: grabbing;
}

.classes-preview-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    will-change: transform;
}

.classes-preview-grid::-webkit-scrollbar {
    display: none;
}

.classes-preview-card {
    display: flex;
    flex-direction: column;
    min-height: 162px;
    padding: 4px 24px 0 0;
    scroll-snap-align: start;
}

.classes-preview-card:not(:last-child) {
    border-inline-end: 1px solid rgba(45, 48, 56, 0.12);
    padding-inline-end: 24px;
}

.classes-preview-card h3 {
    color: #22252d;
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1;
}

.classes-preview-card p {
    margin: 14px 0 28px;
    color: rgba(45, 48, 56, 0.78);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.classes-preview-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: auto;
    color: #22252d;
    transition: color 180ms ease;
}

.classes-preview-arrow:hover {
    color: var(--secondary);
}

.studio-showcase {
    padding: 42px 0 126px;
    background: #fdfaf4;
}

.studio-showcase-inner {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
}

.studio-showcase h2 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 400;
    color: var(--primary);
    font-size: clamp(80px, 6.2vw, 98px);
    letter-spacing: -0.055em;
    line-height: 0.9;
    text-align: center;
}

.studio-showcase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.studio-lead {
    margin: 16px 0 0;
    max-width: 520px;
    color: rgba(45, 48, 56, 0.82);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.34;
}

html[lang="he"] p.studio-lead {
    font-size: 16px
}

.studio-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(328px, 100%);
    color: rgba(223, 145, 20, 0.9);
}

.studio-divider::before,
.studio-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(223, 145, 20, 0.4);
}

.studio-divider svg {
    width: 22px;
    height: 22px;
    margin: 0 16px;
}

.studio-divider-top {
    margin-top: 18px;
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(1160px, 92%);
    gap: 16px;
    margin: 46px auto 0;
}

.studio-gallery-card {
    overflow: hidden;
    aspect-ratio: 1.68;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 20px 58px rgba(217, 193, 158, 0.18);
}

.studio-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-gallery-left img {
    object-position: center center;
}

.studio-gallery-right img {
    object-position: center 73%;
}

.studio-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 216px;
    height: 59px;
    /* margin-top: 26px; */
    padding: 0 28px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
    border: 0;
}

html[lang="he"] a.studio-cta > span[data-i18n="common.buttons.aboutStudio"] {
    letter-spacing: 0;
    font-size: 16px;
}

.studio-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.studio-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.studio-cta-secondary {
    background: rgba(94, 118, 199, 0.12);
    color: #5e76c7;
}

html[lang="he"] a.studio-cta-secondary>span[data-i18n="common.buttons.meetInstructors"]{
    letter-spacing: 0;
    font-size: 16px;
}

.studio-divider-bottom {
    width: 100%;
    margin-top: 38px;
    gap: 32px;
}

.studio-divider-bottom svg {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-status-toast {
    position: fixed;
    top: 24px;
    right: auto;
    left: auto;
    inset-inline-end: 24px;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    width: min(420px, calc(100vw - 32px));
    padding: 18px 18px 18px 16px;
    border: 1px solid rgba(45, 48, 56, 0.12);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 24px 60px rgba(28, 35, 63, 0.18);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.contact-status-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-status-toast[data-tone="success"] {
    border-color: rgba(57, 133, 92, 0.22);
}

.contact-status-toast[data-tone="warning"] {
    border-color: rgba(196, 131, 48, 0.24);
}

.contact-status-toast[data-tone="error"] {
    border-color: rgba(178, 73, 73, 0.22);
}

.contact-status-toast__icon {
    width: 14px;
    height: 14px;
    margin-top: 5px;
    border-radius: 999px;
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(94, 118, 199, 0.14);
}

.contact-status-toast[data-tone="success"] .contact-status-toast__icon {
    background: #39855c;
    box-shadow: 0 0 0 6px rgba(57, 133, 92, 0.16);
}

.contact-status-toast[data-tone="warning"] .contact-status-toast__icon {
    background: #c48330;
    box-shadow: 0 0 0 6px rgba(196, 131, 48, 0.16);
}

.contact-status-toast[data-tone="error"] .contact-status-toast__icon {
    background: #b24949;
    box-shadow: 0 0 0 6px rgba(178, 73, 73, 0.15);
}

.contact-status-toast__content {
    min-width: 0;
}

.contact-status-toast__title,
.contact-status-toast__message {
    margin: 0;
}

.contact-status-toast__title {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.contact-status-toast__message {
    margin-top: 4px;
    color: rgba(45, 48, 56, 0.82);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.contact-status-toast__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(45, 48, 56, 0.62);
    cursor: pointer;
    transition: transform var(--motion-duration-fast) var(--motion-ease), background-color var(--motion-duration-fast) var(--motion-ease), color var(--motion-duration-fast) var(--motion-ease), box-shadow var(--motion-duration-fast) var(--motion-ease);
}

.contact-status-toast__close:hover,
.contact-status-toast__close:focus-visible {
    background: rgba(45, 48, 56, 0.08);
    color: var(--primary);
}

.contact-status-toast__close:focus-visible {
    outline: 2px solid rgba(33, 70, 163, 0.2);
    outline-offset: 2px;
}

.site-footer {
    padding: 112px 0 44px;
    background: #fdfaf4;
}

.site-footer-inner {
    width: 100%;
    margin: 0;
    padding-inline-start: max(calc(var(--page-shell-gutter) - var(--logo-align-shift)), var(--page-safe-gutter));
    padding-inline-end: max(var(--page-shell-gutter), var(--page-safe-gutter));
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.7fr) repeat(3, minmax(150px, 0.82fr));
    gap: 40px 56px;
    align-items: start;
}

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

.footer-logo {
    display: inline-block;
    width: 118px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-description {
    max-width: 320px;
    margin: 28px 0 0;
    color: #343845;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(33, 70, 163, 0.48);
    border-radius: 999px;
    color: var(--primary);
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.footer-social a:hover {
    border-color: var(--primary);
}

.footer-social a[aria-label="Facebook"]:hover {
    border-color: #5e76c7;
    color: #5e76c7;
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.footer-nav h2 {
    margin: 0;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-nav h2::after {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    margin-top: 14px;
    background: rgba(223, 145, 20, 0.72);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: #2e313b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.9;
    transition: color var(--motion-duration-fast) var(--motion-ease), transform var(--motion-duration-fast) var(--motion-ease);
}

.footer-nav a:hover,
.footer-bottom a:hover {
    color: var(--primary);
}

.footer-nav a:first-of-type {
    margin-top: 18px;
}

.footer-bottom-divider {
    height: 1px;
    margin-top: 58px;
    background: rgba(223, 145, 20, 0.62);
}

.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding-top: 24px;
}

.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #2f3340;
}

.footer-bottom-item svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: rgba(223, 145, 20, 0.95);
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom-item p,
.footer-bottom-item a {
    margin: 0;
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.footer-bottom-est {
    justify-self: center;
    text-align: center;
}

.footer-bottom-contact {
    justify-self: end;
}

.footer-contact-stack {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes classes-preview-arrow-shift {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes classes-preview-arrow-shift-rtl {
    0% {
        transform: scaleX(-1) translateX(0);
    }

    50% {
        transform: scaleX(-1) translateX(-5px);
    }

    100% {
        transform: scaleX(-1) translateX(0);
    }
}

@media (max-width: 980px) {
    .site-header {
        position: relative;
        left: auto;
        width: 100%;
        grid-template-columns: auto 1fr;
        gap: 18px 24px;
        padding: 18px 24px 0;
        transform: none;
    }

    .logo {
        width: 78px;
        margin-inline-start: 0;
    }

    .logo img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        padding: 8px 0 10px;
        font-size: 12px;
    }

    .header-tools {
        grid-column: 2;
        gap: 10px;
        margin-top: 10px;
        justify-self: end;
    }

    .nav-cta {
        margin-top: 0;
    }

    .nav-language-picker summary {
        min-width: 40px;
        height: 34px;
        padding-inline: 9px;
    }

    .nav-language-menu {
        min-width: 144px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 56px 24px 0;
    }

    .hero-content {
        grid-column: 1;
        padding-top: 0;
    }

    .hero-image {
        grid-column: 1;
        min-height: 520px;
        margin: 54px -24px 0;
    }

    .hero-image::before {
        top: -1px;
        right: 0;
        bottom: auto;
        width: auto;
        height: 34%;
        background: linear-gradient(180deg, var(--background) 0%, rgba(251, 248, 241, 0) 100%);
    }

    .hero-image::after {
        display: none;
    }

    .principles {
        padding: 34px 0 70px;
    }

    .principles-inner {
        width: 100%;
        margin-inline: auto;
    }

    .principles-heading {
        gap: 14px;
        margin-bottom: 34px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 18px;
    }

    .classes-preview {
        padding: 40px 0 78px;
    }

    .classes-preview-inner {
        width: min(100%, calc(100% - 48px));
    }

    .classes-preview-header {
        grid-template-columns: minmax(0, 1fr) auto 40px;
        align-items: flex-start;
        margin-bottom: 34px;
    }

    .classes-preview-link {
        grid-template-columns: auto 40px;
    }

    .classes-preview-carousel {
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 16px;
    }

    .classes-preview-grid {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
    }

    .classes-preview-track {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
    }

    .classes-preview-card {
        min-height: auto;
        padding-top: 0;
        padding-inline-end: 24px;
        padding-bottom: 18px;
        padding-inline-start: 0;
    }

    .classes-preview-card:not(:last-child) {
        border-inline-end: 1px solid rgba(45, 48, 56, 0.12);
        border-bottom: 0;
        margin-bottom: 0;
        padding-inline-end: 24px;
    }

    .studio-showcase {
        padding: 26px 0 92px;
    }

    .studio-showcase-inner {
        width: min(100%, calc(100% - 48px));
    }

    .studio-showcase h2 {
        font-size: clamp(68px, 10vw, 88px);
    }

    .studio-lead {
        max-width: 500px;
        font-size: 22px;
    }


    .studio-gallery {
        width: min(1080px, 92%);
        gap: 14px;
        margin-top: 40px;
    }

    .site-footer {
        padding: 84px 0 40px;
    }

    .site-footer-inner {
        width: 100%;
    }

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

    .footer-description {
        max-width: 260px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 18px;
    }

    .footer-bottom-est,
    .footer-bottom-contact {
        justify-self: start;
    }

    .footer-contact-stack {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .studio-gallery-card {
        aspect-ratio: 1.55;
    }

}

@media (max-width: 640px) {
    body {
        background: var(--background);
    }

    .site-header {
        padding-inline: 18px;
    }

    .nav-cta {
        min-width: 132px;
        height: 42px;
        font-size: 11px;
    }

    .hero {
        padding: 44px 18px 0;
    }

    .eyebrow {
        margin-bottom: 24px;
        font-size: 12px;
    }

    h1 {
        font-size: clamp(42px, 13.5vw, 58px);
        letter-spacing: -0.06em;
    }

    #hero-title {
        font-size: clamp(30px, 8.8vw, 40px);
        line-height: 1.14;
        letter-spacing: -0.03em;
    }

    .hero-description {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-cta {
        margin-top: 18px;
    }

    .hero-cta {
        min-width: 184px;
        height: 54px;
        margin-top: 34px;
    }

    .hero-image {
        min-height: 390px;
        margin: 42px -18px 0;
    }

    .hero-image img {
        object-position: 63% center;
    }

    .principles {
        padding: 24px 0 56px;
    }

    .principles-inner {
        width: min(100%, calc(100% - 36px));
        margin-inline: auto;
    }

    .principles-mark {
        width: 126px;
    }

    .principles h2 {
        font-size: 18px;
        letter-spacing: 0.18em;
        text-align: center;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .principle-icon-wrap {
        width: 132px;
        height: 132px;
    }

    .principle-icon {
        width: 122px;
        height: 122px;
    }

    .principle-card h3 {
        font-size: 22px;
    }

    .principle-card p {
        max-width: 260px;
        font-size: 15px;
        line-height: 1.8;
    }

    .classes-preview {
        padding: 28px 0 56px;
    }

    .classes-preview-inner {
        width: min(100%, calc(100% - 36px));
    }

    .classes-preview-header {
        flex-direction: column;
        display: flex;
        gap: 18px;
        margin-bottom: 28px;
    }

    .classes-preview-link {
        display: inline-flex;
        column-gap: 14px;
    }

    .classes-preview-grid {
        grid-auto-columns: 100%;
        gap: 20px;
    }

    .classes-preview-track {
        grid-auto-columns: 100%;
        gap: 20px;
    }

    .classes-preview-carousel {
        position: relative;
        grid-template-columns: 1fr;
    }

    .classes-preview-next {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 0;
        width: 40px;
        height: 40px;
        transform: translate(50%, -50%);
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    .classes-preview-next:hover,
    .classes-preview-next:focus-visible,
    .classes-preview-next:active {
        transform: translate(50%, -50%);
    }

    .classes-preview h2 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .classes-preview-link {
        font-size: 14px;
    }

    .classes-preview-card h3 {
        font-size: 34px;
    }

    .classes-preview-card p {
        margin: 12px 0 22px;
        font-size: 15px;
    }

    .studio-showcase {
        padding: 18px 0 72px;
    }

    .studio-showcase-inner {
        width: min(100%, calc(100% - 36px));
    }

    .studio-showcase h2 {
        font-size: clamp(54px, 16vw, 72px);
    }

    .studio-divider {
        width: min(224px, 100%);
    }

    .studio-divider svg {
        width: 24px;
        height: 24px;
        margin: 0 10px;
    }

    .studio-lead {
        margin-top: 14px;
        max-width: 320px;
        font-size: 18px;
        line-height: 1.34;
    }

    .studio-cta-group {
        margin-top: 22px;
        gap: 10px;
    }

    .studio-cta {
        min-width: 184px;
        height: 54px;
    }

    .studio-gallery {
        grid-template-columns: 1fr;
        width: min(100%, 420px);
        gap: 14px;
        margin-top: 34px;
    }

    .site-footer {
        padding: 68px 0 32px;
    }

    .site-footer-inner {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-logo {
        width: 102px;
    }

    .footer-description {
        margin-top: 22px;
        max-width: 290px;
        font-size: 15px;
        line-height: 1.75;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-nav a:first-of-type {
        margin-top: 14px;
    }

    .footer-bottom-divider {
        margin-top: 42px;
    }

    .footer-bottom {
        gap: 16px;
        padding-top: 20px;
    }

    .footer-bottom-item {
        align-items: flex-start;
    }

    .footer-contact-line {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-contact-stack {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .studio-gallery-card {
        aspect-ratio: 1.5;
        border-radius: 22px;
    }

    .studio-divider-bottom {
        display: flex;
        width: min(224px, 100%);
        margin-top: 34px;
        margin-inline: auto;
        gap: 0;
    }

}

.classes-page {
    background: #fdfaf4;
}

.classes-page .about-hero {
    padding-bottom: 104px;
}

.classes-page .about-hero-copy h1 {
    max-width: none;
    white-space: nowrap;
}

.classes-approaches {
    padding: 26px 0 116px;
    background: linear-gradient(180deg, #fdfaf4 0%, #fffdfa 54%, #fdfaf4 100%);
}

.classes-approaches-inner {
    width: var(--classes-page-gutter);
    margin: 0 auto;
}

.class-approach-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 148px;
    align-items: center;
    column-gap: 34px;
    padding: 32px 0;
    border-top: 1px solid rgba(45, 48, 56, 0.08);
}

.class-approach-row:last-child {
    border-bottom: 1px solid rgba(45, 48, 56, 0.08);
}

.class-approach-number {
    align-self: start;
    padding-top: 6px;
    color: var(--secondary);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
}

.class-approach-copy {
    max-width: 720px;
}

.class-approach-copy h3 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(42px, 3.4vw, 54px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
}

.class-approach-copy p {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(45, 48, 56, 0.9);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.86;
}

.class-approach-icon-card {
    display: grid;
    place-items: center;
    width: 124px;
    height: 124px;
    margin-left: 0;
    margin-inline-start: auto;
    border: 1px solid rgba(45, 48, 56, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 40px rgba(217, 193, 158, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.class-approach-row:hover .class-approach-icon-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(217, 193, 158, 0.14);
}

.class-approach-icon-card svg {
    width: 58px;
    height: 58px;
    color: var(--primary);
    fill: var(--primary);
}

.class-approach-icon-card svg path {
    fill: currentColor;
}

.schedule-page {
    background: #fdfaf4;
}

.join-us-page {
    background: #fdfaf4;
}

.join-us-hero h1 {
    white-space: nowrap;
}

.schedule-hero {
    padding-bottom: 100px;
}

.schedule-section {
    padding: 24px 0 116px;
    background: linear-gradient(180deg, #fdfaf4 0%, #fffdfa 54%, #fdfaf4 100%);
}

.schedule-section-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.schedule-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.schedule-section-heading .eyebrow {
    margin-bottom: 20px;
}

.schedule-section-heading h2 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(54px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.schedule-direct-link {
    margin-top: 0;
}

.schedule-direct-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.schedule-frame-wrap {
    display: flex;
    justify-content: center;
}

.schedule-direct-link-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.schedule-frame-shell {
    width: min(1180px, 100%);
    padding: 16px;
    border: 1px solid rgba(223, 145, 20, 0.16);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(249, 241, 226, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(217, 193, 158, 0.18);
}

.schedule-iframe {
    display: block;
    width: 100%;
    height: clamp(980px, 92vh, 1480px);
    border: 0;
    border-radius: 20px;
    background: #ffffff;
    overflow: auto;
}

.join-membership-iframe {
    height: clamp(1180px, 120vh, 1820px);
}

.join-notes-section {
    padding: 0 0 116px;
    background: #fdfaf4;
}

.join-notes-card {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 42px clamp(24px, 4vw, 48px) 44px;
    border: 1px solid rgba(223, 145, 20, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(217, 193, 158, 0.14);
}

.join-notes-card .eyebrow {
    margin-bottom: 18px;
}

.join-notes-card h2 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.join-notes-card .principle-accent {
    margin-top: 18px;
}

.join-notes-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.join-notes-list li {
    position: relative;
    padding-left: 0;
    padding-inline-start: 26px;
    color: rgba(45, 48, 56, 0.86);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

.join-notes-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: auto;
    inset-inline-start: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(223, 145, 20, 0.82);
    box-shadow: 0 0 0 4px rgba(223, 145, 20, 0.12);
}

.workshops-page {
    background: #fdfaf4;
}

.workshops-hero {
    min-height: 870px;
    grid-template-columns: clamp(72px, 8vw, 160px) minmax(440px, 0.9fr) minmax(720px, 1.1fr);
}

.workshops-hero-content {
    padding-top: 188px;
}

.workshops-hero-content h1 {
    max-width: 480px;
    font-size: clamp(62px, 5.5vw, 86px);
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.workshops-hero-description {
    max-width: 460px;
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.8;
}

.workshops-hero-image img {
    filter: grayscale(1);
    object-position: center center;
}

.workshops-events-section {
    padding: 0 0 112px;
    background:
        radial-gradient(circle at 50% 0%, rgba(223, 145, 20, 0.08) 0%, rgba(223, 145, 20, 0) 32%),
        linear-gradient(180deg, #fffdfa 0%, #fdfaf4 100%);
}

.workshops-events-heading-shell {
    position: relative;
    padding: 232px 0 116px;
}

.workshops-events-heading-shell::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1280px, calc(100% - 64px));
    height: 1px;
    background: linear-gradient(90deg, rgba(223, 145, 20, 0) 0%, rgba(223, 145, 20, 0.42) 50%, rgba(223, 145, 20, 0) 100%);
    transform: translateX(-50%);
}

.workshops-events-inner,
.workshops-hosting-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.workshops-events-heading {
    max-width: 760px;
}

.workshops-events-eyebrow {
    margin-bottom: 32px;
}

.workshops-hosting-divider {
    width: min(200px, 100%);
    margin: 0 auto 18px;
}

.workshops-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1000px;
    margin: 34px auto 0;
}

.workshops-filter-pill {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(33, 70, 163, 0.42);
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--motion-duration-fast) var(--motion-ease), box-shadow var(--motion-duration-fast) var(--motion-ease), background-color var(--motion-duration-fast) var(--motion-ease), border-color var(--motion-duration-fast) var(--motion-ease), color var(--motion-duration-fast) var(--motion-ease), opacity var(--motion-duration-fast) ease;
}

.workshops-filter-pill.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(33, 70, 163, 0.14);
}

.workshops-filter-pill:hover,
.workshops-filter-pill:focus-visible {
    transform: translateY(-1px);
}

.workshops-filter-pill:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.event-card[hidden] {
    display: none;
}

.workshops-events-list {
    display: grid;
    gap: 18px;
    max-width: 1000px;
    margin: 38px auto 0;
}

.workshops-events-empty {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 32px;
    border: 1px solid rgba(223, 145, 20, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    color: rgba(45, 48, 56, 0.82);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.event-card {
    display: grid;
    grid-template-columns: minmax(250px, 0.95fr) minmax(0, 1.12fr) minmax(250px, 0.76fr);
    align-items: stretch;
    overflow: hidden;
    height: 334px;
    border: 1px solid rgba(223, 145, 20, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 42px rgba(217, 193, 158, 0.14);
}

.event-card-media {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.event-card-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.event-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 100%;
    padding: 34px 28px 34px 30px;
}

.event-card-category {
    margin: 0;
    color: rgba(33, 70, 163, 0.8);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.event-card-content h3 {
    margin: 12px 0 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(36px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-card-content p:last-child {
    margin: 18px 0 0;
    color: rgba(45, 48, 56, 0.84);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.82;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.event-card-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 100%;
    gap: 26px;
    padding: 32px 30px 32px 28px;
    border-inline-start: 1px solid rgba(223, 145, 20, 0.2);
}

.event-card-meta {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-card-meta li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(45, 48, 56, 0.82);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.event-card-meta li span {
    min-width: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.event-card-meta svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    fill: none;
    stroke: rgba(223, 145, 20, 0.95);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-card-cta {
    min-width: 0;
    width: fit-content;
    height: 46px;
    margin-top: 0;
    padding: 0 20px;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.event-card-cta svg {
    width: 16px;
    height: 16px;
}

.workshops-hosting-section {
    padding: 0 0 26px;
    background: #fdfaf4;
}

.workshops-hosting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 54px 28px 58px;
    border: 1px solid rgba(223, 145, 20, 0.14);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(253, 248, 240, 0.98) 100%);
    box-shadow: 0 22px 54px rgba(217, 193, 158, 0.12);
}

.workshops-hosting-card p {
    max-width: 540px;
    margin: 18px 0 0;
    color: rgba(45, 48, 56, 0.82);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.workshops-hosting-cta {
    margin-top: 26px;
}

@media (max-width: 980px) {
    :root {
        --classes-page-gutter: min(100%, calc(100% - 48px));
    }

    .classes-approaches {
        padding: 10px 0 88px;
    }

    .schedule-section {
        padding: 10px 0 88px;
    }

    .schedule-section-inner {
        width: min(100%, calc(100% - 48px));
    }

    .schedule-frame-shell {
        padding: 12px;
        border-radius: 26px;
    }

    .schedule-iframe {
        height: clamp(920px, 88vh, 1320px);
        border-radius: 18px;
    }

    .join-membership-iframe {
        height: clamp(1080px, 112vh, 1680px);
    }

    .join-notes-section {
        padding-top: 12px;
        padding-bottom: 88px;
    }

    .join-notes-card {
        padding: 36px 28px 38px;
        border-radius: 26px;
    }

    .workshops-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .workshops-hero-content {
        padding-top: 0;
    }

    .workshops-events-section {
        padding: 0 0 88px;
    }

    .workshops-events-heading-shell {
        padding: 72px 0 84px;
    }

    .workshops-events-heading-shell::after {
        width: min(100%, calc(100% - 48px));
    }

    .workshops-events-inner,
    .workshops-hosting-inner {
        width: min(100%, calc(100% - 48px));
    }

    .workshops-hosting-card h2 {
        font-size: clamp(50px, 8vw, 66px);
    }

    .event-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .event-card-media {
        position: relative;
        min-height: 320px;
        height: 320px;
    }

    .event-card-content {
        padding: 28px 28px 20px;
    }

    .event-card-details {
        gap: 22px;
        padding: 0 28px 28px;
        border-left: 0;
    }

    .workshops-hosting-card {
        padding: 48px 24px 52px;
        border-radius: 28px;
    }

    .class-approach-row {
        grid-template-columns: 58px minmax(0, 1fr) 116px;
        column-gap: 24px;
        padding: 26px 0;
    }

    .class-approach-number {
        font-size: 30px;
    }

    .class-approach-copy h3 {
        font-size: clamp(36px, 4.9vw, 46px);
    }

    .class-approach-copy p {
        max-width: 100%;
        font-size: 15px;
    }

    .class-approach-icon-card {
        width: 104px;
        height: 104px;
    }

    .class-approach-icon-card svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 640px) {
    :root {
        --classes-page-gutter: min(100%, calc(100% - 36px));
    }

    .classes-page .about-hero-copy h1 {
        white-space: normal;
    }

    .schedule-hero {
        padding-bottom: 84px;
    }

    .classes-approaches {
        padding: 8px 0 72px;
    }

    .schedule-section {
        padding: 8px 0 72px;
    }

    .schedule-section-inner {
        width: min(100%, calc(100% - 36px));
    }

    .schedule-section-heading {
        margin-bottom: 24px;
    }

    .schedule-section-heading h2 {
        font-size: clamp(42px, 11vw, 54px);
    }

    .schedule-direct-link {
        width: 100%;
        min-width: 0;
    }

    .schedule-direct-link-wrap {
        margin-top: 18px;
    }

    .schedule-frame-shell {
        padding: 10px;
        border-radius: 22px;
    }

    .schedule-iframe {
        height: 85vh;
        min-height: 820px;
        border-radius: 16px;
    }

    .join-membership-iframe {
        height: 88vh;
        min-height: 1080px;
    }

    .join-notes-section {
        padding-top: 8px;
        padding-bottom: 72px;
    }

    .join-us-hero h1 {
        white-space: normal;
    }

    .join-notes-card {
        padding: 30px 22px 32px;
        border-radius: 22px;
    }

    .workshops-hero-content h1 {
        font-size: clamp(48px, 14vw, 62px);
    }

    .workshops-hero-description {
        font-size: 17px;
    }

    .workshops-events-section {
        padding: 0 0 72px;
    }

    .workshops-events-heading-shell {
        padding: 58px 0 68px;
    }

    .workshops-events-heading-shell::after {
        width: min(100%, calc(100% - 36px));
    }

    .workshops-events-inner,
    .workshops-hosting-inner {
        width: min(100%, calc(100% - 36px));
    }

    .workshops-hosting-divider {
        margin-bottom: 16px;
    }

    .workshops-hosting-card h2 {
        font-size: clamp(42px, 12vw, 54px);
    }

    .workshops-filter-pills {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 28px;
    }

    .workshops-filter-pill {
        min-height: 42px;
        padding: 0 18px;
        font-size: 11px;
    }

    .workshops-events-list {
        margin-top: 28px;
    }

    .event-card {
        border-radius: 24px;
    }

    .event-card-media {
        min-height: 240px;
    }

    .event-card-content {
        padding: 24px 22px 18px;
    }

    .event-card-content h3 {
        font-size: 34px;
    }

    .event-card-content p:last-child {
        font-size: 14px;
        line-height: 1.72;
    }

    .event-card-details {
        padding: 0 22px 22px;
    }

    .event-card-meta li {
        font-size: 12px;
    }

    .event-card-cta {
        width: 100%;
        justify-content: center;
    }

    .workshops-hosting-card {
        padding: 40px 20px 44px;
        border-radius: 24px;
    }

    .workshops-hosting-card p {
        font-size: 16px;
        line-height: 1.66;
    }

    .join-notes-card h2 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .join-notes-list li {
        padding-left: 22px;
        font-size: 15px;
    }

    .join-notes-list li::before {
        top: 10px;
        width: 8px;
        height: 8px;
    }

    .class-approach-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "number"
            "copy"
            "icon";
        row-gap: 18px;
        column-gap: 16px;
        padding: 26px 0;
    }

    .class-approach-number {
        grid-area: number;
        align-self: center;
        padding-top: 0;
        font-size: 24px;
    }

    .class-approach-copy {
        grid-area: copy;
    }

    .class-approach-copy h3 {
        font-size: 38px;
    }

    .class-approach-copy p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.76;
    }

    .class-approach-icon-card {
        grid-area: icon;
        width: 96px;
        height: 96px;
        margin-left: 0;
    }
}

.about-page {
    background: #fdfaf4;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 232px 0 116px;
    background:
        radial-gradient(circle at 18% 32%, rgba(223, 145, 20, 0.08) 0, rgba(223, 145, 20, 0) 28%),
        radial-gradient(circle at 82% 18%, rgba(33, 70, 163, 0.06) 0, rgba(33, 70, 163, 0) 32%),
        linear-gradient(180deg, #fffdfa 0%, #fdfaf4 100%);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.about-hero::before {
    top: 124px;
    right: clamp(40px, 10vw, 170px);
    width: clamp(180px, 22vw, 320px);
    height: clamp(180px, 22vw, 320px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 72%);
}

.about-hero::after {
    left: 50%;
    bottom: 40px;
    width: min(1280px, calc(100% - 64px));
    height: 1px;
    background: linear-gradient(90deg, rgba(223, 145, 20, 0) 0%, rgba(223, 145, 20, 0.42) 50%, rgba(223, 145, 20, 0) 100%);
    transform: translateX(-50%);
}

.about-hero-inner,
.about-story-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.about-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-story {
    padding: 48px 0 92px;
    background: #fdfaf4;
}

.about-story-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
}

.about-story-copy h2,
.about-location h2 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 400;
    color: var(--primary);
    font-size: clamp(54px, 5vw, 72px);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.about-story-body {
    max-width: 520px;
    margin-top: 34px;
}

.about-story-body p {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.82;
}

.about-story-body p+p {
    margin-top: 24px;
}

.about-story-image-frame,
.about-map-wrap {
    overflow: hidden;
    border: 1px solid rgba(223, 145, 20, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 20px 58px rgba(217, 193, 158, 0.18);
}

.about-story-image-frame {
    aspect-ratio: 1.18;
}

.about-story-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-instructors {
    padding: 12px 0 104px;
    background: #fdfaf4;
}

.about-instructors-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.about-instructors-heading {
    gap: 10px;
    margin-bottom: 52px;
}

.about-instructors-label {
    margin: 0;
}

.about-instructors h2 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 400;
    color: var(--primary);
    font-size: clamp(68px, 6vw, 92px);
    letter-spacing: -0.055em;
    line-height: 0.94;
    text-align: center;
}

.about-instructors-divider {
    margin-top: 2px;
    width: min(232px, 100%);
}

.about-instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.instructor-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: stretch;
    min-height: 272px;
    padding: 16px;
    border: 1px solid rgba(45, 48, 56, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 12px 32px rgba(217, 193, 158, 0.1);
}

.instructor-card-image {
    display: block;
    width: 100%;
    max-width: 170px;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    object-fit: cover;
    background: linear-gradient(180deg, #f6ede0 0%, #ecddc1 100%);
    align-self: center;
}

.instructor-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px 14px 24px;
}

.instructor-card h3 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(30px, 2vw, 38px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.instructor-card p {
    margin: 18px 0 0;
    color: rgba(45, 48, 56, 0.82);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72;
}

.instructor-card .principle-accent {
    margin-top: 18px;
}

.instructor-card-dots {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(0) scale(1);
    transition: transform 340ms ease, box-shadow 340ms ease;
    appearance: none;
    z-index: 1;
}

.instructor-card-dots::before {
    content: "";
    position: absolute;
    inset: -12px;
    pointer-events: none;
}

.instructor-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--primary);
    transition: background-color 340ms ease;
}

.instructor-card-dots span:nth-child(2) {
    transition-delay: 40ms;
}

.instructor-card-dots span:nth-child(3) {
    transition-delay: 80ms;
}

.instructor-card-dots:hover,
.instructor-card-dots:focus-visible {
    transform: translateY(-2px);
}

.instructor-card-dots:hover span,
.instructor-card-dots:focus-visible span {
    background: rgba(33, 70, 163, 0.72);
    animation: instructor-dot-wiggle 700ms ease-in-out infinite;
}

.instructor-card-dots:hover span:nth-child(2),
.instructor-card-dots:focus-visible span:nth-child(2) {
    animation-delay: 70ms;
}

.instructor-card-dots:hover span:nth-child(3),
.instructor-card-dots:focus-visible span:nth-child(3) {
    animation-delay: 140ms;
}

.instructor-card-dots:focus-visible {
    outline: none;
}

.instructor-card-dots:active {
    transform: translateY(0) scale(0.98);
}

@keyframes instructor-dot-wiggle {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-2px);
    }

    65% {
        transform: translateY(1px);
    }
}

body.is-modal-open {
    overflow: hidden;
}

.instructor-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 28px;
}

.instructor-modal[hidden] {
    display: none;
}

.instructor-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 30, 54, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 300ms ease;
}

.instructor-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: min(88vh, 920px);
    overflow: hidden;
    border: 1px solid rgba(223, 145, 20, 0.16);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(249, 241, 226, 0.98) 100%);
    box-shadow: 0 32px 80px rgba(24, 34, 72, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 300ms ease, transform 300ms ease;
}

.instructor-modal.is-visible .instructor-modal-backdrop {
    opacity: 1;
}

.instructor-modal.is-visible .instructor-modal-dialog {
    opacity: 1;
    transform: scale(1);
}

.instructor-modal-close {
    position: absolute;
    top: 18px;
    right: auto;
    inset-inline-end: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(33, 70, 163, 0.12);
    color: var(--primary);
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
    appearance: none;
}

.instructor-modal-close svg {
    width: 18px;
    height: 18px;
}

.instructor-modal-close:hover,
.instructor-modal-close:focus-visible {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(33, 70, 163, 0.18);
    transform: translateY(-1px);
}

.instructor-modal-close:focus-visible {
    outline: 2px solid rgba(33, 70, 163, 0.28);
    outline-offset: 3px;
}

.instructor-modal-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: start;
    max-height: min(88vh, 920px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(33, 70, 163, 0.42) rgba(33, 70, 163, 0.08);
}

.instructor-modal-layout::-webkit-scrollbar {
    width: 12px;
}

.instructor-modal-layout::-webkit-scrollbar-track {
    margin: 18px 0;
    border-radius: 999px;
    background: rgba(33, 70, 163, 0.08);
}

.instructor-modal-layout::-webkit-scrollbar-thumb {
    border: 3px solid transparent;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(33, 70, 163, 0.56) 0%, rgba(223, 145, 20, 0.54) 100%);
    background-clip: padding-box;
}

.instructor-modal-layout::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(33, 70, 163, 0.7) 0%, rgba(223, 145, 20, 0.68) 100%);
    background-clip: padding-box;
}

.instructor-modal-media {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 64px 28px 38px 38px;
}

.instructor-modal-media::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, rgba(223, 145, 20, 0) 0%, rgba(223, 145, 20, 0.3) 16%, rgba(223, 145, 20, 0.3) 84%, rgba(223, 145, 20, 0) 100%);
}

.instructor-modal-image-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 400px);
    margin: 0 auto;
    border-radius: 32px;
    background: linear-gradient(180deg, #f6ede0 0%, #ecddc1 100%);
    box-shadow: 0 24px 52px rgba(217, 193, 158, 0.24);
}

.instructor-modal-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
    pointer-events: none;
}

.instructor-modal-image-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border-radius: 24px;
    pointer-events: none;
}

.instructor-modal-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 0.9 / 1.12;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.03);
}

.instructor-modal-content {
    padding: 52px 56px 50px 24px;
}

.instructor-modal-kicker {
    margin: 0;
    color: rgba(33, 70, 163, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.instructor-modal-content h2 {
    margin: 16px 0 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(54px, 4.8vw, 72px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.94;
}

.instructor-modal-intro,
.instructor-modal-section p,
.instructor-modal-meta-item p,
.instructor-modal-quote {
    color: rgba(45, 48, 56, 0.84);
    font-size: 16px;
    line-height: 1.82;
}

.instructor-modal-intro {
    margin: 20px 0 0;
    max-width: 54ch;
}

.instructor-modal-sections {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.instructor-modal-section,
.instructor-modal-meta,
.instructor-modal-quote {
    position: relative;
    padding-top: 18px;
}

.instructor-modal-section::before,
.instructor-modal-meta::before,
.instructor-modal-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    inset-inline-start: 0;
    width: 72px;
    height: 1px;
}

.instructor-modal-section h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.instructor-modal-section p,
.instructor-modal-meta-item p,
.instructor-modal-quote {
    margin: 0;
}

.instructor-modal-section p+p,
.instructor-modal-section p+ul,
.instructor-modal-section ul+p {
    margin-top: 14px;
}

.instructor-modal-section ul {
    margin: 14px 0 0;
    padding-left: 0;
    padding-inline-start: 22px;
    color: rgba(45, 48, 56, 0.84);
    font-size: 16px;
    line-height: 1.82;
}

.instructor-modal-section li+li {
    margin-top: 6px;
}

.instructor-modal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(223, 145, 20, 0.6);
    text-underline-offset: 3px;
}

.instructor-modal-section a:hover,
.instructor-modal-section a:focus-visible {
    color: rgba(33, 70, 163, 0.78);
}

.instructor-modal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.instructor-modal-meta-item {
    padding: 18px 20px;
    border: 1px solid rgba(33, 70, 163, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.48);
}

.instructor-modal-meta-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(33, 70, 163, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.instructor-modal-quote {
    margin: 0;
    padding-inline-start: 22px;
    border-inline-start: 2px solid rgba(223, 145, 20, 0.44);
    color: rgba(33, 70, 163, 0.9);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(28px, 2.2vw, 34px);
    line-height: 1.24;
}

.instructor-modal[data-instructor="hilit-finkler"] .instructor-modal-quote {
    max-width: 34ch;
    padding: 4px 0 0;
    padding-inline-start: 18px;
    border-inline-start-color: rgba(223, 145, 20, 0.34);
    color: rgba(33, 70, 163, 0.84);
    font-size: clamp(22px, 1.8vw, 26px);
    line-height: 1.38;
}

.about-instructors-cta-wrap {
    margin-top: 42px;
}

.about-instructors-cta {
    min-width: 334px;
    border: 1px solid rgba(33, 70, 163, 0.52);
    background: transparent;
    color: var(--primary);
}

.about-contact {
    padding-top: 12px;
}

.about-contact-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 12px;
}

.about-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 218px;
    padding: 22px 26px 12px;
    text-align: center;
}

.about-contact-card:not(:last-child) {
    border-inline-end: 1px solid rgba(45, 48, 56, 0.12);
}

.about-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.about-contact-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.about-contact-icon:hover,
.about-contact-icon:focus-visible {
    background: rgba(33, 70, 163, 0.88);
    box-shadow: 0 10px 22px rgba(33, 70, 163, 0.16);
    transform: translateY(-1px);
}

.about-contact-icon:focus-visible {
    outline: 2px solid rgba(223, 145, 20, 0.42);
    outline-offset: 4px;
}

.about-contact-card h3 {
    margin: 24px 0 14px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.about-contact-card a:not(.about-contact-icon) {
    color: rgba(45, 48, 56, 0.86);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    overflow-wrap: anywhere;
    transition: color 160ms ease;
}

.about-contact-card a:not(.about-contact-icon):hover {
    color: var(--primary);
}

.contact-page {
    background: #fdfaf4;
}

.contact-hero {
    padding-bottom: 88px;
}

.contact-hero-copy {
    max-width: 680px;
}

.contact-divider {
    width: 136px;
    margin-top: 18px;
}

.contact-divider svg {
    margin: 0 12px;
}

.contact-hero-description {
    max-width: 470px;
    margin: 26px 0 0;
    color: rgba(45, 48, 56, 0.84);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
}

.contact-main {
    padding: 8px 0 30px;
    /* background: linear-gradient(180deg, #fffdfa 0%, #fdfaf4 100%); */
}

.contact-main-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 0;
    align-items: start;
}

.contact-form-panel,
.contact-info-panel {
    min-width: 0;
}

.contact-form-panel {
    padding-inline-end: 56px;
}

.contact-info-panel {
    padding-inline-start: 56px;
    border-inline-start: 1px solid rgba(45, 48, 56, 0.12);
}

html[dir="rtl"] .logo {
    margin-inline-start: calc(var(--logo-align-shift) * -1);
    margin-inline-end: 0;
}

html[dir="rtl"] .header-tools {
    justify-self: end;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-story-copy,
html[dir="rtl"] .contact-form-panel,
html[dir="rtl"] .contact-info-panel,
html[dir="rtl"] .legal-document-body,
html[dir="rtl"] .class-approach-copy {
    text-align: right;
}

html[dir="rtl"] .hero-image::before {
    left: auto;
    right: -2px;
    background:
        radial-gradient(ellipse at right center,
            rgba(253, 250, 244, 0.72) 0%,
            rgba(253, 250, 244, 0.48) 18%,
            rgba(253, 250, 244, 0.24) 38%,
            rgba(253, 250, 244, 0.08) 58%,
            rgba(253, 250, 244, 0) 76%),
        linear-gradient(270deg,
            rgba(253, 250, 244, 1) 0%,
            rgba(253, 250, 244, 0.985) 10%,
            rgba(253, 250, 244, 0.95) 24%,
            rgba(253, 250, 244, 0.84) 40%,
            rgba(253, 250, 244, 0.64) 56%,
            rgba(253, 250, 244, 0.38) 72%,
            rgba(253, 250, 244, 0.16) 88%,
            rgba(253, 250, 244, 0) 100%);
}

@media (max-width: 1100px) {
    html[dir="rtl"] .hero-image::before {
        left: -2px;
        right: 0;
        background: linear-gradient(180deg, var(--background) 0%, rgba(251, 248, 241, 0) 100%);
    }
}

html[dir="rtl"] .hero-cta svg,
html[dir="rtl"] .studio-cta svg,
html[dir="rtl"] .classes-preview-link svg,
html[dir="rtl"] .classes-preview-next svg,
html[dir="rtl"] .classes-preview-arrow svg,
html[dir="rtl"] .workshops-hosting-cta svg,
html[dir="rtl"] .schedule-direct-link svg {
    transform: scaleX(-1);
}

html[dir="rtl"] .classes-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    grid-column: auto;
    justify-self: auto;
    flex-direction: row-reverse;
}

html[dir="rtl"] .classes-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

html[dir="rtl"] .classes-preview-header h2 {
    flex: 1 1 auto;
    text-align: right;
}

html[dir="rtl"] .classes-preview-carousel {
    direction: rtl;
    grid-template-columns: minmax(0, 1fr) 44px;
}

html[dir="rtl"] .classes-preview-grid {
    direction: rtl;
    grid-column: 1;
    grid-row: 1;
}

html[dir="rtl"] .classes-preview-next {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
}

@media (max-width: 767px) {
    html[dir="rtl"] .classes-preview-carousel {
        grid-template-columns: 1fr;
    }

    html[dir="rtl"] .classes-preview-grid,
    html[dir="rtl"] .classes-preview-track {
        grid-auto-columns: 100%;
    }

    html[dir="rtl"] .classes-preview-card:not(:last-child) {
        position: relative;
        border-inline-end: 1px solid rgba(45, 48, 56, 0.12);
    }

    html[dir="rtl"] .classes-preview-card:not(:last-child)::after {
        display: none;
    }

    html[dir="rtl"] .classes-preview-next,
    html[dir="rtl"] .classes-preview-next:hover,
    html[dir="rtl"] .classes-preview-next:focus-visible,
    html[dir="rtl"] .classes-preview-next:active {
        right: -25px;
        left: auto;
        transform: translate(50%, -50%);
    }
}

html[dir="rtl"] .classes-preview-card {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .footer-bottom {
    direction: ltr;
}

html[dir="rtl"] .footer-bottom-contact {
    justify-self: end;
}

html[dir="rtl"] .footer-contact-stack {
    justify-content: flex-end;
}

html[dir="rtl"] .footer-bottom-location {
    justify-self: auto;
}

html[dir="rtl"] .footer-bottom-location p,
html[dir="rtl"] .footer-bottom-est p {
    direction: rtl;
    unicode-bidi: plaintext;
}

.contact-section-title {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(44px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.contact-title-accent {
    display: block;
    margin-top: 18px;
}

.contact-form {
    margin-top: 32px;
    scroll-margin-top: 32px;
}

.contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field {
    transition: transform var(--motion-duration-fast) var(--motion-ease);
}

.contact-field:focus-within {
    transform: translateY(-1px);
}

.contact-input {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(45, 48, 56, 0.12);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: border-color var(--motion-duration-fast) var(--motion-ease), box-shadow var(--motion-duration-fast) var(--motion-ease), background-color var(--motion-duration-fast) var(--motion-ease), transform var(--motion-duration-fast) var(--motion-ease);
}

.contact-input::placeholder {
    color: rgba(45, 48, 56, 0.8);
}

.contact-input:focus {
    border-color: rgba(33, 70, 163, 0.34);
    outline: none;
    background: #ffffff;
    box-shadow: var(--focus-ring);
    transform: translateY(-1px);
}

.contact-textarea {
    min-height: 188px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    border: 0;
    cursor: pointer;
    appearance: none;
}

.contact-info-list {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.contact-info-icon {
    pointer-events: none;
}

.contact-info-copy h3 {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.contact-info-copy a,
.contact-info-copy p {
    margin: 0;
    color: rgba(45, 48, 56, 0.84);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.contact-info-copy a {
    transition: color 160ms ease;
}

.contact-info-copy a:hover {
    color: var(--primary);
}

.contact-info-copy .principle-accent {
    margin-top: 14px;
}

.contact-response-note {
    margin-top: 42px;
    padding: 26px 28px;
    border-radius: 22px;
    background: rgba(94, 118, 199, 0.12);
    text-align: center;
}

.contact-response-mark {
    display: inline-flex;
    color: var(--secondary);
}

.contact-response-mark svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
}

.contact-response-mark svg path {
    fill: var(--secondary);
}

.contact-response-note p {
    margin: 10px 0 0;
    color: rgba(45, 48, 56, 0.84);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.about-location {
    padding-top: 36px;
}

.about-location-inner {
    width: min(1280px, calc(100% - 64px));
}

.about-location-lead {
    margin-top: 18px;
}

.about-map-wrap {
    width: 100%;
    margin-top: 42px;
    aspect-ratio: 2.08;
}

.about-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-location-address {
    margin: 26px 0 0;
    color: rgba(45, 48, 56, 0.82);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.about-location-cta {
    margin-top: 20px;
}

.about-directions-link {
    min-width: 244px;
    border: 1px solid rgba(33, 70, 163, 0.48);
    background: transparent;
    color: var(--primary);
}

.faq-page {
    background: #fdfaf4;
}

.legal-page {
    background: #fdfaf4;
}

.legal-document-section {
    padding: 18px 0 116px;
    background: linear-gradient(180deg, #fdfaf4 0%, #fffdfa 54%, #fdfaf4 100%);
}

.legal-document-shell {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.legal-document {
    max-width: 920px;
}

.legal-document h2 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(54px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.legal-document .principle-accent {
    margin-top: 18px;
}

.legal-document-body {
    margin-top: 34px;
}

.legal-document-body p {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.82;
}

.legal-document-body p+p {
    margin-top: 24px;
}

.faq-hero {
    padding-bottom: 88px;
}

.faq-shell,
.faq-list-inner {
    width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
    margin: 0 auto;
}

.faq-intro {
    padding: 18px 0 36px;
    background: #fdfaf4;
}

.faq-shell {
    display: block;
}

.faq-highlight-card,
.faq-item {
    border: 1px solid rgba(223, 145, 20, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 60px rgba(217, 193, 158, 0.14);
}

.faq-highlight-card {
    padding: 40px clamp(24px, 4vw, 46px) 42px;
}

.faq-highlight-card .eyebrow,
.faq-highlight-card .eyebrow {
    margin-bottom: 18px;
}

.faq-highlight-card h2 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.faq-highlight-card .principle-accent {
    margin-top: 18px;
}

.faq-practice-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.faq-practice-list li {
    position: relative;
    padding-left: 0;
    padding-inline-start: 26px;
    color: rgba(45, 48, 56, 0.86);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

.faq-practice-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: auto;
    inset-inline-start: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(223, 145, 20, 0.82);
    box-shadow: 0 0 0 4px rgba(223, 145, 20, 0.12);
}

.faq-list-section {
    padding: 12px 0 116px;
    background: linear-gradient(180deg, #fdfaf4 0%, #fffdfa 54%, #fdfaf4 100%);
}

.faq-list-heading {
    margin-bottom: 34px;
}

.faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 28px 32px;
    padding-inline-end: 72px;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: auto;
    inset-inline-end: 28px;
    color: var(--secondary);
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item-body {
    padding: 0 32px 30px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(39, 42, 49, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(39, 42, 49, 0.08);
    cursor: pointer;
    appearance: none;
}

.nav-toggle-bar {
    position: absolute;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--motion-duration-fast) var(--motion-ease), opacity var(--motion-duration-fast) ease;
}

.nav-toggle {
    position: relative;
    color: #272a31;
}

.nav-toggle-bar:nth-child(1) {
    transform: translateY(-5px);
}

.nav-toggle-bar:nth-child(3) {
    transform: translateY(5px);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg);
}

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

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg);
}

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

.main-nav .nav-cta-mobile {
    justify-content: center;
    padding: 0 20px;
    color: #ffffff;
}

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

.main-nav .nav-cta-mobile:hover,
.main-nav .nav-cta-mobile:focus-visible,
.main-nav .nav-cta-mobile.active {
    color: #ffffff;
    transform: none;
}

body.is-nav-open,
body.is-modal-open {
    overflow: hidden;
}

html[lang="he"] .workshops-filter-pill,
html[lang="he"] .faq-item summary,
html[lang="he"] .instructor-modal-kicker,
html[lang="he"] .event-card-category {
    letter-spacing: 0;
}

@media (max-width: 1280px) {
    .site-header {
        grid-template-columns: clamp(40px, 4vw, 72px) auto 1fr auto clamp(40px, 4vw, 72px);
    }

    .hero {
        min-height: 760px;
        grid-template-columns: clamp(40px, 4vw, 72px) minmax(500px, 620px) minmax(420px, 1fr);
    }

    .hero-content {
        padding-top: 240px;
    }

    .hero-image,
    .hero {
        min-height: 760px;
    }

    .footer-grid {
        grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(132px, 0.85fr));
        gap: 32px 36px;
    }
}

@media (min-width: 1025px) {
    html[lang="he"] .site-header {
        grid-template-columns: var(--page-shell-gutter) minmax(0, 1fr) auto minmax(0, 1fr) var(--page-shell-gutter);
        column-gap: clamp(16px, 2vw, 34px);
    }

    html[lang="he"] .main-nav {
        min-width: 0;
        gap: clamp(16px, 1.8vw, 28px);
        font-size: 13px;
        justify-self: center;
    }
}

@media (max-width: 1024px) {
    .site-header {
        position: relative;
        left: auto;
        width: 100%;
        grid-template-columns: auto 1fr auto;
        gap: 18px;
        padding: 18px 24px 0;
        transform: none;
    }

    .logo {
        grid-column: 1;
        width: 82px;
        margin-inline-start: 0;
        margin-inline-end: 0;
    }

    .header-tools {
        grid-column: 3;
        justify-self: end;
        gap: 8px;
        margin-top: 0;
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: auto;
        left: auto;
        inset-inline: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border: 1px solid rgba(39, 42, 49, 0.1);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 40px rgba(39, 42, 49, 0.14);
        backdrop-filter: blur(12px);
        overflow: visible;
        z-index: 40;
    }

    .site-header.is-nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        align-self: flex-start;
        padding: 12px 8px;
        font-size: 13px;
        line-height: 1.3;
    }

    .main-nav a::after {
        right: 8px;
        left: 8px;
    }

    .nav-cta-mobile {
        align-self: stretch;
        display: inline-flex;
        width: 100%;
        min-width: 0;
        min-height: 48px;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 56px 24px 0;
    }

    .hero-content {
        grid-column: 1;
        padding-top: 0;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-attribution {
        white-space: normal;
    }

    .hero-image {
        grid-column: 1;
        min-height: clamp(420px, 56vw, 560px);
        margin: 48px -24px 0;
    }

    .hero-image::before {
        top: -1px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 34%;
        background: linear-gradient(180deg, var(--background) 0%, rgba(251, 248, 241, 0) 100%);
    }

    .hero-image::after {
        display: none;
    }

    .principles-inner,
    .classes-preview-inner,
    .studio-showcase-inner,
    .schedule-section-inner,
    .about-hero-inner,
    .about-story-inner,
    .about-instructors-inner,
    .about-contact-inner,
    .contact-main-inner,
    .about-location-inner,
    .legal-document-shell,
    .faq-shell,
    .faq-list-inner,
    .workshops-events-inner,
    .workshops-hosting-inner,
    .site-footer-inner {
        width: 100%;
    }

    .site-footer-inner {
        padding-inline: 24px;
        box-sizing: border-box;
    }

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

    .classes-preview-grid,
    .classes-preview-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .studio-gallery {
        width: min(100%, 960px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 32px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-bottom-est,
    .footer-bottom-contact,
    html[dir="rtl"] .footer-bottom-location {
        justify-self: start;
    }

    .footer-contact-stack,
    html[dir="rtl"] .footer-contact-stack {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .classes-page .about-hero-copy h1,
    .join-us-hero h1 {
        white-space: normal;
    }

    .about-story-inner,
    .contact-main-grid,
    .event-card,
    .about-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-panel {
        padding-inline-end: 0;
    }

    .contact-info-panel {
        padding-inline-start: 0;
        padding-top: 34px;
        border-inline-start: 0;
        border-top: 1px solid rgba(45, 48, 56, 0.12);
    }

    .event-card {
        height: auto;
    }

    .event-card-media {
        min-height: 320px;
        height: 320px;
    }

    .event-card-details {
        gap: 22px;
        padding: 0 28px 28px;
        border-inline-start: 0;
    }

    .class-approach-row {
        grid-template-columns: 58px minmax(0, 1fr) 116px;
        column-gap: 24px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding-inline: 18px;
    }

    .main-nav {
        top: calc(100% + 10px);
        inset-inline: 18px;
        padding: 12px;
        border-radius: 20px;
    }

    .header-tools>.nav-cta {
        display: none;
    }

    .nav-toggle,
    .footer-social a,
    .contact-status-toast__close,
    .instructor-modal-close {
        width: 44px;
        height: 44px;
    }

    .mobile-language-switcher {
        display: grid;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(39, 42, 49, 0.08);
    }

    .mobile-language-switcher__label {
        color: #2054d6;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.2;
        text-transform: none;
    }

    .mobile-language-switcher__select {
        width: 100%;
        min-height: 40px;
        padding: 0 14px;
        border: 1px solid rgba(32, 84, 214, 0.18);
        border-radius: 12px;
        background: #f7f9ff;
        color: #272a31;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
        background-image: linear-gradient(45deg, transparent 50%, #2054d6 50%), linear-gradient(135deg, #2054d6 50%, transparent 50%);
        background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
        background-size: 6px 6px, 6px 6px;
        background-repeat: no-repeat;
    }

    html[dir="rtl"] .mobile-language-switcher__select {
        background-position: 18px calc(50% - 3px), 24px calc(50% - 3px);
    }

    .hero {
        padding: 44px 18px 0;
    }

    h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    #hero-title {
        font-size: clamp(30px, 8.8vw, 40px);
    }

    .hero-description,
    .about-story-body p,
    .legal-document-body p,
    .workshops-hosting-card p,
    .contact-hero-description {
        font-size: 17px;
        line-height: 1.76;
    }

    .hero-image {
        min-height: 390px;
        margin: 42px -18px 0;
    }

    .principles-grid,
    .studio-gallery,
    .about-instructors-grid,
    .footer-grid,
    .contact-form-grid,
    .instructor-modal-meta {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        width: min(100%, 320px);
        margin-inline: auto;
        justify-items: center;
    }

    .site-footer-inner,
    .footer-nav,
    .footer-bottom {
        text-align: center;
    }

    .footer-brand,
    .footer-description {
        margin-inline: auto;
    }

    .footer-social,
    .footer-nav,
    .footer-contact-line {
        justify-content: center;
    }

    .footer-nav,
    .footer-bottom,
    .footer-contact-stack,
    html[dir="rtl"] .footer-contact-stack {
        align-items: center;
    }

    .footer-nav h2::after {
        margin-inline: auto;
    }

    .footer-bottom {
        justify-items: center;
    }

    .footer-bottom-item {
        width: 100%;
        justify-self: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-location {
        order: 1;
    }

    .footer-bottom-contact {
        order: 2;
    }

    .footer-bottom-location,
    .footer-bottom-est,
    .footer-bottom-contact,
    html[dir="rtl"] .footer-bottom-location,
    html[dir="rtl"] .footer-bottom-contact {
        justify-self: center;
    }

    .footer-bottom-est {
        order: 3;
    }

    .footer-contact-stack,
    html[dir="rtl"] .footer-contact-stack {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-contact-line,
    .footer-bottom-item p,
    .footer-bottom-item a {
        text-align: center;
    }

    .classes-preview-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    html[dir="rtl"] .classes-preview-header {
        align-items: stretch;
    }

    .classes-preview-link {
        display: inline-flex;
    }

    .classes-preview-grid,
    .classes-preview-track {
        grid-auto-columns: 100%;
        gap: 20px;
    }

    .classes-preview-carousel {
        position: relative;
        grid-template-columns: 1fr;
    }

    .classes-preview-next {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 25px;
        width: 40px;
        height: 40px;
        transform: translate(50%, -50%);
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    .classes-preview-next:hover,
    .classes-preview-next:focus-visible,
    .classes-preview-next:active {
        transform: translate(50%, -50%);
    }

    .classes-preview-arrow {
        width: 32px;
        height: 32px;
        justify-content: center;
        flex: 0 0 auto;
    }

    .studio-gallery {
        width: min(100%, 420px);
    }

    .class-approach-row {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .class-approach-icon-card {
        margin-inline-start: 0;
    }

    .instructor-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 12px;
    }

    .instructor-card-image {
        max-width: none;
    }

    .instructor-card-body {
        justify-content: flex-start;
        padding: 18px 8px 10px;
    }

    .instructor-card-dots::before {
        inset: -16px;
    }

    .instructor-modal {
        padding: 16px;
    }

    .instructor-modal-dialog {
        max-height: calc(100vh - 32px);
        border-radius: 26px;
    }

    .instructor-modal-layout {
        grid-template-columns: 1fr;
    }

    .instructor-modal-media {
        padding: 20px 20px 0;
    }

    .instructor-modal-media::after,
    .instructor-modal-image-frame::before,
    .instructor-modal-image-frame::after {
        display: none;
    }

    .instructor-modal-content {
        padding: 26px 20px 28px;
    }

    .instructor-modal-close {
        top: 12px;
        inset-inline-end: 12px;
    }

    .contact-main,
    .faq-list-section,
    .classes-approaches,
    .schedule-section,
    .workshops-events-section,
    .join-notes-section,
    .about-instructors,
    .about-story,
    .site-footer,
    .legal-document-section {
        padding-bottom: 72px;
    }

    .about-map-wrap {
        aspect-ratio: 1.18;
    }

    .contact-info-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .contact-input {
        padding: 16px 18px;
    }

    .contact-status-toast {
        top: 16px;
        inset-inline: 16px;
        width: auto;
        padding: 16px;
    }

    .event-card {
        border-radius: 24px;
    }

    .event-card-media {
        min-height: 240px;
        height: 240px;
    }

    .workshops-filter-pills {
        justify-content: flex-start;
        gap: 10px;
    }

    .faq-item summary {
        padding: 22px 20px;
        padding-inline-end: 54px;
        font-size: 30px;
    }

    .faq-item summary::after {
        inset-inline-end: 20px;
    }

    .faq-item-body {
        padding: 0 20px 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta,
    .studio-cta,
    .about-instructors-cta,
    .about-directions-link,
    .schedule-direct-link,
    .event-card-cta {
        width: 100%;
        min-width: 0;
    }

    .classes-preview-grid,
    .classes-preview-track {
        grid-auto-columns: 100%;
    }

    .contact-info-item {
        grid-template-columns: 1fr;
    }

    .contact-info-copy h3,
    .about-contact-card h3 {
        margin-top: 10px;
    }

    .event-card-media {
        min-height: 220px;
        height: 220px;
    }

    .schedule-iframe {
        min-height: 720px;
    }

    .join-membership-iframe {
        min-height: 980px;
    }
}

.faq-item-body p {
    max-width: 760px;
    margin: 0;
    color: rgba(45, 48, 56, 0.86);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.86;
}

@media (max-width: 980px) {
    .about-hero {
        padding: 72px 0 84px;
    }

    .about-hero::after,
    .about-hero-inner,
    .about-story-inner,
    .about-contact-inner,
    .legal-document-shell,
    .faq-shell,
    .faq-list-inner {
        width: min(100%, calc(100% - 48px));
    }

    .faq-hero {
        padding-bottom: 72px;
    }

    .faq-intro {
        padding-top: 12px;
    }

    .legal-document-section {
        padding-top: 12px;
        padding-bottom: 88px;
    }

    .about-story {
        padding: 34px 0 78px;
    }

    .about-instructors {
        padding: 6px 0 88px;
    }

    .about-instructors-inner {
        width: min(100%, calc(100% - 48px));
    }

    .about-instructors h2 {
        font-size: clamp(60px, 9vw, 82px);
    }

    .about-instructors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .instructor-card {
        min-height: 248px;
        grid-template-columns: 154px minmax(0, 1fr);
    }

    .instructor-card-image {
        max-width: 154px;
    }

    .instructor-card-body {
        padding-left: 18px;
    }

    .instructor-card p {
        font-size: 15px;
    }

    .instructor-modal-dialog {
        width: min(940px, 100%);
    }

    .instructor-modal-layout {
        grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
    }

    .instructor-modal-content {
        padding: 48px 42px 44px 14px;
    }

    .instructor-modal-content h2 {
        font-size: clamp(48px, 6vw, 64px);
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-story-body {
        max-width: 100%;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-hero {
        padding-bottom: 72px;
    }

    .contact-main-inner {
        width: min(100%, calc(100% - 48px));
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-form-panel {
        padding-right: 0;
    }

    .contact-info-panel {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(45, 48, 56, 0.12);
        padding-top: 34px;
    }

    .contact-info-list {
        gap: 24px;
    }

    .about-contact-card {
        min-height: auto;
        padding: 8px 0 18px;
    }

    .about-contact-card:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(45, 48, 56, 0.12);
    }

    .about-location {
        padding-top: 20px;
    }

    .about-location-inner {
        width: min(100%, calc(100% - 48px));
    }

    .about-map-wrap {
        margin-top: 36px;
        aspect-ratio: 1.7;
    }

    .about-location-address {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 58px 0 68px;
    }

    .about-hero::after,
    .about-hero-inner,
    .about-story-inner,
    .about-contact-inner,
    .contact-main-inner,
    .about-location-inner,
    .legal-document-shell,
    .faq-shell,
    .faq-list-inner {
        width: 100%;
        padding-inline: 18px;
        box-sizing: border-box;
    }

    .faq-hero {
        padding-bottom: 58px;
    }

    .faq-intro {
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .legal-document-section {
        padding-top: 8px;
        padding-bottom: 72px;
    }

    .legal-document h2 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .legal-document-body p {
        font-size: 15px;
        line-height: 1.76;
    }

    .faq-highlight-card,
    .faq-side-note,
    .faq-item {
        border-radius: 22px;
    }

    .faq-highlight-card {
        padding: 30px 22px 32px;
    }

    .faq-highlight-card h2 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .faq-practice-list {
        margin-top: 26px;
        gap: 16px;
    }

    .faq-practice-list li {
        padding-left: 22px;
        font-size: 15px;
    }

    .faq-practice-list li::before {
        top: 10px;
        width: 8px;
        height: 8px;
    }

    .faq-list-section {
        padding: 8px 0 72px;
    }

    .faq-list-heading {
        margin-bottom: 24px;
    }

    .faq-item summary {
        padding: 22px 54px 22px 20px;
        font-size: 30px;
    }

    .faq-item summary::after {
        right: 20px;
        font-size: 24px;
    }

    .faq-item-body {
        padding: 0 20px 24px;
    }

    .faq-item-body p {
        font-size: 15px;
        line-height: 1.76;
    }

    .contact-hero {
        padding-bottom: 58px;
    }

    .contact-hero-description {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.76;
    }

    .contact-main {
        padding-bottom: 18px;
    }

    .contact-section-title {
        font-size: clamp(38px, 12vw, 50px);
    }

    .contact-form {
        margin-top: 28px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contact-input {
        padding: 16px 18px;
        border-radius: 14px;
    }

    .contact-textarea {
        min-height: 170px;
    }

    .contact-info-panel {
        padding-top: 28px;
    }

    .contact-info-item {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-info-copy h3 {
        margin-top: 4px;
        font-size: 22px;
    }

    .contact-info-copy a,
    .contact-info-copy p,
    .contact-response-note p {
        font-size: 15px;
    }

    .contact-response-note {
        margin-top: 32px;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .contact-status-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 16px;
    }

    .about-story {
        padding: 24px 0 56px;
    }

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

    .about-instructors-inner {
        width: min(100%, calc(100% - 36px));
    }

    .about-instructors-heading {
        margin-bottom: 34px;
    }

    .about-instructors h2 {
        font-size: clamp(48px, 15vw, 64px);
    }

    .about-instructors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .instructor-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 12px;
    }

    .instructor-card-image {
        max-width: none;
        min-height: 0;
    }

    .instructor-card-body {
        justify-content: flex-start;
        padding: 18px 8px 10px;
    }

    .instructor-card h3 {
        font-size: 34px;
    }

    .instructor-card p {
        margin-top: 14px;
        font-size: 15px;
    }

    .instructor-modal {
        padding: 18px;
    }

    .instructor-modal-dialog {
        max-height: 92vh;
        border-radius: 28px;
    }

    .instructor-modal-layout {
        grid-template-columns: 1fr;
    }

    .instructor-modal-media {
        padding: 20px 20px 0;
    }

    .instructor-modal-media::after {
        display: none;
    }

    .instructor-modal-content {
        padding: 26px 22px 28px;
    }

    .instructor-modal-image-frame {
        position: relative;
        top: auto;
        width: min(100%, 440px);
        border-radius: 28px;
        box-shadow: 0 14px 28px rgba(217, 193, 158, 0.14);
    }

    .instructor-modal-image-frame::before,
    .instructor-modal-image-frame::after {
        display: none;
    }

    .instructor-modal-content h2 {
        font-size: clamp(42px, 13vw, 56px);
    }

    .instructor-modal-meta {
        grid-template-columns: 1fr;
    }

    .instructor-modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .about-instructors-cta-wrap {
        margin-top: 30px;
    }

    .about-instructors-cta {
        min-width: 100%;
        max-width: 420px;
    }

    .about-story-copy h2,
    .about-location h2 {
        font-size: clamp(46px, 14vw, 60px);
    }

    .about-story-body {
        margin-top: 26px;
    }

    .about-story-body p {
        font-size: 17px;
        line-height: 1.76;
    }

    .about-story-body p+p {
        margin-top: 18px;
    }

    .about-story-image-frame,
    .about-map-wrap {
        border-radius: 22px;
    }

    .about-contact-card h3 {
        margin-top: 18px;
        font-size: 22px;
    }

    .about-contact-card a {
        font-size: 16px;
    }

    .about-location {
        padding-top: 10px;
    }

    .about-map-wrap {
        margin-top: 30px;
        aspect-ratio: 1.18;
    }

    .about-location-address {
        margin-top: 22px;
        font-size: 24px;
    }

    .about-location-cta {
        margin-top: 14px;
    }

    .about-directions-link {
        min-width: 196px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.workshops-events-loading {
    opacity: 0.82;
}

.admin-auth-page,
.admin-dashboard-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(223, 145, 20, 0.12) 0%, rgba(223, 145, 20, 0) 24%),
        linear-gradient(180deg, #fffdfa 0%, #fdfaf4 100%);
}

.admin-site-header {
    position: relative;
    padding-top: 24px;
}

.admin-dashboard-shell {
    width: calc(100% - ((clamp(72px, 8vw, 160px) * 2) - var(--logo-align-shift)));
    max-width: 1450px;
    margin: 0 auto 0 calc(clamp(72px, 8vw, 160px) - var(--logo-align-shift));
    padding: 26px 0 56px;
}

.admin-auth-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
}

.admin-auth-card,
.admin-panel-card,
.admin-sidebar,
.admin-dialog-card {
    border: 1px solid rgba(33, 70, 163, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(33, 70, 163, 0.04);
    backdrop-filter: blur(10px);
}

.admin-auth-card {
    width: min(100%, 520px);
    padding: 40px 36px;
}

.admin-auth-card h1,
.admin-panel-heading h2,
.admin-panel-heading h1,
.admin-dialog-card h2,
.admin-event-shell-title h3 {
    margin: 0;
    color: var(--primary);
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.admin-auth-copy,
.admin-sidebar-brand p,
.admin-panel-heading p,
.admin-field-help,
.admin-field-note,
.admin-event-shell-title p,
.admin-dialog-card p,
.admin-signout-link,
.admin-sidebar-value {
    color: rgba(45, 48, 56, 0.72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
}

.admin-auth-copy {
    margin: 18px 0 0;
}

.admin-auth-form,
.admin-event-form {
    margin-top: 24px;
}

.admin-auth-form .admin-primary-button {
    width: 100%;
    justify-content: center;
}

.admin-dashboard-loading {
    display: grid;
    min-height: 60vh;
    place-items: center;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.admin-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 16px;
    padding: 0;
    padding-left: var(--logo-align-shift);
    align-content: start;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.admin-sidebar-brand .eyebrow,
.admin-panel-heading .eyebrow {
    margin: 0;
    font-size: 9px;
    letter-spacing: 0.16em;
}

.admin-sidebar-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.admin-user-avatar {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(33, 70, 163, 0.14);
    border-radius: 50%;
    color: rgba(33, 70, 163, 0.7);
    background: rgba(255, 255, 255, 0.42);
}

.admin-user-avatar svg {
    width: 18px;
    height: 18px;
}

.admin-sidebar-card p,
.admin-panel-heading p,
.admin-event-shell-title p {
    margin: 0;
}

.admin-sidebar-label,
.admin-field>span,
.admin-fieldset legend,
.admin-toggle-field>span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-sidebar-value {
    margin: 2px 0 0;
    color: rgba(45, 48, 56, 0.84);
    word-break: break-word;
}

.admin-signout-link {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.admin-main-panel {
    display: grid;
    gap: 16px;
}

.admin-main-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

.admin-editor-surface,
.admin-preview-surface,
.admin-existing-surface {
    min-width: 0;
}

.admin-preview-surface,
.admin-existing-surface {
    padding-top: 28px;
    border-top: 1px solid rgba(33, 70, 163, 0.1);
}

.admin-panel-card {
    padding: 28px 28px 26px;
}

.admin-panel-card-form {
    min-width: 0;
}

.admin-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-panel-heading-form {
    margin-bottom: 8px;
}

.admin-heading-accent {
    display: inline-block;
    width: 36px;
    height: 2px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(223, 145, 20, 0.75);
}

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

.admin-field,
.admin-toggle-field,
.admin-fieldset {
    display: grid;
    gap: 7px;
}

.admin-field-wide {
    grid-column: 1 / -1;
}

.admin-field-note,
.admin-field-help {
    margin: 0;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;
    border: 1px solid rgba(33, 70, 163, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font: inherit;
    font-size: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.admin-field input::placeholder,
.admin-field textarea::placeholder {
    color: rgba(45, 48, 56, 0.38);
}

.admin-field textarea {
    min-height: 112px;
    resize: vertical;
}

.admin-field input:focus-visible,
.admin-field textarea:focus-visible,
.admin-field select:focus-visible,
.admin-check-card:focus-within,
.admin-dialog:focus-visible {
    outline: none;
    border-color: rgba(33, 70, 163, 0.24);
    box-shadow: 0 0 0 4px rgba(33, 70, 163, 0.08);
}

.admin-inline-status {
    padding: 12px 14px;
    border: 1px solid rgba(33, 70, 163, 0.08);
    border-radius: 14px;
    background: rgba(33, 70, 163, 0.05);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.admin-inline-status[data-tone="error"] {
    background: rgba(176, 47, 47, 0.08);
    color: #8c1f1f;
}

.admin-inline-status[data-tone="success"] {
    background: rgba(36, 122, 74, 0.08);
    color: #1f6b42;
}

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

.admin-check-card {
    display: grid;
    grid-template-columns: 16px 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
    border: 1px solid rgba(33, 70, 163, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition:
        border-color var(--motion-duration-fast) var(--motion-ease),
        background-color var(--motion-duration-fast) var(--motion-ease),
        box-shadow var(--motion-duration-fast) var(--motion-ease),
        opacity var(--motion-duration-fast) ease;
}

.admin-check-card[data-selected="true"] {
    border-color: rgba(33, 70, 163, 0.26);
    background: rgba(33, 70, 163, 0.05);
    box-shadow: 0 10px 24px rgba(33, 70, 163, 0.06);
}

.admin-check-card[data-disabled="true"] {
    opacity: 0.58;
    cursor: not-allowed;
}

.admin-check-card input {
    width: 14px;
    height: 14px;
    margin: 0;
}

.admin-check-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #f2f3f8 0%, #e7e8f0 100%);
    color: rgba(33, 70, 163, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    overflow: hidden;
}

.admin-check-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-check-name {
    min-width: 0;
    color: rgba(45, 48, 56, 0.88);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.admin-toggle-field {
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    min-height: 42px;
    padding: 11px 14px;
    border: 1px solid rgba(33, 70, 163, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
}

.admin-toggle-field input {
    width: 14px;
    height: 14px;
    margin: 0;
}

.admin-toggle-field .admin-field-note {
    margin-left: auto;
    text-align: right;
}

.admin-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.admin-form-actions,
.admin-event-shell-actions,
.admin-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-form-actions {
    margin-top: 20px;
    flex-direction: column;
}

.admin-form-actions .admin-primary-button,
.admin-form-actions .admin-secondary-button {
    width: 100%;
    font-family: "Space Grotesk", Arial, sans-serif;
}

.admin-primary-button,
.admin-secondary-button,
.admin-danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font: inherit;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-primary-button {
    border: 0;
    box-shadow: none;
}

.admin-secondary-button,
.admin-danger-button {
    border: 1px solid rgba(33, 70, 163, 0.14);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    cursor: pointer;
}

.admin-danger-button {
    border-color: rgba(176, 47, 47, 0.16);
    color: #8c1f1f;
}

.admin-secondary-button:hover,
.admin-secondary-button:focus-visible,
.admin-danger-button:hover,
.admin-danger-button:focus-visible,
.admin-signout-link:hover,
.admin-signout-link:focus-visible {
    transform: translateY(-1px);
}

.admin-preview-heading,
.admin-existing-heading {
    margin-bottom: 14px;
}

.admin-preview-heading h2,
.admin-existing-heading h2 {
    font-size: clamp(30px, 3.2vw, 40px);
}

.admin-event-preview {
    display: grid;
}

.admin-events-list {
    display: grid;
    gap: 28px;
}

.admin-events-empty-state {
    display: grid;
    min-height: 118px;
    margin: 0;
    place-items: center;
    border: 1px dashed rgba(33, 70, 163, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(45, 48, 56, 0.6);
    font-size: 11px;
}

.admin-event-shell {
    display: grid;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(33, 70, 163, 0.1);
}

.admin-event-shell:first-child {
    padding-top: 0;
    border-top: 0;
}

.admin-event-shell-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-event-shell-title h3 {
    font-size: 24px;
    line-height: 1;
}

.admin-event-shell-title p {
    margin-top: 4px;
    font-size: 11px;
}

.admin-event-shell-actions {
    align-items: center;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-status-badge.is-published {
    background: rgba(36, 122, 74, 0.1);
    color: #1f6b42;
}

.admin-status-badge.is-unpublished {
    background: rgba(223, 145, 20, 0.12);
    color: #8a5c11;
}

.admin-dialog {
    width: min(100%, 520px);
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-dialog::backdrop {
    background: rgba(24, 31, 53, 0.28);
    backdrop-filter: blur(6px);
}

.admin-dialog-card {
    padding: 28px;
}

.admin-dialog-card p {
    margin: 14px 0 0;
}

.admin-dialog-actions {
    margin-top: 22px;
    justify-content: flex-end;
}

@media (max-width: 1180px) {
    .admin-dashboard-shell {
        width: calc(100% - (clamp(72px, 8vw, 160px) * 2));
        max-width: 1400px;
        margin: 0 auto;
    }

    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        padding-left: 0;
    }
}

@media (max-width: 760px) {

    .admin-dashboard-shell,
    .admin-auth-shell {
        width: min(100%, calc(100% - 24px));
        max-width: none;
        padding: 18px 0 36px;
    }

    .admin-dashboard {
        gap: 18px;
    }

    .admin-auth-card,
    .admin-panel-card,
    .admin-sidebar,
    .admin-dialog-card {
        padding: 20px;
        border-radius: 22px;
    }

    .admin-sidebar {
        padding: 0;
        padding-left: 0;
        border-radius: 0;
    }

    .admin-form-grid,
    .admin-check-grid {
        grid-template-columns: 1fr;
    }

    .admin-toggle-field {
        grid-template-columns: auto 1fr;
    }

    .admin-toggle-field .admin-field-note {
        grid-column: 1 / -1;
        margin-left: 0;
        text-align: left;
    }

    .admin-event-shell-actions,
    .admin-form-actions,
    .admin-dialog-actions {
        width: 100%;
    }

    .admin-event-shell-header {
        display: grid;
    }

    .admin-primary-button,
    .admin-secondary-button,
    .admin-danger-button {
        width: 100%;
    }
}

.principles-inner,
.classes-preview-inner,
.studio-showcase-inner,
.classes-approaches-inner,
.schedule-section-inner,
.about-hero-inner,
.about-story-inner,
.about-instructors-inner,
.about-contact-inner,
.contact-main-inner,
.about-location-inner,
.legal-document-shell,
.faq-shell,
.faq-list-inner,
.workshops-events-inner,
.workshops-hosting-inner {
    padding-inline: var(--page-safe-gutter);
}

.classes-page .about-hero-copy h1,
.join-us-hero h1 {
    white-space: normal;
}

@media (max-width: 1024px) {
    html[dir="rtl"] .logo {
        margin-inline-start: 0;
    }
}
