/**
 * Sattva Yoga Center — Main Stylesheet
 *
 * Complete CSS for the yoga center WordPress theme.
 * Mobile-first, breakpoints at 768px and 1024px.
 *
 * Table of Contents:
 *  1. Reset & Base
 *  2. Typography
 *  3. Layout
 *  4. Navigation
 *  5. Buttons
 *  6. Hero
 *  7. How It Works (Steps)
 *  8. Session Cards (Grid + List)
 *  9. Tier Badge
 * 10. Type Badge
 * 11. Spots Indicator
 * 12. Locked Overlay
 * 13. Filter Bar
 * 14. Registration Panel
 * 15. Tier Progress
 * 16. Single Session
 * 17. Location Cards
 * 18. Instructor Cards
 * 19. Dashboard
 * 20. Auth Forms
 * 21. FAQ Accordion
 * 22. Modal
 * 23. Video Section
 * 24. CTA Banner
 * 25. Footer
 * 26. Animations
 * 27. Utilities
 * 28. Responsive — 768px
 * 29. Responsive — 1024px
 *
 * @package Yoga_Theme
 */

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FAF8F5;
    color: #2C3E2D;
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: rgba(196, 149, 106, 0.2);
    color: #2C3E2D;
}

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

a {
    color: #C4956A;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2C3E2D;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 16px;
    color: #5A5A5A;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    padding: 0;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #2C3E2D;
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
}

h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    font-weight: 500;
}

h6 {
    font-size: 14px;
    font-weight: 500;
}

.y-sans {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.y-section-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 12px;
    display: block;
}

.y-body-text {
    color: #5A5A5A;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.y-meta-text {
    color: #9B9B9B;
    font-size: 13px;
    font-weight: 400;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.yoga-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.y-section {
    padding: 60px 20px;
}

.y-section.y-section--alt {
    background-color: #F0EDE8;
}

.y-section.y-section--dark {
    background-color: #2C3E2D;
    color: #FFFFFF;
}

.y-section.y-section--dark h2,
.y-section.y-section--dark h3,
.y-section.y-section--dark h4 {
    color: #FFFFFF;
}

.y-section.y-section--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.y-section.y-section--dark .y-section-label {
    color: #C4956A;
}

.y-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.y-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.y-grid--2 {
    grid-template-columns: 1fr;
}

.y-grid--3 {
    grid-template-columns: 1fr;
}

.y-grid--4 {
    grid-template-columns: 1fr;
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

.y-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 20px;
    transition: all 0.4s ease;
    background: transparent;
}

.y-nav.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
}

.y-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.y-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 102;
}

.y-logo img {
    max-height: 40px;
    width: auto;
}

.y-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #2C3E2D;
    transition: color 0.3s ease;
}

.y-logo:hover .y-logo-text {
    color: #C4956A;
}

/* Mobile hamburger */
.y-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    gap: 5px;
    z-index: 102;
    cursor: pointer;
}

.y-nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #2C3E2D;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.y-nav-toggle[aria-expanded="true"] .y-nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.y-nav-toggle[aria-expanded="true"] .y-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.y-nav-toggle[aria-expanded="true"] .y-nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav menu */
.y-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.y-nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.y-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.y-nav-links .menu-item {
    list-style: none;
}

.y-nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #5A5A5A;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.y-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C4956A;
    transition: width 0.3s ease;
}

.y-nav-link:hover,
.y-nav-link:focus,
.current-menu-item .y-nav-link {
    color: #2C3E2D;
}

.y-nav-link:hover::after,
.current-menu-item .y-nav-link::after {
    width: 100%;
}

.y-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.y-nav-link--account,
.y-nav-link--logout,
.y-nav-link--login {
    font-size: 12px;
}

.y-nav-cta {
    display: inline-block;
}

/* Body offset for fixed nav */
body {
    padding-top: 70px;
}

/* WP Admin bar offset */
.admin-bar .y-nav {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .y-nav {
        top: 46px;
    }
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.y-btn {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: #C4956A;
    color: #FFFFFF;
    padding: 12px 28px;
    border: 2px solid #C4956A;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
}

.y-btn:hover,
.y-btn:focus {
    background-color: #2C3E2D;
    border-color: #2C3E2D;
    color: #FFFFFF;
}

.y-btn--primary {
    background-color: #C4956A;
    border-color: #C4956A;
    color: #FFFFFF;
}

.y-btn--primary:hover {
    background-color: #2C3E2D;
    border-color: #2C3E2D;
}

.y-btn--outline {
    background-color: transparent;
    color: #2C3E2D;
    border: 2px solid #2C3E2D;
}

.y-btn--outline:hover,
.y-btn--outline:focus {
    background-color: #2C3E2D;
    color: #FFFFFF;
}

.y-btn--outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.y-btn--outline-white:hover,
.y-btn--outline-white:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #2C3E2D;
}

.y-btn--small {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.2px;
}

.y-btn--large {
    padding: 16px 36px;
    font-size: 12px;
}

.y-btn--full {
    display: block;
    width: 100%;
}

.y-btn--success {
    background-color: #5A8C5A;
    border-color: #5A8C5A;
}

.y-btn--success:hover {
    background-color: #4a7a4a;
    border-color: #4a7a4a;
}

