/*
 * Jose Dance Academy public presentation layer.
 * Uses local/system font stacks only and reads design tokens from the theme settings.
 */

:root {
    --jda-primary: #b98733;
    --jda-accent: #d6aa58;
    --jda-dark: #090a0a;
    --jda-light: #f7f4ed;
    --jda-text: #1c1c1a;
    --jda-muted: #706d66;
    --jda-content: 1180px;
    --jda-narrow: 760px;
    --jda-section: 88px;
    --jda-button-radius: 2px;
    --jda-card-radius: 5px;
    --jda-font-heading: Georgia, "Times New Roman", serif;
    --jda-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --jda-border: rgba(28, 28, 26, 0.13);
    --jda-border-dark: rgba(255, 255, 255, 0.15);
    --jda-shadow: 0 18px 55px rgba(13, 12, 10, 0.10);
    --jda-shadow-small: 0 8px 28px rgba(13, 12, 10, 0.08);
    --jda-transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--jda-text);
    font-family: var(--jda-font-body);
    font-size: 16px;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.jda-nav-open {
    overflow: hidden;
}

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

figure {
    margin: 0;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--jda-primary);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--jda-accent);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.55em;
    color: inherit;
    font-family: var(--jda-font-heading);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
    margin: 0 0 1.25em;
}

ul,
ol {
    padding-left: 1.35rem;
}

hr {
    border: 0;
    border-top: 1px solid var(--jda-border);
    margin: 2.5rem 0;
}

::selection {
    background: var(--jda-accent);
    color: var(--jda-dark);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    clip: auto;
    background: #fff;
    color: #000;
}

.jda-skip-link {
    position: fixed;
    z-index: 100000;
    top: -100px;
    left: 1rem;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.jda-skip-link:focus {
    top: 1rem;
}

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

.jda-narrow {
    max-width: var(--jda-narrow);
}

.jda-section-dark {
    background: var(--jda-dark);
    color: #fff;
}

.jda-section-light {
    background: var(--jda-light);
    color: var(--jda-text);
}

.jda-eyebrow,
.jda-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
    color: var(--jda-accent);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.jda-eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.jda-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.jda-button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: var(--jda-button-radius);
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform var(--jda-transition), background-color var(--jda-transition), border-color var(--jda-transition), color var(--jda-transition);
}

.jda-button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}

.jda-button--gold,
button[type="submit"],
input[type="submit"] {
    background: var(--jda-primary);
    color: #fff;
}

.jda-button--gold:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--jda-accent);
    color: var(--jda-dark);
}

.jda-button--outline {
    border-color: rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #fff;
}

.jda-button--outline:hover {
    border-color: var(--jda-accent);
    color: var(--jda-accent);
}

.jda-button--dark {
    background: var(--jda-dark);
    color: #fff;
}

.jda-button--dark:hover {
    background: var(--jda-primary);
    color: #fff;
}

.jda-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--jda-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.jda-text-link span {
    transition: transform var(--jda-transition);
}

.jda-text-link:hover span {
    transform: translateX(4px);
}

/* Header and branding */
.jda-site-header {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--jda-border-dark);
    background: var(--jda-dark);
    color: #fff;
}

.jda-site-header.is-sticky {
    position: sticky;
    top: 0;
}

.admin-bar .jda-site-header.is-sticky {
    top: 32px;
}

.jda-header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.jda-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    color: inherit;
    line-height: 1;
    text-decoration: none;
}

.jda-brand:hover {
    color: var(--jda-accent);
}

.jda-brand__image {
    width: auto;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.jda-brand__wordmark {
    display: grid;
    gap: 0.25rem;
}

.jda-brand__name {
    max-width: 220px;
    color: var(--jda-accent);
    font-family: var(--jda-font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.jda-brand__tagline {
    max-width: 220px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.jda-site-nav {
    margin-left: auto;
}

.jda-menu,
.jda-menu ul,
.jda-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jda-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.65rem);
}

.jda-menu > li {
    position: relative;
}

.jda-menu a {
    display: block;
    padding: 1.85rem 0 1.7rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-decoration: none;
    transition: color var(--jda-transition);
}

.jda-menu > li > a::after {
    position: absolute;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    height: 1px;
    background: var(--jda-accent);
    content: "";
    transform: scaleX(0);
    transition: transform var(--jda-transition);
}

.jda-menu > li:hover > a,
.jda-menu > li:focus-within > a,
.jda-menu .current-menu-item > a,
.jda-menu .current_page_item > a {
    color: var(--jda-accent);
}

.jda-menu > li:hover > a::after,
.jda-menu > li:focus-within > a::after,
.jda-menu .current-menu-item > a::after,
.jda-menu .current_page_item > a::after {
    transform: scaleX(1);
}

.jda-menu .sub-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% - 4px);
    left: -1rem;
    width: 220px;
    padding: 0.6rem;
    border: 1px solid var(--jda-border-dark);
    border-radius: var(--jda-card-radius);
    background: #111211;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--jda-transition), transform var(--jda-transition);
}

.jda-menu .sub-menu .sub-menu {
    top: -0.6rem;
    left: calc(100% + 0.35rem);
}

.jda-menu li:hover > .sub-menu,
.jda-menu li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.jda-menu .sub-menu a {
    padding: 0.75rem 0.8rem;
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
}

.jda-menu .sub-menu a:hover,
.jda-menu .sub-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--jda-accent);
}

.jda-submenu-toggle,
.jda-menu-toggle,
.jda-menu-close,
.jda-mobile-nav-heading {
    display: none;
}

/* Homepage */
.jda-hero {
    position: relative;
    overflow: hidden;
}

.jda-hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%, rgba(185, 135, 51, 0.18), transparent 30%);
    content: "";
    pointer-events: none;
}

.jda-hero-grid {
    position: relative;
    display: grid;
    min-height: min(720px, calc(100vh - 76px));
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 7rem);
    padding-block: clamp(4rem, 8vw, 7.5rem);
}

.jda-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.jda-hero-copy h1 {
    max-width: 12ch;
}

.jda-hero-copy h1 em,
.jda-hero-copy h1 strong {
    color: var(--jda-accent);
    font-weight: inherit;
}

.jda-hero-copy > p {
    max-width: 49ch;
    color: rgba(255, 255, 255, 0.73);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.jda-hero-media {
    position: relative;
    min-height: 470px;
    align-self: stretch;
}

.jda-hero-media.has-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 26%;
    background: linear-gradient(transparent, var(--jda-dark));
    content: "";
    pointer-events: none;
}

.jda-hero-image {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center;
}

.jda-hero-art {
    position: absolute;
    inset: 6% 0 0 8%;
    display: grid;
    place-content: center;
    overflow: hidden;
    border: 1px solid rgba(214, 170, 88, 0.36);
    background:
        radial-gradient(circle at 56% 38%, rgba(214, 170, 88, 0.22), transparent 22%),
        linear-gradient(145deg, #171815, #080909 68%);
    text-align: center;
}

.jda-hero-art::after {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    content: "";
}

.jda-hero-art strong {
    position: relative;
    z-index: 2;
    color: var(--jda-accent);
    font-family: var(--jda-font-heading);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.jda-hero-art small {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.jda-hero-art__ring {
    position: absolute;
    top: 13%;
    left: 12%;
    width: 62%;
    aspect-ratio: 1;
    border: 1px solid rgba(214, 170, 88, 0.18);
    border-radius: 50%;
}

.jda-hero-art__line {
    position: absolute;
    right: 13%;
    bottom: 9%;
    width: 1px;
    height: 60%;
    background: rgba(214, 170, 88, 0.27);
    transform: rotate(28deg);
}

.jda-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.3rem;
    margin-top: 1.8rem;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.72rem;
}

.jda-hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.jda-hero-notes span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--jda-accent);
    content: "";
}