.y-btn--warning {
    background-color: #D4A843;
    border-color: #D4A843;
}

.y-btn--warning:hover {
    background-color: #c09630;
    border-color: #c09630;
}

.y-btn:disabled,
.y-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.y-btn.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.y-btn.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.y-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.y-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
}

.y-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.y-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.y-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 62, 45, 0.4) 0%,
        rgba(44, 62, 45, 0.6) 100%
    );
    z-index: 1;
}

.y-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    padding: 0 24px;
}

.y-hero-content h1 {
    color: #FFFFFF;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 20px;
}

.y-hero-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.y-hero-content .y-section-label {
    color: rgba(255, 255, 255, 0.6);
}

.y-hero .y-btn-group {
    justify-content: center;
}

/* Hero variant — shorter for inner pages */
.y-hero--inner {
    min-height: 50vh;
}

.y-hero--inner .y-hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(44, 62, 45, 0.5) 0%,
        rgba(44, 62, 45, 0.7) 100%
    );
}

/* ==========================================================================
   7. How It Works (Steps)
   ========================================================================== */

.y-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.y-step {
    padding: 0 12px;
}

.y-step-number {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #E5E0D8;
    line-height: 1;
    margin-bottom: 16px;
}

.y-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.y-step p {
    font-size: 14px;
    color: #9B9B9B;
    line-height: 1.7;
}

/* ==========================================================================
   8. Session Cards (Grid + List)
   ========================================================================== */

.y-sessions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    min-height: 200px;
}

.y-sessions-grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.y-sessions-grid.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #E5E0D8;
    border-top-color: #C4956A;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    z-index: 5;
}

.y-sessions-empty {
    text-align: center;
    padding: 80px 24px;
    color: #9B9B9B;
}

.y-sessions-empty h3 {
    color: #5A5A5A;
    margin-bottom: 8px;
}

.y-sessions-empty p {
    font-size: 15px;
    margin-bottom: 24px;
}

/* Card */
.y-card {
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #E5E0D8;
    box-shadow: 0 2px 8px rgba(44, 62, 45, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    position: relative;
}

.y-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44, 62, 45, 0.08);
    border-color: transparent;
}

.y-card a {
    text-decoration: none;
    color: inherit;
}

.y-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card image */
.y-card-img,
.y-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.y-card-img img,
.y-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.y-card:hover .y-card-img img,
.y-card:hover .y-card__img img {
    transform: scale(1.04);
}

/* Card placeholder (no image) */
.y-card__placeholder,
.y-card-img--placeholder {
    background: #F0EDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    max-height: 160px;
}

.y-card__placeholder svg,
.y-card-img--placeholder svg {
    width: 24px;
    height: 24px;
    opacity: 0.4;
}

/* Card badges overlay */
.y-card-badges,
.y-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.y-card__badges-left {
    display: flex;
    gap: 6px;
}

.y-card__badges-right {
    display: flex;
    gap: 6px;
}

.y-card__spots-warning {
    background: rgba(212, 168, 67, 0.9);
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 2px;
}

.y-card-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.y-card-spots-warning {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(212, 168, 67, 0.9);
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 3;
}

/* Card body */
.y-card-body,
.y-card__body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.y-card-category {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
    margin-bottom: 6px;
}

.y-card-title,
.y-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C3E2D;
    margin-bottom: 10px;
    line-height: 1.3;
}

.y-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

/* BEM meta lines used in session-card.php */
.y-card__meta {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #5A5A5A;
    margin: 0 0 6px;
    line-height: 1.5;
}

.y-card__meta-sep {
    color: #E5E0D8;
    margin: 0 4px;
}

.y-card__meta--category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
}

.y-card__meta--datetime {
    color: #2C3E2D;
    font-weight: 600;
    font-size: 13px;
}

.y-card__meta--details {
    color: #9B9B9B;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 12px;
}

.y-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #5A5A5A;
}

.y-card-meta-item svg {
    flex-shrink: 0;
    color: #9B9B9B;
}

.y-card-meta-item--date {
    color: #2C3E2D;
    font-weight: 600;
}

.y-card-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.y-card-instructor-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.y-card-instructor-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #5A5A5A;
}

/* Card bottom: price + spots on same line */
.y-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #F0EDE8;
}

.y-card__price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #C4956A;
    white-space: nowrap;
}

.y-card__spots {
    flex: 0 0 auto;
    min-width: 100px;
    text-align: right;
}

.y-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F0EDE8;
}

.y-card-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #C4956A;
}

.y-card-price--free {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5A8C5A;
}

.y-card-difficulty {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #9B9B9B;
    background: #F0EDE8;
    padding: 4px 10px;
    border-radius: 2px;
}

/* Card locked overlay (BEM variant) */
.y-card__locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 24px;
    text-align: center;
}

.y-card__locked-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.y-card__locked-content svg {
    color: #9B9B9B;
}

.y-card__locked-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #9B9B9B;
    margin: 0;
    line-height: 1.5;
}

/* List view card */
.y-sessions-grid--list {
    grid-template-columns: 1fr;
}

.y-sessions-grid--list .y-card {
    display: flex;
    flex-direction: column;
}

.y-card--list {
    display: flex;
    flex-direction: column;
}

.y-card--list .y-card-img {
    aspect-ratio: 16 / 10;
}

/* ==========================================================================
   9. Tier Badge
   ========================================================================== */

.y-tier-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1.4;
    white-space: nowrap;
}

.y-tier-badge--small {
    padding: 2px 8px;
    font-size: 9px;
}

.y-tier-badge--1,
.y-tier-badge--tier-1 {
    background-color: #7A8B69;
}

.y-tier-badge--2,
.y-tier-badge--tier-2 {
    background-color: #C4956A;
}

.y-tier-badge--3,
.y-tier-badge--tier-3 {
    background-color: #8B6B5A;
}

.y-tier-badge--4,
.y-tier-badge--tier-4 {
    background-color: #2C3E2D;
}

/* Fallback: use CSS custom property if set */
.y-tier-badge[style*="--tier-color"] {
    background-color: var(--tier-color);
}

/* ==========================================================================
   10. Type Badge
   ========================================================================== */

.y-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 1.4;
    white-space: nowrap;
}

.y-type-badge--group {
    background-color: rgba(44, 62, 45, 0.08);
    color: #2C3E2D;
}

.y-type-badge--individual {
    background-color: #2C3E2D;
    color: #FFFFFF;
}

/* ==========================================================================
   11. Spots Indicator
   ========================================================================== */

.y-spots {
    width: 100%;
}

.y-spots-text,
.y-spots__text {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #9B9B9B;
    margin-bottom: 4px;
    white-space: nowrap;
}

.y-spots-bar,
.y-spots__bar {
    height: 3px;
    background-color: #E5E0D8;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
    width: 100%;
}

.y-spots-fill,
.y-spots__bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.y-spots-fill--available {
    background-color: #5A8C5A;
}

.y-spots-fill--warning {
    background-color: #D4A843;
}

.y-spots-fill--full {
    background-color: #ccc;
}

/* ==========================================================================
   12. Locked Overlay
   ========================================================================== */

.y-locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 24px;
    text-align: center;
}

.y-locked-overlay svg {
    color: #9B9B9B;
    margin-bottom: 12px;
}

.y-locked-overlay p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #9B9B9B;
    margin: 0;
    line-height: 1.5;
}

.y-locked-overlay a {
    font-size: 12px;
    font-weight: 600;
    color: #C4956A;
    margin-top: 8px;
    display: inline-block;
}

/* ==========================================================================
   13. Filter Bar
   ========================================================================== */

.y-filters-wrapper {
    margin-bottom: 32px;
}

.y-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

/* Style native select/input elements inside filters directly */
.y-filters select,
.y-filters input[type="text"],
.y-filters input[type="search"] {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 32px 10px 14px;
    border: 1px solid #E5E0D8;
    background-color: #FFFFFF;
    color: #5A5A5A;
    border-radius: 2px;
    min-width: 140px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239B9B9B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    outline: none;
}

.y-filters input[type="text"],
.y-filters input[type="search"] {
    padding: 10px 14px 10px 38px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='%239B9B9B' stroke-width='2'/%3E%3Cpath d='M21 21L16.65 16.65' stroke='%239B9B9B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: 12px center;
    min-width: 200px;
}

.y-filters select:focus,
.y-filters input[type="text"]:focus,
.y-filters input[type="search"]:focus {
    border-color: #C4956A;
    outline: none;
}

.y-filters-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5A5A5A;
    padding: 10px 16px;
    border: 1px solid #E5E0D8;
    border-radius: 2px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.y-filters-toggle:hover {
    border-color: #C4956A;
}

.y-filters-toggle svg {
    transition: transform 0.3s ease;
}

.y-filters-toggle.active svg {
    transform: rotate(180deg);
}

.y-filters-collapsible {
    display: none;
}

.y-filters-collapsible.active {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.y-select {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 32px 10px 14px;
    border: 1px solid #E5E0D8;
    background-color: #FFFFFF;
    color: #2C3E2D;
    border-radius: 2px;
    min-width: 130px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239B9B9B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    outline: none;
    flex: 1;
    min-width: 0;
}

.y-select:focus {
    border-color: #C4956A;
}

.y-search {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 14px 10px 38px;
    border: 1px solid #E5E0D8;
    background-color: #FFFFFF;
    color: #2C3E2D;
    border-radius: 2px;
    min-width: 200px;
    outline: none;
    transition: border-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8' stroke='%239B9B9B' stroke-width='2'/%3E%3Cpath d='M21 21L16.65 16.65' stroke='%239B9B9B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    width: 100%;
}

.y-search:focus {
    border-color: #C4956A;
}

.y-filters-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.y-sessions-count {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #9B9B9B;
}

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

.y-filters-reset {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #C4956A;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: none;
}

.y-filters-reset.active {
    display: inline-block;
}

.y-filters-reset:hover {
    color: #2C3E2D;
}

.y-view-toggle {
    display: flex;
    border: 1px solid #E5E0D8;
    border-radius: 2px;
    overflow: hidden;
}

.y-view-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    color: #9B9B9B;
    transition: all 0.2s ease;
}

.y-view-toggle-btn:not(:last-child) {
    border-right: 1px solid #E5E0D8;
}