.jda-home-cards {
    position: relative;
    z-index: 3;
    margin-top: -54px;
    padding-bottom: var(--jda-section);
}

.jda-home-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--jda-border);
    border-radius: var(--jda-card-radius);
    background: #fff;
    box-shadow: var(--jda-shadow);
}

.jda-home-card {
    min-width: 0;
    padding: clamp(1.1rem, 2.2vw, 1.65rem);
    border-right: 1px solid var(--jda-border);
}

.jda-home-card:last-child {
    border-right: 0;
}

.jda-card-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--jda-muted);
    font-size: 0.61rem;
    letter-spacing: 0.11em;
}

.jda-home-card__image,
.jda-home-card__placeholder {
    display: block;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.1rem;
    overflow: hidden;
    border-radius: max(1px, calc(var(--jda-card-radius) - 2px));
    background: #151613;
}

.jda-home-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.jda-home-card:hover .jda-home-card__image img {
    transform: scale(1.04);
}

.jda-home-card__placeholder {
    position: relative;
    background: linear-gradient(135deg, #151613, #282116);
}

.jda-home-card__placeholder::before,
.jda-home-card__placeholder::after,
.jda-home-card__placeholder span {
    position: absolute;
    content: "";
}

.jda-home-card__placeholder::before {
    inset: 17%;
    border: 1px solid rgba(214, 170, 88, 0.26);
}

.jda-home-card__placeholder::after {
    top: 16%;
    left: 18%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(214, 170, 88, 0.18);
    border-radius: 50%;
}

.jda-home-card__placeholder span {
    right: 18%;
    bottom: 17%;
    width: 34%;
    height: 1px;
    background: rgba(214, 170, 88, 0.35);
    transform: rotate(-30deg);
}

.jda-home-card h2 {
    margin-bottom: 0.45rem;
    font-family: var(--jda-font-body);
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.25;
}

.jda-home-card h2 a {
    text-decoration: none;
}

.jda-home-card p {
    display: -webkit-box;
    min-height: 3.2em;
    overflow: hidden;
    color: var(--jda-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.jda-page-content {
    padding-block: var(--jda-section);
}

.jda-foundation-callout {
    padding-block: clamp(3.2rem, 6vw, 5.5rem);
    border-top: 1px solid var(--jda-border);
}

.jda-callout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.8fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
}

.jda-callout-grid h2 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.jda-callout-grid p {
    margin: 0;
    color: var(--jda-muted);
}

/* Inner pages and archives */
.jda-page-hero,
.jda-archive-hero,
.jda-single-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4.2rem, 8vw, 8rem);
}

.jda-page-hero::after,
.jda-archive-hero::after,
.jda-single-hero::after {
    position: absolute;
    top: -55%;
    right: -10%;
    width: 55vw;
    max-width: 800px;
    aspect-ratio: 1;
    border: 1px solid rgba(214, 170, 88, 0.11);
    border-radius: 50%;
    content: "";
}

.jda-page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
}

.jda-page-hero h1,
.jda-archive-hero h1,
.jda-single-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.65rem, 5.4vw, 5rem);
}

.jda-page-hero p,
.jda-archive-hero p,
.jda-archive-description,
.jda-single-hero .jda-post-meta {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.7);
}

.jda-page-hero__image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(214, 170, 88, 0.22);
}

.jda-page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jda-page-entry,
.jda-single-content {
    padding-block: var(--jda-section);
}

.jda-prose {
    overflow-wrap: break-word;
}

.jda-prose > :first-child {
    margin-top: 0;
}

.jda-prose > :last-child {
    margin-bottom: 0;
}

.jda-prose h2,
.jda-prose h3,
.jda-prose h4 {
    margin-top: 1.45em;
}

.jda-prose p,
.jda-prose li {
    color: #34332f;
}

.jda-prose a:not(.jda-button):not(.wp-block-button__link) {
    color: #815b20;
}

.jda-prose blockquote {
    margin: 2.3rem 0;
    padding: 0.35rem 0 0.35rem 1.5rem;
    border-left: 3px solid var(--jda-primary);
    color: var(--jda-muted);
    font-family: var(--jda-font-heading);
    font-size: 1.35rem;
    line-height: 1.45;
}

.jda-prose table {
    width: 100%;
    border-collapse: collapse;
}

.jda-prose th,
.jda-prose td {
    padding: 0.8rem;
    border: 1px solid var(--jda-border);
    text-align: left;
}

.alignwide {
    width: min(calc(100vw - 40px), var(--jda-content));
    max-width: none;
    margin-right: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.alignfull {
    width: 100vw;
    max-width: none;
    margin-right: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.jda-archive-section {
    padding-block: var(--jda-section);
    background: var(--jda-light);
}

.jda-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
}

.jda-post-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--jda-border);
    border-radius: var(--jda-card-radius);
    background: #fff;
    box-shadow: var(--jda-shadow-small);
}

.jda-post-card__media,
.jda-post-card__placeholder {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #151613;
}

.jda-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.jda-post-card:hover .jda-post-card__media img {
    transform: scale(1.035);
}

.jda-post-card__placeholder {
    background: linear-gradient(135deg, #111210, #332717);
}

.jda-post-card__body {
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.jda-post-card__body h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.jda-post-card__body h2 a {
    text-decoration: none;
}

.jda-post-card__body > p {
    color: var(--jda-muted);
    font-size: 0.92rem;
}

.jda-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    color: var(--jda-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navigation.pagination {
    margin-top: 3rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.page-numbers {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--jda-border);
    background: #fff;
    color: var(--jda-text);
    text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
    border-color: var(--jda-primary);
    background: var(--jda-primary);
    color: #fff;
}

.jda-single-featured {
    position: relative;
    z-index: 2;
    margin-top: -3.5rem;
}

.jda-single-featured img {
    width: 100%;
    max-height: 660px;
    object-fit: cover;
    box-shadow: var(--jda-shadow);
}

.jda-single-footer {
    padding-bottom: 3rem;
}

.jda-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.jda-tags a {
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--jda-border);
    color: var(--jda-muted);
    font-size: 0.7rem;
    text-decoration: none;
    text-transform: uppercase;
}

.jda-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-block: 2.5rem;
    border-top: 1px solid var(--jda-border);
}

.jda-post-navigation > div:last-child {
    text-align: right;
}

.jda-post-navigation a {
    color: var(--jda-primary);
    font-weight: 700;
    text-decoration: none;
}

/* Search, empty states, comments and forms */
.jda-search-form {
    display: flex;
    width: min(100%, 600px);
    gap: 0.55rem;
    margin-top: 1.6rem;
}

.jda-search-form label {
    flex: 1;
}

.jda-search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--jda-border);
    border-radius: 1px;
    background: #fff;
    color: var(--jda-text);
    transition: border-color var(--jda-transition), box-shadow var(--jda-transition);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--jda-primary);
    box-shadow: 0 0 0 3px rgba(185, 135, 51, 0.14);
}