.y-view-toggle-btn.active,
.y-view-toggle-btn:hover {
    color: #2C3E2D;
    background: #F0EDE8;
}

/* Load more */
.y-load-more-wrapper {
    text-align: center;
    padding: 40px 0 0;
}

.y-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0 0;
}

.y-pagination a,
.y-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #5A5A5A;
    border: 1px solid #E5E0D8;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.y-pagination a:hover {
    border-color: #C4956A;
    color: #C4956A;
}

.y-pagination .current {
    background: #2C3E2D;
    border-color: #2C3E2D;
    color: #FFFFFF;
}

/* ==========================================================================
   14. Registration Panel
   ========================================================================== */

.y-reg-panel {
    background: #FFFFFF;
    padding: 28px;
    border: 1px solid #E5E0D8;
    border-radius: 4px;
}

.y-reg-panel h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.y-reg-panel p {
    font-size: 14px;
    margin-bottom: 16px;
}

.y-reg-panel .y-btn {
    margin-top: 8px;
}

.y-reg-panel--pending {
    border-left: 3px solid #D4A843;
}

.y-reg-panel--registered {
    border-left: 3px solid #5A8C5A;
}

.y-reg-panel--locked {
    border-left: 3px solid #9B9B9B;
}

.y-reg-panel--full {
    border-left: 3px solid #E5E0D8;
}

.y-reg-panel--past {
    border-left: 3px solid #E5E0D8;
}

.y-reg-panel-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.y-reg-panel-status--success {
    color: #5A8C5A;
}

.y-reg-panel-status--warning {
    color: #D4A843;
}

.y-reg-panel-status--info {
    color: #9B9B9B;
}

.y-reg-panel-message {
    font-size: 14px;
    color: #5A5A5A;
    line-height: 1.6;
}

.y-reg-panel-error {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 13px;
    color: #D4A843;
    margin-top: 12px;
    display: none;
}

.y-reg-panel-error.active {
    display: block;
}

.y-reg-panel-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.y-reg-panel-price-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #C4956A;
}

.y-reg-panel-price-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #9B9B9B;
}

/* ==========================================================================
   15. Tier Progress
   ========================================================================== */

.y-tier-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.y-tier-track-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.y-tier-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 16px 12px;
}

.y-tier-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    position: relative;
}

.y-tier-circle:hover {
    transform: scale(1.08);
}

.y-tier-step--1 .y-tier-circle {
    background-color: #7A8B69;
}

.y-tier-step--2 .y-tier-circle {
    background-color: #C4956A;
}

.y-tier-step--3 .y-tier-circle {
    background-color: #8B6B5A;
}

.y-tier-step--4 .y-tier-circle {
    background-color: #2C3E2D;
}

.y-tier-step-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C3E2D;
    margin-bottom: 4px;
}

.y-tier-step-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C3E2D;
    margin-bottom: 6px;
}

.y-tier-step-status {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #9B9B9B;
}

.y-tier-step--completed .y-tier-step-status {
    color: #5A8C5A;
}

.y-tier-connector {
    display: none;
}

.y-tier-connector-vertical {
    width: 2px;
    height: 24px;
    background-color: #E5E0D8;
}

.y-tier-step--completed + .y-tier-connector-vertical {
    background-color: #5A8C5A;
}

.y-tier-step--locked .y-tier-circle {
    opacity: 0.5;
}

.y-tier-step--locked .y-tier-step-label,
.y-tier-step--locked .y-tier-step-name {
    opacity: 0.5;
}

.y-tier-step--current .y-tier-circle {
    box-shadow: 0 0 0 4px rgba(196, 149, 106, 0.3);
}

/* ==========================================================================
   16. Single Session
   ========================================================================== */

.y-single-session {
    padding-top: 0;
}

.y-session-hero {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin-top: -70px;
}

.y-session-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.y-session-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 62, 45, 0.6) 0%,
        rgba(44, 62, 45, 0.1) 60%
    );
}

.y-session-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    z-index: 2;
}

.y-session-hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.y-session-hero-title {
    color: #FFFFFF;
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 0;
}

.y-session-info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #E5E0D8;
    border-bottom: 1px solid #E5E0D8;
    margin-bottom: 32px;
}

.y-session-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.y-session-info-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
}

.y-session-info-value {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2C3E2D;
}

.y-session-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.y-session-content {
    min-width: 0;
}

.y-session-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.y-session-content h2:first-child {
    margin-top: 0;
}

.y-session-content p {
    margin-bottom: 16px;
}

.y-session-content ul,
.y-session-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.y-session-content ul {
    list-style: disc;
}

.y-session-content ol {
    list-style: decimal;
}

.y-session-content li {
    margin-bottom: 8px;
    color: #5A5A5A;
    font-size: 15px;
    line-height: 1.7;
}

.y-session-sidebar {
    order: -1;
}

.y-session-special-notes {
    background: #F0EDE8;
    padding: 20px 24px;
    border-radius: 4px;
    margin: 24px 0;
}

.y-session-special-notes h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C3E2D;
    margin-bottom: 8px;
}

.y-session-special-notes p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Instructor mini-profile */
.y-instructor-mini {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #E5E0D8;
    margin-top: 24px;
}

.y-instructor-mini-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.y-instructor-mini-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.y-instructor-mini-name a {
    color: #2C3E2D;
    text-decoration: none;
}

.y-instructor-mini-name a:hover {
    color: #C4956A;
}

.y-instructor-mini-bio {
    font-size: 14px;
    color: #5A5A5A;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Location mini-card */
.y-location-mini {
    padding: 20px;
    background: #F0EDE8;
    border-radius: 4px;
    margin-top: 24px;
}

.y-location-mini h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.y-location-mini h4 a {
    color: #2C3E2D;
    text-decoration: none;
}

.y-location-mini h4 a:hover {
    color: #C4956A;
}

.y-location-mini-address {
    font-size: 14px;
    color: #5A5A5A;
    margin-bottom: 12px;
}

.y-location-mini-map {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.y-location-mini-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Related sessions */
.y-related-sessions {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #E5E0D8;
}

.y-related-sessions h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* ==========================================================================
   17. Location Cards
   ========================================================================== */

.y-location-card {
    background: #FFFFFF;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #E5E0D8;
    box-shadow: 0 2px 8px rgba(44, 62, 45, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.y-location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(44, 62, 45, 0.08);
    border-color: transparent;
}

.y-location-card a {
    text-decoration: none;
    color: inherit;
}

.y-location-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.y-location-card-img,
.y-location-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    height: 180px;
}

.y-location-card-img img,
.y-location-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.y-location-card:hover .y-location-card-img img,
.y-location-card:hover .y-location-card__img img {
    transform: scale(1.04);
}

/* Location card placeholder */
.y-location-card__placeholder {
    background: #F0EDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.y-location-card__placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
}

.y-location-card-body,
.y-location-card__body {
    padding: 20px 24px;
}

.y-location-card-name,
.y-location-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2C3E2D;
}

/* Prevent headings inside location cards from inheriting large sizes */
.y-location-card h2,
.y-location-card h3,
.y-location-card__body h2,
.y-location-card__body h3,
.y-location-card__name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.y-location-card-address,
.y-location-card__address {
    font-size: 14px;
    color: #9B9B9B;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.y-location-card__address .y-location-card__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.y-location-card-sessions,
.y-location-card__sessions {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #C4956A;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E5E0D8;
    margin-bottom: 0;
}

.y-location-card__sessions--none {
    color: #9B9B9B;
}

.y-location-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E5E0D8;
}

.y-location-card__footer .y-location-card-sessions {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
}

.y-location-card__arrow {
    font-size: 14px;
}

/* Single location */
.y-location-hero {
    position: relative;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    margin-top: -70px;
}

.y-location-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.y-location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

.y-location-detail-card {
    background: #FFFFFF;
    padding: 24px;
    border: 1px solid #E5E0D8;
    border-radius: 4px;
}

.y-location-detail-card h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C3E2D;
    margin-bottom: 12px;
}

.y-location-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.y-location-amenity {
    background: #F0EDE8;
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 13px;
    color: #5A5A5A;
}

.y-location-map {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.y-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.y-location-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.y-location-gallery img {
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

/* ==========================================================================
   18. Instructor Cards
   ========================================================================== */

.y-instructor-card {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E5E0D8;
    box-shadow: 0 2px 8px rgba(44, 62, 45, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.y-instructor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(44, 62, 45, 0.08);
    border-color: transparent;
}

.y-instructor-card a {
    text-decoration: none;
    color: inherit;
}

.y-instructor-card-img,
.y-instructor-card__headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #E5E0D8;
    margin: 0 auto 16px;
    overflow: hidden;
}

.y-instructor-card-img img,
.y-instructor-card__headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instructor card placeholder */
.y-instructor-card__placeholder {
    width: 100%;
    height: 100%;
    background: #F0EDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-height: auto;
}

.y-instructor-card__placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
}

.y-instructor-card-name,
.y-instructor-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #2C3E2D;
}

.y-instructor-card-specialty,
.y-instructor-card__specialties {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #9B9B9B;
    margin-bottom: 8px;
}

.y-instructor-card__experience {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #9B9B9B;
    margin-bottom: 8px;
}

.y-instructor-card-sessions,
.y-instructor-card__sessions {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #C4956A;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Single instructor */
.y-instructor-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
}

.y-instructor-profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #E5E0D8;
    margin: 0 auto;
    overflow: hidden;
}

.y-instructor-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.y-instructor-profile-info {
    text-align: center;
}

.y-instructor-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.y-instructor-meta-item {
    background: #F0EDE8;
    padding: 16px;
    border-radius: 4px;
}

.y-instructor-meta-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
    margin-bottom: 4px;
}

.y-instructor-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: #2C3E2D;
}

.y-instructor-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.y-instructor-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E0D8;
    border-radius: 50%;
    color: #5A5A5A;
    transition: all 0.3s ease;
}

.y-instructor-social a:hover {
    border-color: #C4956A;
    color: #C4956A;
}

/* ==========================================================================
   19. Dashboard
   ========================================================================== */

.y-dashboard {
    padding: 32px 0;
}

.y-dashboard-header {
    margin-bottom: 32px;
}

.y-dashboard-header h1 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 8px;
}

.y-dashboard-welcome {
    font-size: 16px;
    color: #9B9B9B;
}