.jda-section-dark .jda-search-field {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.jda-empty-state {
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--jda-border);
    background: #fff;
    text-align: center;
}

.jda-empty-state p {
    color: var(--jda-muted);
}

.jda-error-page {
    display: grid;
    min-height: calc(100vh - 76px);
    place-items: center;
    padding-block: 6rem;
    text-align: center;
}

.jda-error-code {
    display: block;
    color: var(--jda-accent);
    font-family: var(--jda-font-heading);
    font-size: clamp(5rem, 16vw, 12rem);
    line-height: 0.8;
    opacity: 0.35;
}

.jda-error-page h1 {
    margin-top: -0.25em;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.jda-error-page p {
    color: rgba(255, 255, 255, 0.7);
}

.jda-error-page .jda-search-form {
    margin-inline: auto;
    margin-bottom: 1.3rem;
}

.jda-comments {
    padding-block: 3rem;
    border-top: 1px solid var(--jda-border);
}

.jda-comments-title {
    font-size: 1.8rem;
}

.jda-comment-list {
    padding: 0;
    list-style: none;
}

.jda-comment-list .comment {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--jda-border);
}

.jda-comment-list .children {
    margin-left: 2rem;
    list-style: none;
}

.comment-form > p {
    margin-bottom: 1rem;
}

/* Footer */
.jda-site-footer {
    background: #080909;
    color: #fff;
}

.jda-footer-widgets {
    padding-block: 3rem;
    border-bottom: 1px solid var(--jda-border-dark);
}

.jda-footer-widgets > .jda-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
}

.jda-footer-widget__title {
    font-family: var(--jda-font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jda-footer-widget ul {
    padding: 0;
    list-style: none;
}

.jda-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding-block: 3.4rem;
}

.jda-footer-brand > p {
    max-width: 50ch;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.jda-footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 1.6rem;
}

.jda-footer-menu a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    text-decoration: none;
}

.jda-footer-menu a:hover {
    color: var(--jda-accent);
}

.jda-footer-bottom {
    border-top: 1px solid var(--jda-border-dark);
}

.jda-footer-bottom > .jda-container {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.jda-footer-bottom p,
.jda-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.69rem;
    text-decoration: none;
}

.jda-back-to-top:hover {
    color: var(--jda-accent);
}