.y-dashboard-tabs {
    display: flex;
    border-bottom: 1px solid #E5E0D8;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.y-dashboard-tabs::-webkit-scrollbar {
    display: none;
}

.y-dashboard-tab {
    padding: 12px 24px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.y-dashboard-tab:hover {
    color: #5A5A5A;
}

.y-dashboard-tab.active {
    color: #2C3E2D;
    border-bottom-color: #C4956A;
}

.y-dashboard-panel {
    display: none;
    padding-top: 32px;
}

.y-dashboard-panel.active {
    display: block;
}

.y-dashboard-card {
    background: #FFFFFF;
    padding: 24px;
    border: 1px solid #E5E0D8;
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.y-dashboard-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.y-dashboard-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C3E2D;
    margin: 0;
}

.y-dashboard-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #5A5A5A;
}

.y-dashboard-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.y-dashboard-card-meta-item svg {
    color: #9B9B9B;
    flex-shrink: 0;
}

.y-dashboard-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #F0EDE8;
}

.y-dashboard-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.y-dashboard-status--registered {
    background: rgba(90, 140, 90, 0.1);
    color: #5A8C5A;
}

.y-dashboard-status--attended {
    background: rgba(90, 140, 90, 0.1);
    color: #5A8C5A;
}

.y-dashboard-status--cancelled {
    background: rgba(155, 155, 155, 0.1);
    color: #9B9B9B;
}

.y-dashboard-status--no-show {
    background: rgba(212, 168, 67, 0.1);
    color: #D4A843;
}

.y-dashboard-empty {
    text-align: center;
    padding: 60px 24px;
    color: #9B9B9B;
}

.y-dashboard-empty h3 {
    color: #5A5A5A;
    margin-bottom: 8px;
}

.y-dashboard-empty p {
    margin-bottom: 20px;
}

/* Dashboard profile form */
.y-dashboard-form {
    max-width: 520px;
}

.y-dashboard-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.y-dashboard-message {
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.y-dashboard-message.active {
    display: block;
}

.y-dashboard-message--success {
    background: rgba(90, 140, 90, 0.1);
    color: #5A8C5A;
    border: 1px solid rgba(90, 140, 90, 0.2);
}

.y-dashboard-message--error {
    background: rgba(212, 168, 67, 0.1);
    color: #D4A843;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

/* ==========================================================================
   20. Auth Forms
   ========================================================================== */

.y-auth {
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 0;
}

.y-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.y-auth-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.y-auth-header p {
    color: #9B9B9B;
}

.y-auth-tabs {
    display: flex;
    border-bottom: 1px solid #E5E0D8;
    margin-bottom: 32px;
}

.y-auth-tab {
    flex: 1;
    padding: 12px 24px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9B9B9B;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.y-auth-tab:hover {
    color: #5A5A5A;
}

.y-auth-tab.active {
    color: #2C3E2D;
    border-bottom-color: #C4956A;
}

.y-auth-panel {
    display: none;
}

.y-auth-panel.active {
    display: block;
}

.y-form-group {
    margin-bottom: 20px;
}

.y-form-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5A5A5A;
    margin-bottom: 6px;
}

.y-form-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E0D8;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #2C3E2D;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.y-form-input:focus {
    border-color: #C4956A;
}

.y-form-input::placeholder {
    color: #9B9B9B;
}

.y-form-input--error {
    border-color: #D4A843;
}

.y-form-error {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #D4A843;
    margin-top: 4px;
    display: none;
}

.y-form-error.active {
    display: block;
}

.y-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.y-form-footer {
    margin-top: 24px;
}

.y-form-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: #C4956A;
    cursor: pointer;
}

.y-form-link:hover {
    color: #2C3E2D;
}

.y-form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #9B9B9B;
    font-size: 12px;
}

.y-form-divider::before,
.y-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E0D8;
}

.y-auth-message {
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.y-auth-message.active {
    display: block;
}

.y-auth-message--success {
    background: rgba(90, 140, 90, 0.1);
    color: #5A8C5A;
    border: 1px solid rgba(90, 140, 90, 0.2);
}

.y-auth-message--error {
    background: rgba(212, 168, 67, 0.1);
    color: #D4A843;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

/* ==========================================================================
   21. FAQ Accordion
   ========================================================================== */

.y-faq {
    max-width: 800px;
    margin: 0 auto;
}

.y-faq-category {
    margin-bottom: 32px;
}

.y-faq-category-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4956A;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E0D8;
}

.y-faq-item {
    border-bottom: 1px solid #E5E0D8;
}

.y-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #2C3E2D;
    gap: 16px;
    transition: color 0.3s ease;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

.y-faq-question:hover {
    color: #C4956A;
}

.y-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #9B9B9B;
}

.y-faq-item.active .y-faq-question svg {
    transform: rotate(180deg);
}

.y-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.y-faq-item.active .y-faq-answer {
    max-height: 500px;
}

.y-faq-answer-inner {
    padding: 0 0 20px;
    font-size: 15px;
    color: #5A5A5A;
    line-height: 1.8;
}

/* ==========================================================================
   22. Modal
   ========================================================================== */

.y-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(44, 62, 45, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.y-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.y-modal {
    background: #FFFFFF;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.y-modal-overlay.active .y-modal {
    transform: translateY(0);
}

.y-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #E5E0D8;
}

.y-modal-header h3 {
    margin: 0;
}

.y-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #E5E0D8;
    border-radius: 50%;
    cursor: pointer;
    color: #5A5A5A;
    transition: all 0.3s ease;
}

.y-modal-close:hover {
    transform: scale(1.1);
    border-color: #2C3E2D;
    color: #2C3E2D;
}

.y-modal-body {
    padding: 28px;
}

.y-modal-footer {
    padding: 20px 28px;
    border-top: 1px solid #E5E0D8;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ==========================================================================
   23. Video Section
   ========================================================================== */

.y-video-section {
    margin: 32px 0;
}

.y-video-gated {
    padding: 32px;
    background: #F0EDE8;
    border-radius: 4px;
    text-align: center;
}

.y-video-gated h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.y-video-gated p {
    font-size: 14px;
    color: #9B9B9B;
    margin-bottom: 16px;
}

.y-video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

.y-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   24. CTA Banner
   ========================================================================== */

.y-cta-banner {
    text-align: center;
    padding: 80px 20px;
}

.y-cta-banner h2 {
    font-style: italic;
    margin-bottom: 16px;
}

.y-cta-banner p {
    max-width: 520px;
    margin: 0 auto 32px;
}

.y-section--dark .y-cta-banner h2 {
    color: #FFFFFF;
}

.y-section--dark .y-cta-banner p {
    color: rgba(255, 255, 255, 0.7);
}

.y-cta-banner .y-btn-group {
    justify-content: center;
}

/* ==========================================================================
   25. Footer
   ========================================================================== */

.y-footer {
    background-color: #2C3E2D;
    color: #FFFFFF;
    padding: 60px 20px 40px;
}

.y-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.y-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.y-footer-col--brand {
    grid-column: 1 / -1;
    margin-bottom: 16px;
}

.y-footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.y-footer-logo:hover {
    color: #C4956A;
}

.y-footer-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 360px;
    margin: 0;
}

.y-footer-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 16px;
}

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

.y-footer-links a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.y-footer-links a:hover {
    color: #C4956A;
}

.y-footer-contact li {
    margin-bottom: 8px;
}

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

.y-footer-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
}

.y-footer-contact-item a,
.y-footer-contact-item span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.y-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.y-footer-copyright {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* ==========================================================================
   26. Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent transitions on page load */
.no-transitions * {
    transition: none !important;
}

/* ==========================================================================
   27. Utilities
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden {
    display: none !important;
}

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

.y-divider {
    border: none;
    height: 1px;
    background: #E5E0D8;
    margin: 24px 0;
}

/* Testimonial */
.y-testimonial {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 0;
}

.y-testimonial-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: #2C3E2D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.y-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.y-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.y-testimonial-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2C3E2D;
}

.y-testimonial-role {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #9B9B9B;
}

/* Testimonials slider */
.y-testimonials-slider {
    position: relative;
    overflow: hidden;
}

.y-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.y-testimonials-track .y-testimonial {
    min-width: 100%;
    flex-shrink: 0;
}

/* Tier explainer section */
.y-tier-explainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.y-tier-card {
    padding: 24px;
    border-left: 3px solid;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
}