@media (max-width: 1080px) {
    .jda-menu {
        gap: 0.8rem;
    }

    .jda-menu a {
        font-size: 0.61rem;
    }

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

    .jda-home-card:nth-child(2) {
        border-right: 0;
    }

    .jda-home-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--jda-border);
    }

    .jda-callout-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    }

    .jda-callout-grid .jda-button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .admin-bar .jda-site-header.is-sticky {
        top: 46px;
    }

    .jda-header-inner {
        min-height: 68px;
    }

    .jda-brand__image {
        max-width: 160px;
        max-height: 46px;
    }

    .jda-menu-toggle {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        gap: 0.7rem;
        padding: 0.45rem 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .jda-menu-toggle__label {
        font-size: 0.68rem;
        font-weight: 750;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .jda-menu-toggle__icon {
        display: grid;
        width: 25px;
        gap: 5px;
    }

    .jda-menu-toggle__icon span {
        width: 100%;
        height: 1px;
        background: currentColor;
    }

    .jda-site-nav {
        width: 100%;
        margin: 0;
    }

    .jda-js .jda-site-nav {
        position: fixed;
        z-index: 2000;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(88vw, 390px);
        padding: 1rem 1.2rem 2rem;
        overflow-y: auto;
        border-left: 1px solid var(--jda-border-dark);
        background: #0b0c0b;
        box-shadow: -20px 0 55px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateX(105%);
        transition: transform 220ms ease, opacity 220ms ease;
    }

    .jda-js .jda-site-nav::before {
        position: fixed;
        z-index: -1;
        inset: 0 100% 0 auto;
        width: 100vw;
        background: rgba(0, 0, 0, 0.58);
        content: "";
    }

    .jda-js .jda-site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .jda-mobile-nav-heading {
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--jda-border-dark);
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .jda-menu-close {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
        font-size: 1.8rem;
        line-height: 1;
    }

    .jda-menu {
        display: block;
        padding-top: 0.8rem;
    }

    .jda-menu li {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .jda-menu a {
        padding: 1rem 3rem 1rem 0;
        font-size: 0.82rem;
    }

    .jda-menu > li > a::after {
        display: none;
    }

    .jda-menu .sub-menu {
        position: static;
        display: none;
        width: auto;
        padding: 0 0 0.6rem 0.85rem;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .jda-menu .is-submenu-open > .sub-menu {
        display: block;
    }

    .jda-menu .sub-menu li:last-child {
        border-bottom: 0;
    }

    .jda-menu .sub-menu a {
        padding: 0.7rem 2.6rem 0.7rem 0;
        color: rgba(255, 255, 255, 0.64);
    }

    .jda-submenu-toggle {
        position: absolute;
        top: 0.55rem;
        right: 0;
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .jda-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 4.5rem;
        padding-bottom: 0;
    }

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

    .jda-hero-media {
        min-height: 380px;
    }

    .jda-hero-image {
        min-height: 380px;
    }

    .jda-hero-art {
        inset: 0;
    }

    .jda-home-cards {
        margin-top: 0;
        padding-top: 1.2rem;
    }

    .jda-page-hero__grid {
        grid-template-columns: 1fr;
    }

    .jda-page-hero__image {
        max-width: 600px;
    }

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

@media (max-width: 640px) {
    :root {
        --jda-section: 64px;
    }

    .jda-container,
    .jda-narrow {
        width: min(calc(100% - 28px), var(--jda-content));
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .jda-brand__tagline {
        display: none;
    }

    .jda-menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .jda-hero-grid {
        padding-top: 3.6rem;
    }

    .jda-hero-media,
    .jda-hero-image {
        min-height: 330px;
    }

    .jda-button-row,
    .jda-search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .jda-button-row .jda-button,
    .jda-search-form button {
        width: 100%;
    }

    .jda-home-card-grid {
        display: block;
    }

    .jda-home-card,
    .jda-home-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--jda-border);
    }

    .jda-home-card:last-child {
        border-bottom: 0;
    }

    .jda-callout-grid,
    .jda-post-grid,
    .jda-post-navigation,
    .jda-footer-main {
        grid-template-columns: 1fr;
    }

    .jda-callout-grid .jda-button {
        width: 100%;
    }

    .jda-single-featured {
        width: 100%;
        margin-top: 0;
    }

    .jda-post-navigation > div:last-child {
        text-align: left;
    }

    .jda-footer-main {
        align-items: start;
    }

    .jda-footer-menu {
        justify-content: flex-start;
    }

    .jda-footer-bottom > .jda-container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 1.1rem;
    }

    .jda-comment-list .children {
        margin-left: 0.75rem;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .jda-site-header,
    .jda-site-footer,
    .jda-button-row,
    .jda-post-navigation,
    .jda-search-form {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* Important links remain reachable when JavaScript is unavailable. */
@media (max-width: 900px) {
    html:not(.jda-js) .jda-header-inner {
        flex-wrap: wrap;
        padding-block: 0.7rem;
    }

    html:not(.jda-js) .jda-menu-toggle,
    html:not(.jda-js) .jda-mobile-nav-heading,
    html:not(.jda-js) .jda-submenu-toggle {
        display: none;
    }

    html:not(.jda-js) .jda-site-nav {
        flex: 0 0 100%;
        border-top: 1px solid var(--jda-border-dark);
    }

    html:not(.jda-js) .jda-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    html:not(.jda-js) .jda-menu .sub-menu {
        position: static;
        display: block;
        width: auto;
        padding: 0 0 0.5rem 0.75rem;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

@media (max-width: 520px) {
    html:not(.jda-js) .jda-menu {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== 
   Version 1.1.0 — editable marketing website
   ========================================================================== */

.jda-home-section,
.jda-directory-section,
.jda-page-content,
.jda-contact-section,
.jda-map-section,
.jda-related-section,
.jda-about-values,
.jda-about-stats,
.jda-event-feature,
.jda-past-events,
.jda-blog-feature {
    padding-block: var(--jda-section);
}

.jda-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.jda-section-heading > div {
    max-width: 720px;
}

.jda-section-heading h2,
.jda-page-hero h1 {
    margin-bottom: 0.3em;
}

.jda-section-heading p,
.jda-page-hero p,
.jda-term-description {
    max-width: 700px;
    color: var(--jda-muted);
}

.jda-section-heading--center,
.jda-page-hero--center {
    display: block;
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.jda-section-heading--center .jda-eyebrow,
.jda-page-hero--center .jda-eyebrow {
    justify-content: center;
}

.jda-section-action,
.jda-text-link {
    flex: 0 0 auto;
    color: var(--jda-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.jda-page-hero {
    padding-block: clamp(5rem, 10vw, 8.5rem);
    border-bottom: 1px solid var(--jda-border);
}

.jda-large-copy {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.jda-home-hero {
    position: relative;
    overflow: hidden;
    min-height: min(760px, calc(100svh - 72px));
    background:
        radial-gradient(circle at 80% 15%, rgba(184, 137, 57, 0.19), transparent 32%),
        linear-gradient(110deg, #050505 0%, #0b0b0a 62%, #17130d 100%);
}

.jda-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    min-height: inherit;
}

.jda-home-hero__copy {
    position: relative;
    z-index: 2;
    padding-block: clamp(5rem, 10vw, 8rem);
}

.jda-home-hero__copy h1 {
    max-width: 780px;
}

.jda-home-hero__copy h1 em,
.jda-home-hero__copy h1 strong {
    color: var(--jda-accent);
    font-style: normal;
    font-weight: inherit;
}

.jda-home-hero__lead {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.jda-home-hero__media {
    position: relative;
    align-self: stretch;
    min-height: 560px;
}

.jda-home-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--jda-dark) 0%, transparent 38%), linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 38%);
    content: "";
    pointer-events: none;
}

.jda-home-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}

.jda-home-hero__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.jda-home-hero__notes span::before {
    margin-right: 0.5rem;
    color: var(--jda-accent);
    content: "◆";
    font-size: 0.48rem;
    vertical-align: 0.15em;
}

.jda-hero-art {
    position: absolute;
    inset: 8% 0 8% 14%;
    overflow: hidden;
}

.jda-hero-art__ring,
.jda-hero-art__line {
    position: absolute;
    border: 1px solid rgba(216, 176, 98, 0.23);
    border-radius: 50%;
}

.jda-hero-art__ring { inset: 12% 8% 8% 10%; }
.jda-hero-art__line { inset: 28% -18% -25% 36%; }

.jda-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.jda-class-grid,
.jda-event-grid,
.jda-testimonial-grid,
.jda-style-grid,
.jda-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.65rem);
}

.jda-class-grid--archive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jda-class-card,
.jda-event-card,
.jda-blog-card,
.jda-testimonial-card,
.jda-style-card,
.jda-value-card {
    overflow: hidden;
    border: 1px solid var(--jda-border);
    border-radius: var(--jda-card-radius);
    background: #fff;
    box-shadow: var(--jda-shadow-small);
    transition: transform var(--jda-transition), box-shadow var(--jda-transition), border-color var(--jda-transition);
}

.jda-class-card:hover,
.jda-event-card:hover,
.jda-blog-card:hover,
.jda-style-card:hover {
    border-color: rgba(184, 137, 57, 0.45);
    box-shadow: var(--jda-shadow);
    transform: translateY(-4px);
}

.jda-class-card__media,
.jda-event-card__media,
.jda-blog-card__media,
.jda-style-card__media {
    display: block;
    overflow: hidden;
    background: #171512;
    text-decoration: none;
}

.jda-class-card__media,
.jda-style-card__media { aspect-ratio: 4 / 5; }
.jda-event-card__media,
.jda-blog-card__media { aspect-ratio: 16 / 10; }

.jda-class-card__media img,
.jda-event-card__media img,
.jda-blog-card__media img,
.jda-style-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.jda-class-card:hover img,
.jda-event-card:hover img,
.jda-blog-card:hover img,
.jda-style-card:hover img { transform: scale(1.035); }

.jda-class-card__body,
.jda-event-card__body,
.jda-blog-card__body {
    padding: 1.35rem;
}

.jda-class-card h3,
.jda-event-card h3,
.jda-blog-card h3 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.jda-class-card h3 a,
.jda-event-card h3 a,
.jda-blog-card h3 a,
.jda-style-card h3 a {
    text-decoration: none;
}

.jda-class-card__meta,
.jda-event-card__meta,
.jda-post-meta,
.jda-structured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    color: var(--jda-muted);
    font-size: 0.77rem;
}

.jda-class-card__level {
    color: var(--jda-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.jda-card-placeholder,
.jda-portrait-placeholder,
.jda-video-facade__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 260px;
    place-items: center;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(216, 176, 98, 0.16) 49% 51%, transparent 52%),
        radial-gradient(circle at 70% 35%, rgba(216, 176, 98, 0.18), transparent 25%),
        #11110f;
    color: var(--jda-accent);
    font-family: var(--jda-font-heading);
    font-size: 2rem;
    letter-spacing: 0.15em;
}

.jda-featured-event__grid,
.jda-featured-video__grid,
.jda-home-about__grid,
.jda-online-promo__grid,
.jda-event-feature__grid,
.jda-blog-feature__grid,
.jda-contact-cta__grid,
.jda-contact-grid,
.jda-structured-content__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.jda-featured-event__media,
.jda-featured-video__media,
.jda-home-about__portrait,
.jda-event-feature__media,
.jda-blog-feature__media,
.jda-structured-hero__media,
.jda-about-hero__portrait {
    overflow: hidden;
    border-radius: var(--jda-card-radius);
    box-shadow: var(--jda-shadow);
}

.jda-featured-event__media,
.jda-featured-video__media,
.jda-event-feature__media,
.jda-blog-feature__media { aspect-ratio: 16 / 10; }

.jda-featured-event__media img,
.jda-home-about__portrait img,
.jda-event-feature__media img,
.jda-blog-feature__media img,
.jda-structured-hero__media img,
.jda-about-hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jda-featured-event__copy p,
.jda-featured-video__copy p,
.jda-home-about__copy p,
.jda-online-promo__copy p {
    max-width: 650px;
    color: var(--jda-muted);
}

.jda-featured-video {
    background: #11110f;
    color: #fff;
}

.jda-featured-video__copy p,
.jda-online-promo__copy p { color: rgba(255, 255, 255, 0.7); }

.jda-video-facade {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--jda-card-radius);
    background: #080808;
}

.jda-video-facade > img,
.jda-video-facade > iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.jda-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.76);
    color: #fff;
    cursor: pointer;
    place-items: center;
    transform: translate(-50%, -50%);
    transition: background var(--jda-transition), transform var(--jda-transition);
}

.jda-video-play:hover {
    background: var(--jda-primary);
    transform: translate(-50%, -50%) scale(1.06);
}

.jda-video-duration {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--jda-accent);
    font-size: 0.75rem;
    font-weight: 700;
}

.jda-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.55rem;
}

.jda-instagram-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #171512;
}

.jda-instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.jda-instagram-tile:hover img { transform: scale(1.05); }

.jda-home-about__facts,
.jda-stat-grid,
.jda-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.jda-home-about__facts {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--jda-border);
}

.jda-home-about__facts strong,
.jda-stat-grid strong {
    display: block;
    color: var(--jda-primary);
    font-family: var(--jda-font-heading);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 500;
    line-height: 1;
}

.jda-home-about__facts span,
.jda-stat-grid span {
    color: var(--jda-muted);
    font-size: 0.75rem;
}

.jda-style-card {
    position: relative;
    min-height: 390px;
    background: #111;
    color: #fff;
}

.jda-style-card__media {
    position: absolute;
    inset: 0;
}

.jda-style-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 70%);
    content: "";
}

.jda-style-card h3,
.jda-style-card > p,
.jda-style-card > .jda-text-link {
    position: relative;
    z-index: 1;
    margin-inline: 1.3rem;
}

.jda-style-card h3 { margin-top: 270px; }
.jda-style-card > p { color: rgba(255,255,255,.67); font-size: .85rem; }

.jda-schedule-list {
    border-top: 1px solid var(--jda-border);
}

.jda-schedule-row {
    display: grid;
    grid-template-columns: 0.55fr 0.7fr 1.35fr 1fr 0.7fr;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--jda-border);
}

.jda-schedule-row small {
    display: block;
    color: var(--jda-muted);
}

.jda-schedule-row a { font-weight: 700; text-decoration: none; }

.jda-online-promo {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 25%, rgba(184, 137, 57, 0.25), transparent 24%),
        #090909;
    color: #fff;
}

.jda-check-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.jda-check-list li::before {
    margin-right: 0.7rem;
    color: var(--jda-accent);
    content: "✓";
    font-weight: 800;
}

.jda-device-art {
    position: relative;
    min-height: 360px;
}

.jda-device-art span {
    position: absolute;
    display: grid;
    border: 8px solid #24221f;
    border-radius: 10px;
    background: linear-gradient(135deg, #0c0c0b, #6e4c21);
    box-shadow: 0 25px 65px rgba(0,0,0,.38);
    color: var(--jda-accent);
    place-items: center;
}

.jda-device-art__laptop { inset: 8% 4% 8% 4%; }
.jda-device-art__tablet { right: 0; bottom: 2%; width: 35%; height: 56%; }
.jda-device-art__phone { bottom: 0; left: 0; width: 19%; height: 45%; }

.jda-testimonial-card,
.jda-value-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.jda-testimonial-card__rating {
    color: var(--jda-primary);
    letter-spacing: 0.18em;
}

.jda-testimonial-card__quote {
    font-family: var(--jda-font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.45;
}

.jda-blog-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 1.5rem;
}

.jda-blog-preview__grid > article:first-child .jda-blog-card__media { aspect-ratio: 16 / 9; }

.jda-contact-cta {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: var(--jda-primary);
    color: #fff;
}

.jda-contact-cta__grid { grid-template-columns: minmax(0, 1fr) auto; }
.jda-contact-cta .jda-eyebrow { color: #fff; opacity: .75; }
.jda-contact-cta p { max-width: 650px; color: rgba(255,255,255,.78); }

.jda-about-hero,
.jda-online-hero,
.jda-structured-hero,
.jda-author-hero {
    padding-block: clamp(4rem, 9vw, 8rem);
}

.jda-about-hero__grid,
.jda-online-hero__grid,
.jda-structured-hero__grid,
.jda-author-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 6rem);
}

.jda-about-hero__portrait,
.jda-structured-hero__media { aspect-ratio: 4 / 5; }

.jda-signature-image { max-width: 180px; margin-top: 1.5rem; }
.jda-signature-text { margin-top: 1.5rem; color: var(--jda-accent); font-family: cursive; font-size: 1.7rem; }

.jda-value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jda-value-card p { color: var(--jda-muted); }

.jda-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--jda-border);
    background: rgba(255,255,255,.72);
}

.jda-filter-bar label {
    display: grid;
    flex: 1 1 180px;
    gap: 0.4rem;
    color: var(--jda-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.jda-filter-bar select,
.jda-contact-form input,
.jda-contact-form textarea {
    width: 100%;
    border: 1px solid var(--jda-border);
    border-radius: var(--jda-button-radius);
    background: #fff;
    color: var(--jda-text);
}

.jda-filter-bar select { min-height: 46px; padding: 0.55rem 2.3rem 0.55rem 0.75rem; }

.jda-directory-intro { margin-bottom: 2.5rem; }

.jda-schedule-table {
    overflow: hidden;
    border: 1px solid var(--jda-border);
    background: #fff;
    box-shadow: var(--jda-shadow-small);
}

.jda-schedule-table__head,
.jda-schedule-table__row {
    display: grid;
    grid-template-columns: .65fr .75fr 1.35fr 1fr .9fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
}

.jda-schedule-table__head {
    background: var(--jda-dark);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jda-schedule-table__row { border-top: 1px solid var(--jda-border); }
.jda-schedule-table__row small { display: block; color: var(--jda-muted); }

.jda-status-label {
    display: inline-flex;
    padding: .25rem .55rem;
    border-radius: 99px;
    background: #e9f4eb;
    color: #236237;
    font-size: .7rem;
    font-weight: 800;
}

.jda-status-label.is-cancelled { background: #f7e5e5; color: #8a2929; }
.jda-schedule-note { margin-top: 1rem; color: var(--jda-muted); font-size: .82rem; }

.jda-event-feature__grid { align-items: stretch; }
.jda-event-feature__copy { align-self: center; }
.jda-event-grid--past { opacity: .82; }

.jda-contact-grid { align-items: start; }

.jda-contact-details,
.jda-contact-form-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--jda-border);
    background: #fff;
    box-shadow: var(--jda-shadow-small);
}

.jda-contact-list,
.jda-detail-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.jda-contact-list strong,
.jda-detail-list dt {
    display: block;
    color: var(--jda-muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jda-contact-list a { text-decoration: none; }

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

.jda-form-grid label {
    display: grid;
    gap: .4rem;
    color: var(--jda-muted);
    font-size: .78rem;
    font-weight: 700;
}

.jda-form-field--wide { grid-column: 1 / -1; }
.jda-contact-form input,
.jda-contact-form textarea { padding: .75rem .85rem; }

.jda-consent {
    display: flex !important;
    grid-column: 1 / -1;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: .65rem !important;
    font-weight: 400 !important;
}

.jda-consent input { width: auto; margin-top: .25rem; }
.jda-honeypot { position: absolute !important; left: -9999px !important; }

.jda-form-notice {
    margin-bottom: 1rem;
    padding: .85rem 1rem;
    border-left: 4px solid #2f7d46;
    background: #edf7ef;
}

.jda-form-notice.is-error { border-color: #a83434; background: #faeeee; }

.jda-map-frame {
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--jda-border);
    background: #e8e5dd;
}

.jda-map-frame iframe { display: block; width: 100%; min-height: 420px; border: 0; }

.jda-structured-hero__copy h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.jda-structured-meta { margin: 1.25rem 0; color: rgba(255,255,255,.68); }

.jda-detail-panel {
    align-self: start;
    padding: 1.5rem;
    border: 1px solid var(--jda-border);
    background: #fff;
    box-shadow: var(--jda-shadow-small);
}

.jda-instructor-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--jda-border);
}

.jda-instructor-strip img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }

.jda-blog-feature__grid { align-items: stretch; }
.jda-blog-feature__media { display: block; }
.jda-blog-feature__media img { width: 100%; height: 100%; object-fit: cover; }

.jda-article-hero { padding-block: clamp(4rem, 8vw, 7rem) 2rem; }
.jda-article-hero__image { width: min(calc(100% - 40px), var(--jda-content)); margin: 2rem auto 0; }
.jda-article-hero__image img { width: 100%; max-height: 700px; object-fit: cover; }
.jda-article-footer { margin-top: 3rem; }
.jda-article-taxonomy { display: flex; flex-wrap: wrap; gap: .5rem; }
.jda-article-taxonomy a { padding: .35rem .65rem; border: 1px solid var(--jda-border); text-decoration: none; font-size: .75rem; }

.jda-author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--jda-border);
    background: var(--jda-light);
}