.y-tier-card--1 { border-left-color: #7A8B69; }
.y-tier-card--2 { border-left-color: #C4956A; }
.y-tier-card--3 { border-left-color: #8B6B5A; }
.y-tier-card--4 { border-left-color: #2C3E2D; }

.y-tier-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.y-tier-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* About page */
.y-about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.y-about-value {
    text-align: center;
    padding: 24px;
}

.y-about-value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #C4956A;
}

/* Contact page */
.y-contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.y-contact-form .wpcf7-form p {
    margin-bottom: 16px;
}

.y-contact-form .wpcf7-form input[type="text"],
.y-contact-form .wpcf7-form input[type="email"],
.y-contact-form .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E0D8;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #2C3E2D;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.y-contact-form .wpcf7-form input[type="text"]:focus,
.y-contact-form .wpcf7-form input[type="email"]:focus,
.y-contact-form .wpcf7-form textarea:focus {
    border-color: #C4956A;
}

.y-contact-form .wpcf7-form input[type="submit"] {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: #C4956A;
    color: #FFFFFF;
    padding: 12px 28px;
    border: 2px solid #C4956A;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.y-contact-form .wpcf7-form input[type="submit"]:hover {
    background-color: #2C3E2D;
    border-color: #2C3E2D;
}

.y-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.y-contact-info-item {
    display: flex;
    gap: 16px;
}

.y-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F0EDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C4956A;
}

.y-contact-info-text h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.y-contact-info-text p {
    font-size: 14px;
    color: #5A5A5A;
    margin: 0;
}

/* 404 page */
.y-404 {
    text-align: center;
    padding: 80px 20px;
}

.y-404 h1 {
    font-size: 80px;
    color: #E5E0D8;
    margin-bottom: 8px;
}

.y-404 h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.y-404 p {
    color: #9B9B9B;
    margin-bottom: 24px;
}

/* ==========================================================================
   Archive & Inner Page Spacing
   ========================================================================== */

/* Archive pages, inner pages — clear the fixed nav */
.archive main,
.page:not(.home) main,
.single main,
.search main,
.error404 main {
    padding-top: 30px;
}

/* ==========================================================================
   General Placeholder Styling
   ========================================================================== */

/* Shared placeholder styles for all card types */
.y-card__placeholder,
.y-location-card__placeholder,
.y-instructor-card__placeholder {
    background: #F0EDE8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.y-card__placeholder svg,
.y-location-card__placeholder svg,
.y-instructor-card__placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
}

/* ==========================================================================
   28. Responsive — 768px (tablet)
   ========================================================================== */

@media (min-width: 768px) {

    /* Layout */
    .yoga-container {
        padding: 0 36px;
    }

    .y-section {
        padding: 80px 36px;
    }

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

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

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

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

    /* Sessions grid */
    .y-sessions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .y-sessions-grid--list {
        grid-template-columns: 1fr;
    }

    .y-sessions-grid--list .y-card,
    .y-card--list {
        flex-direction: row;
    }

    .y-sessions-grid--list .y-card .y-card-img,
    .y-card--list .y-card-img {
        width: 200px;
        flex-shrink: 0;
        aspect-ratio: auto;
    }

    .y-sessions-grid--list .y-card .y-card-body,
    .y-card--list .y-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Steps */
    .y-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Filters */
    .y-filters-toggle {
        display: none;
    }

    .y-filters-collapsible {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .y-select {
        flex: 0 0 auto;
        min-width: 130px;
    }

    .y-search {
        width: auto;
        min-width: 200px;
    }

    /* Session info bar */
    .y-session-info-bar {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Session hero content */
    .y-session-hero-content {
        padding: 40px 36px;
    }

    /* Dashboard form */
    .y-dashboard-form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .y-footer {
        padding: 60px 36px 40px;
    }

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

    .y-footer-col--brand {
        grid-column: 1 / -1;
    }

    /* Tier explainer */
    .y-tier-explainer {
        grid-template-columns: 1fr 1fr;
    }

    /* Tier progress */
    .y-tier-track {
        flex-direction: row;
        align-items: flex-start;
    }

    .y-tier-track-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .y-tier-connector {
        display: block;
        width: 60px;
        height: 2px;
        background-color: #E5E0D8;
        margin-top: 32px;
        flex-shrink: 0;
    }

    .y-tier-step--completed + .y-tier-connector {
        background-color: #5A8C5A;
    }

    .y-tier-connector-vertical {
        display: none;
    }

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

    /* Contact layout */
    .y-contact-layout {
        grid-template-columns: 1fr 1fr;
    }

    /* Location details */
    .y-location-details {
        grid-template-columns: 1fr 1fr;
    }

    .y-location-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Instructor profile */
    .y-instructor-profile {
        grid-template-columns: auto 1fr;
        gap: 48px;
        align-items: start;
    }

    .y-instructor-profile-info {
        text-align: left;
    }

    .y-instructor-social {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   29. Responsive — 1024px (desktop)
   ========================================================================== */

@media (min-width: 1024px) {

    /* Navigation */
    .y-nav {
        padding: 20px 48px;
    }

    .y-nav.scrolled {
        padding: 14px 48px;
    }

    .y-nav-toggle {
        display: none;
    }

    .y-nav-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        align-items: center;
        gap: 28px;
        opacity: 1;
        visibility: visible;
    }

    .y-nav-links {
        flex-direction: row;
        gap: 28px;
    }

    .y-nav-link {
        font-size: 12px;
    }

    .y-nav-actions {
        flex-direction: row;
    }

    /* Layout */
    .yoga-container {
        padding: 0 48px;
    }

    .y-section {
        padding: 100px 48px;
    }

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

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

    /* Sessions grid */
    .y-sessions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .y-sessions-grid--list {
        grid-template-columns: 1fr;
    }

    .y-sessions-grid--list .y-card .y-card-img,
    .y-card--list .y-card-img {
        width: 280px;
    }

    /* Session layout */
    .y-session-layout {
        grid-template-columns: 1fr 350px;
        gap: 48px;
    }

    .y-session-sidebar {
        order: 0;
    }

    /* Sticky registration panel */
    .y-session-sidebar .y-reg-panel {
        position: sticky;
        top: 100px;
    }

    /* Footer */
    .y-footer {
        padding: 80px 48px 40px;
    }

    .y-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .y-footer-col--brand {
        grid-column: auto;
    }

    .y-footer-bottom {
        justify-content: space-between;
    }

    /* Hero content */
    .y-hero-content p {
        font-size: 18px;
    }

    .y-session-hero-content {
        padding: 48px;
    }

    /* Tier explainer */
    .y-tier-explainer {
        grid-template-columns: repeat(4, 1fr);
    }

    /* About values */
    .y-about-values {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Location gallery */
    .y-location-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Instructor cards grid */
    .y-grid--instructors {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   30. Print styles
   ========================================================================== */

@media print {
    .y-nav,
    .y-footer,
    .y-nav-toggle,
    .y-filters-wrapper,
    .y-reg-panel,
    .y-btn,
    .y-modal-overlay {
        display: none !important;
    }

    body {
        padding-top: 0;
        background: #FFFFFF;
        color: #000000;
    }

    .y-section {
        padding: 20px 0;
    }

    .y-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