.jda-author-box img,
.jda-author-hero img { border-radius: 50%; }

.jda-empty-state {
    max-width: 680px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--jda-border);
    background: rgba(255,255,255,.75);
    text-align: center;
}

.jda-empty-state__mark {
    display: inline-grid;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--jda-primary);
    border-radius: 50%;
    color: var(--jda-primary);
    font-family: var(--jda-font-heading);
    place-items: center;
}

.jda-footer-main {
    grid-template-columns: minmax(220px, 1.2fr) minmax(180px, .8fr) minmax(220px, 1fr);
}

.jda-footer-contact p { margin: 0 0 .45rem; }
.jda-footer-contact a { color: rgba(255,255,255,.72); text-decoration: none; }
.jda-social-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.jda-social-links a { display: grid; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; place-items: center; text-decoration: none; }
.jda-social-links--footer { margin-top: 1rem; color: var(--jda-accent); }

@media (max-width: 1080px) {
    .jda-class-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .jda-instagram-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .jda-home-about__facts,
    .jda-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .jda-home-hero__grid,
    .jda-featured-event__grid,
    .jda-featured-video__grid,
    .jda-home-about__grid,
    .jda-online-promo__grid,
    .jda-event-feature__grid,
    .jda-blog-feature__grid,
    .jda-contact-grid,
    .jda-structured-content__grid,
    .jda-about-hero__grid,
    .jda-online-hero__grid,
    .jda-structured-hero__grid,
    .jda-author-hero__grid {
        grid-template-columns: 1fr;
    }

    .jda-home-hero__media { min-height: 440px; }
    .jda-home-hero__media::after { background: linear-gradient(0deg, var(--jda-dark), transparent 52%); }
    .jda-home-hero__copy { padding-bottom: 1rem; }
    .jda-class-grid,
    .jda-event-grid,
    .jda-testimonial-grid,
    .jda-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .jda-style-grid,
    .jda-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .jda-blog-preview__grid { grid-template-columns: 1fr; }
    .jda-contact-cta__grid { grid-template-columns: 1fr; }
    .jda-schedule-table__head { display: none; }
    .jda-schedule-table__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem 1rem;
    }
    .jda-schedule-table__row span::before {
        display: block;
        color: var(--jda-muted);
        content: attr(data-label);
        font-size: .65rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }
    .jda-schedule-row { grid-template-columns: .8fr .8fr 1.5fr; }
    .jda-schedule-row > :nth-child(4),
    .jda-schedule-row > :nth-child(5) { grid-column: span 1; }
    .jda-footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 680px) {
    .jda-container,
    .jda-narrow { width: min(calc(100% - 28px), var(--jda-content)); }
    .jda-section-heading { display: block; }
    .jda-section-action { display: inline-flex; margin-top: 1rem; }
    .jda-class-grid,
    .jda-class-grid--archive,
    .jda-event-grid,
    .jda-testimonial-grid,
    .jda-post-grid,
    .jda-style-grid,
    .jda-value-grid { grid-template-columns: 1fr; }
    .jda-instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .jda-home-about__facts,
    .jda-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .jda-style-card { min-height: 460px; }
    .jda-style-card h3 { margin-top: 335px; }
    .jda-form-grid { grid-template-columns: 1fr; }
    .jda-form-field--wide { grid-column: auto; }
    .jda-schedule-table__row { grid-template-columns: 1fr; }
    .jda-schedule-row { grid-template-columns: 1fr 1fr; }
    .jda-schedule-row > :nth-child(n+3) { grid-column: 1 / -1; }
    .jda-filter-bar { display: grid; }
    .jda-device-art { min-height: 270px; }
    .jda-footer-main { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .jda-class-card,
    .jda-event-card,
    .jda-blog-card,
    .jda-style-card,
    .jda-class-card img,
    .jda-event-card img,
    .jda-blog-card img,
    .jda-style-card img,
    .jda-video-play { transition: none; }
}

/* Version 1.1 finishing details */
.jda-home-about__facts { grid-column: 1 / -1; }
.jda-home-about__portrait { aspect-ratio: 4 / 5; }
.jda-home-about__portrait img,
.jda-online-promo__media img { width: 100%; height: 100%; object-fit: cover; }
.jda-home-about__copy .jda-large-copy { color: var(--jda-muted); }
.jda-section-dark .jda-large-copy,
.jda-about-hero .jda-large-copy,
.jda-online-hero .jda-large-copy,
.jda-structured-hero .jda-large-copy { color: rgba(255,255,255,.72); }
.jda-contact-cta__grid { grid-template-columns: minmax(260px,.8fr) minmax(280px,1fr) auto; }
.jda-section-action { margin-top: 2rem; }
.jda-detail-list li > span,
.jda-detail-list div > dt { display: block; color: var(--jda-muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.jda-featured-event__copy time,
.jda-event-feature time { display: inline-flex; margin-bottom: 1rem; color: var(--jda-primary); font-weight: 700; }
.jda-testimonial-card footer { display: flex; align-items: center; gap: .8rem; margin-top: 1.5rem; }
.jda-testimonial-card footer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.jda-testimonial-card footer p { margin: 0; }
.jda-testimonial-card footer cite { display: block; font-style: normal; font-weight: 800; }
.jda-testimonial-card footer span,
.jda-testimonial-card footer small { display: block; color: var(--jda-muted); font-size: .75rem; }
@media (max-width: 900px) { .jda-contact-cta__grid { grid-template-columns: 1fr; } }

/* Shared commerce and academy interface primitives. */
.jda-button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.jda-button--outline-light { border: 1px solid rgba(255,255,255,.55); background: transparent; color: #fff; }
.jda-button--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.jda-text-link--light { color: #fff; }
.jda-public-notice { margin: 0 0 1.5rem; padding: 1rem 1.15rem; border: 1px solid #d8c9a7; border-left: 4px solid var(--jda-primary); background: #fffaf0; color: #51452f; }
.jda-public-notice p:first-child { margin-top: 0; }
.jda-public-notice p:last-child { margin-bottom: 0; }
.jda-public-notice .jda-button { margin-top: .7rem; }
.jda-public-notice--error { border-color: #e1b7b7; border-left-color: #a83c3c; background: #fff7f7; color: #782e2e; }
.jda-button--wide { width: 100%; justify-content: center; }
.jda-button[disabled] { cursor: progress; opacity: .7; }
.jda-booking-price { display: block; margin-top: 1.25rem; color: var(--jda-primary); font-family: var(--jda-font-heading); font-size: clamp(1.55rem, 3vw, 2.1rem); }
.jda-booking-price small { margin-left: .15rem; color: var(--jda-muted); font-family: var(--jda-font-body); font-size: .78rem; font-weight: 600; }

/* Version 1.4.0: SEO, related content, accessibility and language readiness. */
.jda-breadcrumbs {
    border-bottom: 1px solid var(--jda-border);
    background: #fff;
    color: var(--jda-muted);
    font-size: .78rem;
}
.jda-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
    margin: 0;
    padding: .72rem 0;
    list-style: none;
}
.jda-breadcrumbs li { display: inline-flex; align-items: center; gap: .45rem; }
.jda-breadcrumbs li:not(:last-child)::after { content: "/"; opacity: .55; }
.jda-breadcrumbs a { color: inherit; text-decoration: none; }
.jda-breadcrumbs [aria-current="page"] { color: var(--jda-text); font-weight: 700; }

.jda-content-faq,
.jda-related-content {
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--jda-border);
}
.jda-content-faq > h2,
.jda-related-content > h2 { margin-bottom: 1.35rem; }
.jda-faq-list { display: grid; gap: .75rem; }
.jda-faq-item { overflow: hidden; border: 1px solid var(--jda-border); border-radius: var(--jda-card-radius); background: #fff; }
.jda-faq-item summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 800; }
.jda-faq-item summary::marker { color: var(--jda-primary); }
.jda-faq-item > div { padding: 0 1.2rem 1.2rem; color: var(--jda-muted); }
.jda-card-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jda-related-card .jda-card__image { min-height: 180px; }

.jda-sitemap-section + .jda-sitemap-section { margin-top: 2.5rem; }
.jda-sitemap-section h2 { padding-bottom: .7rem; border-bottom: 1px solid var(--jda-border); }
.jda-sitemap-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem 1.5rem; padding-left: 1.2rem; }
.jda-sitemap-list a { text-decoration: none; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--jda-primary);
    outline-offset: 3px;
}
:where(input, select, textarea)[aria-invalid="true"] {
    border-color: #a52020;
    box-shadow: 0 0 0 2px rgba(165, 32, 32, .18);
}
[hidden] { display: none !important; }

.jda-rtl { direction: rtl; }
.jda-rtl .jda-site-nav,
.jda-rtl .jda-card__body,
.jda-rtl .jda-page-copy,
.jda-rtl .jda-form-field { text-align: right; }
.jda-rtl .jda-sitemap-list,
.jda-rtl .jda-benefit-list,
.jda-rtl .jda-membership-plan-card ul { padding-right: 1.2rem; padding-left: 0; }
.jda-rtl .jda-breadcrumbs li:not(:last-child)::after { transform: scaleX(-1); }

@media (forced-colors: active) {
    .jda-button,
    button,
    input,
    select,
    textarea,
    .jda-card,
    .jda-faq-item { border: 1px solid CanvasText; }
}

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

@media (max-width: 900px) {
    .jda-card-grid--related,
    .jda-sitemap-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .jda-card-grid--related,
    .jda-sitemap-list { grid-template-columns: 1fr; }
    .jda-breadcrumbs ol { white-space: nowrap; overflow-x: auto; flex-wrap: nowrap; }
}

/* --------------------------------------------------------------------------
 * Version 1.5.0 — final reference-screen refinement and layout stability
 * -------------------------------------------------------------------------- */
html { scroll-padding-top: calc(var(--jda-header-height, 76px) + 24px); }
body { overflow-x: clip; }
.jda-site-header { min-height: var(--jda-header-height, 76px); }
.jda-header-inner { min-height: var(--jda-header-height, 76px); gap: clamp(18px, 2.4vw, 42px); }
.jda-site-header--reference { background: rgba(7,7,7,.96); border-bottom: 1px solid rgba(255,255,255,.09); }
.jda-site-header--reference.is-sticky { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.jda-site-header--minimal .jda-header-cta { display: none; }
.jda-site-header--centred .jda-header-inner { justify-content: center; }
.jda-site-header--centred .jda-site-branding { margin-inline: auto; }
.jda-header-cta { flex: 0 0 auto; white-space: nowrap; padding: .78rem 1.2rem; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.jda-menu > li > a { white-space: nowrap; }

.jda-section,
.jda-page-section { position: relative; isolation: isolate; }
.jda-section > .jda-container,
.jda-page-section > .jda-container { min-width: 0; }
.jda-grid > *,
.jda-card-grid > *,
.jda-content-grid > * { min-width: 0; }

.jda-card,
.jda-class-card,
.jda-event-card,
.jda-post-card,
.jda-course-card,
.jda-video-card { overflow: hidden; contain: layout paint; }
.jda-card img,
.jda-class-card img,
.jda-event-card img,
.jda-post-card img,
.jda-course-card img,
.jda-video-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.jda-class-card__media,
.jda-event-card__media,
.jda-post-card__media,
.jda-course-card__media,
.jda-video-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(145deg, #171717, #29241d); }
.jda-event-card--featured .jda-event-card__media,
.jda-featured-article__media { aspect-ratio: 16 / 10; }
.jda-portrait,
.jda-instructor-portrait { aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(145deg, #171717, #29241d); }
.jda-portrait img,
.jda-instructor-portrait img { width: 100%; height: 100%; object-fit: cover; }

img.jda-image-error { visibility: hidden; }
.jda-has-image-error { position: relative; background: linear-gradient(145deg, #171717, #29241d); }
.jda-has-image-error::after { content: ''; position: absolute; inset: 18%; border: 1px solid rgba(216,176,98,.32); background: radial-gradient(circle, rgba(216,176,98,.12), transparent 68%); }

.jda-schedule-table { table-layout: fixed; width: 100%; }
.jda-schedule-table th,
.jda-schedule-table td { overflow-wrap: anywhere; }
.jda-schedule-list__item { min-height: 112px; }

.jda-site-footer { background: #080808; color: rgba(255,255,255,.72); }
.jda-site-footer--minimal .jda-footer-main { grid-template-columns: 1fr auto; align-items: center; padding-block: 34px; }
.jda-site-footer--minimal .jda-footer-brand > p,
.jda-site-footer--minimal .jda-footer-contact { display: none; }
.jda-site-footer--columns .jda-footer-main { grid-template-columns: minmax(220px,1.2fr) repeat(2,minmax(180px,.8fr)); }

.jda-entry-content,
.jda-rich-text { overflow-wrap: anywhere; }
.jda-entry-content iframe,
.jda-entry-content video { max-width: 100%; }

@media (max-width: 1100px) {
    .jda-header-cta { display: none; }
    .jda-site-footer--columns .jda-footer-main { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
    .jda-header-inner { min-height: 68px; }
    .jda-site-nav { overscroll-behavior: contain; }
    .jda-site-nav.is-open { visibility: visible; }
    .jda-menu > li > a { white-space: normal; }
    .jda-schedule-table { display: none; }
    .jda-schedule-mobile { display: grid; gap: 12px; }
    .jda-site-footer--minimal .jda-footer-main,
    .jda-site-footer--columns .jda-footer-main { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
    .jda-schedule-mobile { display: none; }
}

@media (max-width: 620px) {
    :root { --jda-section: clamp(54px, 14vw, 72px); }
    .jda-site-header { min-height: 68px; }
    .jda-section-title { max-width: 18ch; }
    .jda-card-grid { grid-template-columns: 1fr; }
    .jda-event-card--featured .jda-event-card__media,
    .jda-featured-article__media { aspect-ratio: 4 / 3; }
    .jda-footer-bottom > .jda-container { align-items: flex-start; gap: 12px; }
}

@supports (min-height: 100svh) {
    .jda-hero { min-height: min(920px, calc(100svh - var(--jda-header-height, 76px))); }
    .jda-site-nav { height: 100svh; }
}


/* --------------------------------------------------------------------------
 * Version 1.5.3 — final homepage architecture repair
 * Real issue fixed: missing starter content no longer collapses the homepage.
 * -------------------------------------------------------------------------- */
.jda-homepage--reference {
    background: var(--jda-light);
}

.jda-site-header {
    background: #070707;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.jda-header-inner {
    display: grid;
    min-height: var(--jda-header-height, 76px);
    grid-template-columns: minmax(170px, 230px) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2.2rem);
}

.jda-site-nav {
    margin-left: 0;
}

.jda-menu {
    justify-content: center;
}

.jda-header-cta {
    border: 1px solid rgba(216,176,98,.74);
    background: transparent;
    color: #fff;
    white-space: nowrap;
}

.jda-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 18%, rgba(216,176,98,.22), transparent 30%),
        linear-gradient(115deg, #060606 0%, #090909 48%, #17120b 100%);
}

.jda-home-hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.38), transparent 52%);
    content: "";
    pointer-events: none;
}

.jda-home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: clamp(560px, calc(82svh - var(--jda-header-height, 76px)), 760px);
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    padding-block: clamp(3.5rem, 7vw, 6.75rem);
}

.jda-home-hero__copy h1 {
    max-width: 12ch;
    margin-bottom: 1.45rem;
    color: #fff;
    font-size: clamp(3.35rem, 5.55vw, 6.3rem);
    line-height: .98;
}

.jda-home-hero__lead {
    max-width: 47ch;
    color: rgba(255,255,255,.76);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.jda-home-hero__media {
    min-height: clamp(430px, 56svh, 640px);
}

.jda-home-hero__image,
.jda-hero-photo-fallback,
.jda-hero-photo-fallback img,
.jda-home-hero .jda-video-facade {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.jda-hero-photo-fallback {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(216,176,98,.26);
    background: #0c0d0c;
    box-shadow: 0 38px 80px rgba(0,0,0,.35);
}

.jda-hero-photo-fallback img,
.jda-home-hero__image {
    object-fit: cover;
}

.jda-home-hero__notes {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.3rem;
    margin-top: 1.55rem;
    color: rgba(255,255,255,.68);
    font-size: .75rem;
}

.jda-home-hero__notes span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.jda-home-hero__notes span::before {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--jda-accent);
    content: "";
}

.jda-reference-cards {
    position: relative;
    z-index: 3;
    margin-top: -52px;
    padding-bottom: clamp(44px, 6vw, 76px);
}

.jda-reference-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--jda-border);
    border-radius: var(--jda-card-radius);
    background: #fff;
    box-shadow: var(--jda-shadow);
}

.jda-reference-card {
    min-width: 0;
    padding: clamp(1rem, 1.7vw, 1.45rem);
    border-right: 1px solid var(--jda-border);
}

.jda-reference-card:last-child {
    border-right: 0;
}

.jda-reference-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: max(2px, calc(var(--jda-card-radius) - 3px));
    background: #111;
}

.jda-reference-card__image img,
.jda-style-card__media img,
.jda-blog-card__media img,
.jda-home-about__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jda-reference-card__image--video > span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    color: #fff;
    transform: translate(-50%, -50%);
}

.jda-reference-card h2 {
    margin: 0 0 .45rem;
    font-family: var(--jda-font-body);
    font-size: .98rem;
    font-weight: 750;
    line-height: 1.24;
}

.jda-reference-card h2 a {
    text-decoration: none;
}

.jda-reference-card h2 span {
    display: block;
    margin-top: .18rem;
    color: var(--jda-muted);
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jda-reference-card p {
    min-height: 3.5em;
    margin-bottom: .85rem;
    color: var(--jda-muted);
    font-size: .82rem;
    line-height: 1.55;
}

.jda-reference-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .35rem;
    margin-bottom: 1rem;
}

.jda-reference-social-grid span {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    background: #111;
}

.jda-reference-social-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jda-home-section {
    padding-block: clamp(58px, 7vw, 96px);
}

.jda-section-heading {
    margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.jda-style-grid,
.jda-class-grid,
.jda-testimonial-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
}

.jda-style-card,
.jda-blog-card,
.jda-testimonial-card,
.jda-schedule-row {
    border: 1px solid var(--jda-border);
    background: #fff;
    box-shadow: 0 14px 38px rgba(0,0,0,.04);
}

.jda-style-card__media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.jda-home-about__grid {
    align-items: center;
}

.jda-home-about__portrait {
    overflow: hidden;
    border-radius: var(--jda-card-radius);
    background: #111;
}

.jda-online-promo {
    background:
        radial-gradient(circle at 80% 35%, rgba(216,176,98,.2), transparent 26%),
        linear-gradient(110deg, #070707, #11100d 62%, #21170b);
}

.jda-schedule-list--preview {
    max-width: 940px;
    margin-inline: auto;
}

.jda-blog-preview__grid {
    align-items: stretch;
}

@media (max-width: 1180px) {
    .jda-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }
    .jda-menu {
        gap: clamp(.7rem, 1.4vw, 1.15rem);
    }
    .jda-menu a {
        font-size: .62rem;
    }
}

@media (max-width: 980px) {
    .jda-header-cta {
        display: none;
    }
}

@media (max-width: 900px) {
    .jda-header-inner {
        display: flex;
        min-height: 68px;
    }
    .jda-site-nav {
        margin-left: 0;
    }
    .jda-home-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: clamp(3rem, 10vw, 5rem);
    }
    .jda-home-hero__copy h1 {
        font-size: clamp(2.65rem, 11vw, 4.4rem);
    }
    .jda-home-hero__media {
        min-height: clamp(280px, 56vw, 430px);
    }
    .jda-reference-cards {
        margin-top: 0;
        padding-top: 1rem;
    }
    .jda-reference-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .jda-reference-card:nth-child(2n) {
        border-right: 0;
    }
    .jda-reference-card:nth-child(n+3) {
        border-top: 1px solid var(--jda-border);
    }
}

@media (max-width: 620px) {
    .jda-reference-card-grid,
    .jda-style-grid,
    .jda-testimonial-grid,
    .jda-blog-preview__grid {
        grid-template-columns: 1fr;
    }
    .jda-reference-card {
        border-right: 0;
        border-top: 1px solid var(--jda-border);
    }
    .jda-reference-card:first-child {
        border-top: 0;
    }
    .jda-home-hero__copy h1 {
        max-width: 10ch;
    }
}
