:root {
    --ink: #161511;
    --ink-soft: #2b2a25;
    --paper: #fbfaf7;
    --white: #ffffff;
    --mist: #f1f2ef;
    --line: rgba(22, 21, 17, 0.14);
    --gold: #b99a58;
    --wine: #6f1d2f;
    --sage: #68745a;
    --shadow: 0 22px 70px rgba(12, 12, 10, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: 0;
}

h1 {
    max-width: 980px;
    margin-bottom: 22px;
    font-size: 74px;
}

h2 {
    margin-bottom: 24px;
    font-size: 48px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 18px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    color: var(--white);
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.95);
    box-shadow: 0 8px 32px rgba(10, 10, 10, 0.08);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(100% - 48px, 1440px);
    min-height: 88px;
    margin: 0 auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    width: 82px;
    min-width: 82px;
}

.site-brand img,
.custom-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.site-nav {
    justify-self: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li {
    position: relative;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 250px;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 18px 44px rgba(10, 10, 10, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav .sub-menu a {
    min-height: 42px;
    padding: 8px 10px;
    color: var(--ink);
    font-size: 12px;
}

.site-nav .sub-menu a::after {
    display: none;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-actions__link {
    font-size: 14px;
    font-weight: 700;
}

.site-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 12px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: currentColor;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-header.is-scrolled .site-cart,
body:not(.home) .site-header .site-cart {
    border-color: rgba(22, 21, 17, 0.14);
    background: rgba(22, 21, 17, 0.04);
}

.site-cart:hover,
.site-cart:focus-visible {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-1px);
}

.site-cart__count {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    place-items: center;
    color: var(--white);
    background: var(--wine);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.site-nav .cfd-menu-cart {
    display: none;
}

.site-nav .cfd-menu-cart__link::after {
    display: none;
}

.button,
.button:visited,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid var(--gold);
    border-radius: 0;
    color: var(--ink);
    background: var(--gold);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: var(--ink);
    background: #c9ad69;
    transform: translateY(-1px);
}

.button--light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.button--ghost {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--ink);
    background: var(--white);
}

.button--dark {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
    color: var(--white);
    background: var(--wine);
    border-color: var(--wine);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 0;
    color: inherit;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero__media,
.hero__media img,
.hero__media video,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media img,
.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__shade {
    background: linear-gradient(90deg, rgba(10, 10, 8, 0.72), rgba(10, 10, 8, 0.35) 48%, rgba(10, 10, 8, 0.5)), linear-gradient(0deg, rgba(10, 10, 8, 0.7), rgba(10, 10, 8, 0) 42%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1440px);
    margin: 0 auto;
    padding: 180px 0 138px;
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 21px;
}

.hero__actions,
.summer__actions,
.commerce__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__meta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__meta span {
    min-height: 58px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.eyebrow,
.section__kicker {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.section {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 112px 0;
}

.section--dark {
    width: 100%;
    max-width: none;
    padding-right: max(24px, calc((100% - 1320px) / 2));
    padding-left: max(24px, calc((100% - 1320px) / 2));
    color: var(--white);
    background: var(--ink);
}

.section--split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro__grid,
.feature,
.summer {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.intro__copy {
    color: rgba(22, 21, 17, 0.72);
    font-size: 19px;
}

.section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 52px;
}

.section__head h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.program-card {
    min-height: 330px;
    padding: 34px;
    background: #211f1a;
}

.program-card span {
    display: block;
    margin-bottom: 86px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.program-card h3 {
    margin-bottom: 18px;
}

.program-card p {
    color: rgba(255, 255, 255, 0.72);
}

.feature__image,
.summer__image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--mist);
}

.summer__poster {
    display: grid;
    place-items: center;
    padding: 28px;
    background: #14120f;
}

.feature__image img,
.summer__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__image img {
    position: absolute;
    inset: 0;
    object-position: 50% 48%;
}

.summer__poster img {
    width: min(100%, 760px);
    height: auto;
    max-height: 720px;
    object-fit: contain;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.feature__content p,
.summer__content p,
.commerce p {
    color: rgba(22, 21, 17, 0.72);
    font-size: 18px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0;
}

.metric-row div {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.metric-row strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.metric-row span {
    display: block;
    margin-top: 8px;
    color: rgba(22, 21, 17, 0.62);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.summer {
    width: 100%;
    max-width: none;
    padding-right: max(24px, calc((100% - 1320px) / 2));
    padding-left: max(24px, calc((100% - 1320px) / 2));
    background: var(--mist);
}

.summer__content {
    max-width: 650px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.faculty-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

.faculty-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.faculty-card h3,
.faculty-card p {
    padding-right: 26px;
    padding-left: 26px;
}

.faculty-card h3 {
    margin-top: 24px;
    margin-bottom: 10px;
}

.faculty-card p {
    min-height: 74px;
    color: rgba(22, 21, 17, 0.68);
}

.commerce {
    background: var(--white);
}

.visual-story {
    color: var(--white);
    background: #11100d;
}

.visual-story__inner {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 58px;
    align-items: center;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 104px 0;
}

.visual-story__copy {
    max-width: 520px;
}

.visual-story__copy h2 {
    margin-bottom: 22px;
}

.visual-story__copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.visual-story__media {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 18px;
}

.visual-story__panel {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    background: #211f1a;
}

.visual-story__panel--wide {
    grid-row: 1 / -1;
}

.visual-story__panel img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
}

.visual-story__panel:nth-child(2) img {
    object-position: 50% 38%;
}

.visual-story__panel:nth-child(3) img {
    object-position: 50% 45%;
}

.gallery-main {
    background: var(--paper);
}

.gallery-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 78vh;
    overflow: hidden;
    color: var(--white);
    background: #11100d;
}

.gallery-hero__image,
.gallery-hero__image img,
.gallery-hero__shade {
    position: absolute;
    inset: 0;
}

.gallery-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    filter: saturate(0.9) contrast(1.05);
}

.gallery-hero__shade {
    background: linear-gradient(90deg, rgba(17, 16, 13, 0.88), rgba(17, 16, 13, 0.44) 46%, rgba(17, 16, 13, 0.12)), linear-gradient(0deg, rgba(17, 16, 13, 0.68), rgba(17, 16, 13, 0.08) 58%);
}

.gallery-hero__content {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 170px 0 86px;
}

.gallery-hero__content h1 {
    margin-bottom: 18px;
    color: var(--white);
}

.gallery-hero__content p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
}

.gallery-section {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 96px 0 118px;
}

.gallery-section__head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 48px;
    align-items: end;
    margin-bottom: 34px;
}

.gallery-section__head p:last-child {
    color: rgba(22, 21, 17, 0.7);
    font-size: 18px;
}

.gallery-collection {
    padding: 54px 0 0;
}

.gallery-collection + .gallery-collection {
    margin-top: 92px;
    border-top: 1px solid rgba(22, 21, 17, 0.12);
}

.gallery-collection__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 24px;
}

.gallery-collection__intro h2 {
    max-width: 760px;
}

.gallery-collection__intro > p:last-child {
    color: rgba(22, 21, 17, 0.68);
    font-size: 17px;
}

.gallery-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.gallery-featured__item,
.gallery-grid__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #211f1a;
}

.gallery-featured__item {
    aspect-ratio: 4 / 3;
}

.gallery-featured__item.is-primary {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-grid__item {
    aspect-ratio: 4 / 5;
}

.gallery-featured__item img,
.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.03);
    transform: scale(1.01);
    transition: transform 260ms ease, filter 260ms ease;
}

.gallery-featured__item:hover img,
.gallery-grid__item:hover img {
    filter: saturate(1) contrast(1.06);
    transform: scale(1.035);
}

.gallery-collection:nth-of-type(2) .gallery-featured__item.is-primary img {
    object-position: 50% 35%;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #11100d;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 46px;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 72px 0 54px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer a {
    color: var(--white);
}

.site-footer__policy-button {
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.site-footer__policy-button:hover,
.site-footer__policy-button:focus-visible {
    text-decoration: underline;
}

.site-footer__brand img {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
    object-fit: contain;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-footer__credit:hover {
    color: var(--white);
}

.site-footer__credit-heart {
    color: #c8a76a;
}

.site-footer__credit img {
    width: 58px;
    height: auto;
    max-height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.site-footer__credit strong {
    color: var(--white);
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    width: min(100% - 44px, 1120px);
    margin: 0 auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    background: rgba(17, 16, 13, 0.96);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.cookie-banner p {
    margin-bottom: 12px;
}

.cookie-banner__eyebrow {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-banner__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.cookie-banner__choices label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.cookie-banner__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-banner__actions .button {
    min-height: 44px;
    white-space: nowrap;
}

.page-main,
.shop-main {
    padding-top: 110px;
}

.page-hero {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: 88px 0 40px;
}

.page-hero h1 {
    color: var(--ink);
}

.page-content {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding-bottom: 96px;
}

.page-content > p,
.page-content > h2,
.page-content > h3,
.page-content > ul,
.page-content > ol {
    max-width: 880px;
}

.page-content a {
    border-bottom: 1px solid currentColor;
    color: var(--wine);
}

.cfd-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 54px;
    padding-bottom: 46px;
    border-bottom: 1px solid var(--line);
}

.cfd-page-intro h2 {
    margin-bottom: 0;
}

.cfd-page-intro p {
    margin-bottom: 0;
    color: rgba(22, 21, 17, 0.7);
    font-size: 19px;
}

.cfd-rich-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
    margin: 52px 0;
}

.cfd-rich-split--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.cfd-rich-image {
    min-height: 420px;
    overflow: hidden;
    background: var(--mist);
}

.cfd-rich-image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.cfd-rich-copy p {
    color: rgba(22, 21, 17, 0.72);
    font-size: 18px;
}

.cfd-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 38px 0 54px;
}

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

.cfd-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cfd-info-card,
.cfd-course-card,
.cfd-teacher-card,
.cfd-contact-card {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--white);
}

.cfd-info-card strong,
.cfd-course-card strong,
.cfd-contact-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-info-card h3,
.cfd-course-card h3,
.cfd-teacher-card h3,
.cfd-contact-card h3 {
    margin-bottom: 14px;
}

.cfd-info-card p,
.cfd-course-card p,
.cfd-teacher-card p,
.cfd-contact-card p {
    color: rgba(22, 21, 17, 0.7);
}

.cfd-course-card ul,
.cfd-check-list {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.cfd-course-card li,
.cfd-check-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(22, 21, 17, 0.72);
}

.cfd-course-card li::before,
.cfd-check-list li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    content: "";
}

.cfd-teacher-card {
    padding: 0;
    overflow: hidden;
}

.cfd-teacher-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cfd-teacher-card h3,
.cfd-teacher-card p {
    padding-right: 22px;
    padding-left: 22px;
}

.cfd-teacher-card h3 {
    margin-top: 22px;
}

.cfd-teacher-card p:last-child {
    padding-bottom: 22px;
}

.cfd-teacher-card--text {
    padding: 24px;
}

.cfd-teacher-card--text h3,
.cfd-teacher-card--text p {
    padding-right: 0;
    padding-left: 0;
}

.cfd-teacher-card--text h3 {
    margin-top: 0;
}

.cfd-teacher-card__role {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.cfd-section-title {
    max-width: 860px;
    margin-top: 58px;
}

.cfd-section-title p {
    color: rgba(22, 21, 17, 0.7);
    font-size: 18px;
}

.cfd-program-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.cfd-program-list li {
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.cfd-audition-box {
    margin: 34px 0;
    padding: 28px;
    border: 1px solid var(--gold);
    background: rgba(185, 154, 88, 0.12);
}

.cfd-audition-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--wine);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-band {
    margin: 54px 0;
    padding: 44px;
    color: var(--white);
    background: #161511;
}

.cfd-band h2,
.cfd-band h3 {
    color: var(--white);
}

.cfd-band p,
.cfd-band li {
    color: rgba(255, 255, 255, 0.74);
}

.cfd-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin: 58px 0 0;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--mist);
}

.cfd-cta h2,
.cfd-cta p {
    margin-bottom: 0;
}

.cfd-cta p {
    margin-top: 8px;
    color: rgba(22, 21, 17, 0.68);
}

.cfd-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cfd-timeline {
    display: grid;
    gap: 1px;
    margin: 34px 0;
    background: var(--line);
}

.cfd-timeline div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    padding: 22px;
    background: var(--white);
}

.cfd-timeline strong {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-purchase-steps {
    gap: 12px;
    margin-top: 22px;
}

.cfd-purchase-steps article {
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.cfd-purchase-steps strong {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    font-size: 13px;
}

.cfd-purchase-steps h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.cfd-purchase-steps p {
    margin: 0;
    font-size: 14px;
}

.cfd-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0;
}

.cfd-map-note {
    margin-top: 38px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--white);
}

.summer-page-poster {
    margin: 0 0 34px;
    padding: 18px;
    background: #14120f;
}

.summer-page-poster img {
    width: 100%;
    height: auto;
}

.summer-facts,
.summer-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0;
}

.summer-facts div,
.summer-detail-grid div {
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--white);
}

.summer-facts strong,
.summer-detail-grid strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.summer-teachers {
    columns: 2;
    margin-bottom: 34px;
}

.shop-shell {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: 72px 0 110px;
}

.woocommerce a {
    border-bottom: 0;
}

.woocommerce .woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(12, 12, 10, 0.08);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    color: var(--gold);
}

.woocommerce .woocommerce-result-count {
    margin: 0 0 22px;
    color: rgba(22, 21, 17, 0.58);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce .woocommerce-ordering {
    margin: -54px 0 28px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
    min-height: 50px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.woocommerce .select2-container .select2-selection--single {
    display: flex;
    align-items: center;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: var(--ink);
    line-height: 1.4;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
}

.woocommerce-shop .page-title {
    display: none;
}

.cfd-shop-intro {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.cfd-shop-intro h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(48px, 6vw, 78px);
}

.cfd-shop-intro p:not(.eyebrow) {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(22, 21, 17, 0.7);
    font-size: 19px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 420px));
    justify-content: center;
    gap: 28px;
    margin: 34px 0 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    max-width: 420px;
    margin: 0;
    padding: 0 0 24px;
    overflow: hidden;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.08);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0 0 22px;
    object-fit: contain;
    padding: 18px;
    background: #171511;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    padding: 0 24px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.05;
}

.woocommerce ul.products li.product .price {
    display: block;
    margin: 0 24px 20px;
    color: var(--wine);
    font-size: 18px;
    font-weight: 900;
}

.woocommerce ul.products li.product .button {
    width: calc(100% - 48px);
    margin: auto 24px 0;
}

.single-product .shop-shell {
    width: min(100% - 48px, 1240px);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 54px;
    align-items: start;
}

.woocommerce div.product::before,
.woocommerce div.product::after {
    content: none;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none;
    width: auto;
    margin: 0;
}

.woocommerce div.product div.images {
    overflow: hidden;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: #161511;
    box-shadow: var(--shadow);
}

.woocommerce div.product div.images img {
    width: 100%;
    object-fit: cover;
}

.woocommerce div.product .woocommerce-product-gallery__trigger {
    top: 18px;
    right: 18px;
    border: 0;
    background: rgba(251, 250, 247, 0.92);
}

.woocommerce div.product div.summary {
    position: sticky;
    top: 118px;
    padding: 36px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
    box-shadow: 0 18px 54px rgba(12, 12, 10, 0.1);
}

.woocommerce div.product .product_title {
    margin-bottom: 14px;
    font-size: 52px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    margin-bottom: 22px;
    color: var(--wine);
    font-size: 24px;
    font-weight: 900;
}

.woocommerce-product-details__short-description {
    margin-bottom: 26px;
    color: rgba(22, 21, 17, 0.72);
    font-size: 18px;
}

.woocommerce div.product form.cart {
    display: grid;
    gap: 18px;
    margin: 0;
}

.woocommerce div.product form.cart .variations {
    width: 100%;
    margin: 0;
    border: 0;
}

.woocommerce div.product form.cart .variations tr {
    display: grid;
    gap: 8px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    display: block;
    padding: 0;
    line-height: 1.4;
}

.woocommerce div.product form.cart .variations label,
.woocommerce form .form-row label {
    color: rgba(22, 21, 17, 0.72);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
}

.woocommerce div.product form.cart .reset_variations {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    color: var(--wine);
    font-size: 13px;
    font-weight: 800;
}

.woocommerce-variation.single_variation {
    min-height: 0;
}

.woocommerce div.product form.cart .single_variation_wrap {
    display: grid;
    gap: 16px;
    padding-top: 8px;
}

.woocommerce div.product form.cart .woocommerce-variation-price .price {
    display: block;
    margin-bottom: 0;
}

.woocommerce div.product form.cart .button {
    width: 100%;
    min-height: 56px;
}

.woocommerce div.product .product_meta {
    display: none;
}

.woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 34px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    content: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 0;
    color: var(--wine);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    display: none;
}

.woocommerce table.shop_table {
    overflow: hidden;
    border: 1px solid rgba(22, 21, 17, 0.1);
    border-collapse: separate;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.07);
}

.woocommerce table.shop_table th {
    padding: 18px;
    color: rgba(22, 21, 17, 0.62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce table.shop_table td {
    padding: 18px;
    border-top-color: rgba(22, 21, 17, 0.08);
    color: var(--ink);
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 82px;
    height: 82px;
    object-fit: cover;
}

.woocommerce table.shop_table .product-name a {
    color: var(--ink);
    font-weight: 900;
}

.woocommerce a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--wine) !important;
    font-size: 22px;
    line-height: 1;
}

.woocommerce a.remove:hover {
    color: var(--white) !important;
    background: var(--wine);
}

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content {
    width: min(100% - 48px, 1240px);
}

.woocommerce-cart .coupon {
    display: inline-flex;
    gap: 10px;
}

.woocommerce-cart .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: min(100%, 460px);
    padding: 30px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.08);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout h3 {
    margin-bottom: 18px;
    font-size: 28px;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon {
    margin: 0 0 24px;
    padding: 26px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 34px;
    align-items: start;
}

.woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: auto;
}

.woocommerce .col2-set::before,
.woocommerce .col2-set::after {
    content: none;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: none;
    width: auto;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
    padding: 30px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.07);
}

.woocommerce-checkout .woocommerce-billing-fields {
    margin-bottom: 24px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
    margin: 0;
    padding: 0 0 8px;
}

.woocommerce-checkout #payment {
    border-radius: 0;
    background: var(--mist);
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 20px;
    border-bottom-color: var(--line);
}

.woocommerce-checkout #payment div.payment_box {
    margin: 14px 0 0;
    color: var(--ink);
    background: var(--white);
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: var(--white);
}

.woocommerce-checkout #payment div.place-order {
    padding: 20px;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 56px;
}

.woocommerce .woocommerce-privacy-policy-text {
    color: rgba(22, 21, 17, 0.62);
    font-size: 13px;
}

.woocommerce-account .woocommerce {
    display: grid;
    gap: 24px;
}

.woocommerce-account #customer_login {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
    content: none;
}

.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2 {
    float: none;
    width: auto;
    padding: 30px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.07);
}

.woocommerce-account #customer_login h2 {
    margin-bottom: 18px;
    font-size: 34px;
}

.woocommerce form.login,
.woocommerce form.register {
    margin: 0;
    padding: 0;
    border: 0;
}

.woocommerce form .password-input {
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    border-color: var(--gold);
    background: rgba(185, 154, 88, 0.16);
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 30px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
}

.single-product .shop-main {
    background:
        linear-gradient(180deg, rgba(185, 154, 88, 0.1), rgba(185, 154, 88, 0) 320px),
        var(--paper);
}

.single-product .shop-shell {
    width: min(100% - 64px, 1320px);
    padding-top: 94px;
}

.single-product .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

.single-product .woocommerce div.product {
    grid-template-columns: minmax(420px, 0.86fr) minmax(420px, 0.74fr);
    gap: 46px;
}

.single-product .woocommerce div.product div.images {
    display: grid;
    align-self: start;
    min-height: auto;
    padding: 26px;
    border: 1px solid rgba(185, 154, 88, 0.35);
    background:
        linear-gradient(135deg, rgba(185, 154, 88, 0.18), rgba(185, 154, 88, 0) 42%),
        #15130f;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    display: grid;
    place-items: center;
}

.single-product .woocommerce div.product div.images img {
    width: min(100%, 660px);
    max-height: calc(100svh - 190px);
    margin: 0 auto;
    object-fit: contain;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.single-product .woocommerce div.product div.summary {
    top: 124px;
    padding: 46px 38px 38px;
    border-color: rgba(185, 154, 88, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.96)),
        var(--white);
    box-shadow: 0 28px 80px rgba(12, 12, 10, 0.11);
}

.single-product .woocommerce div.product div.summary::before {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    content: "Iscrizione online";
}

.single-product .woocommerce div.product .product_title {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(42px, 4vw, 62px);
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
    color: var(--wine);
    font-size: 26px;
}

.single-product .woocommerce-product-details__short-description {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(22, 21, 17, 0.1);
}

.single-product .woocommerce div.product form.cart {
    gap: 20px;
}

.single-product .woocommerce div.product form.cart .variations label {
    color: var(--ink);
}

.single-product .woocommerce div.product form.cart .variations select {
    min-height: 56px;
    border-color: rgba(22, 21, 17, 0.18);
    background: rgba(255, 255, 255, 0.72);
}

.single-product .woocommerce div.product form.cart .reset_variations {
    color: var(--wine);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:focus-visible,
.woocommerce button.button.alt:focus-visible,
.woocommerce input.button.alt:focus-visible {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.single-product .woocommerce div.product form.cart .button {
    min-height: 58px;
    letter-spacing: 0;
}

.single-product .woocommerce div.product .woocommerce-tabs {
    margin-top: 18px;
    padding: 40px;
    border-color: rgba(185, 154, 88, 0.22);
    background: var(--white);
}

.single-product .woocommerce div.product .woocommerce-tabs .panel {
    max-width: 850px;
}

.single-product .woocommerce div.product .woocommerce-tabs .panel p,
.single-product .woocommerce div.product .woocommerce-tabs .panel li {
    color: rgba(22, 21, 17, 0.72);
    font-size: 18px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.cfd-enrollment input,
.cfd-enrollment select,
.cfd-enrollment textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.cfd-enrollment {
    display: grid;
    gap: 22px;
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.cfd-enrollment label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.cfd-form-section {
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.cfd-form-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.cfd-form-section h3 {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-enrollment input[readonly] {
    color: rgba(22, 21, 17, 0.72);
    background: var(--mist);
}

.cfd-enrollment input[type="file"] {
    padding: 12px;
}

.cfd-enrollment label span {
    color: rgba(22, 21, 17, 0.62);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
}

.cfd-checkbox {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 12px !important;
    padding: 18px;
    border: 1px solid var(--line);
}

.cfd-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.cfd-enrollment textarea,
.cfd-enrollment__full {
    grid-column: 1 / -1;
}

.cfd-notice {
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: var(--mist);
}

.cfd-enrollment-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cfd-enrollment-list li {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
}

.cfd-enrollment-list strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
}

.cfd-enrollment-list span,
.cfd-enrollment-list small {
    color: rgba(22, 21, 17, 0.68);
}

.cfd-enrollment-list em {
    width: fit-content;
    margin-top: 8px;
    padding: 6px 10px;
    color: var(--ink);
    background: rgba(185, 154, 88, 0.2);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 40px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: 88px;
        right: 24px;
        left: 24px;
        display: none;
        padding: 22px;
        color: var(--ink);
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        display: grid;
        gap: 4px;
    }

    .site-nav .sub-menu {
        position: static;
        display: grid;
        min-width: 0;
        margin: 0 0 6px 14px;
        padding: 0 0 0 12px;
        border: 0;
        border-left: 1px solid rgba(22, 21, 17, 0.14);
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav .cfd-menu-cart {
        display: block;
        margin-top: 10px;
    }

    .site-nav .cfd-menu-cart__link {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid var(--gold);
        color: var(--ink);
        background: var(--gold);
    }

    .site-actions {
        display: none;
    }

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

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

@media (max-width: 820px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .site-header__inner,
    .hero__content,
    .section,
    .page-hero,
    .page-content,
    .shop-shell,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(100% - 32px, 1320px);
    }

    .hero {
        min-height: 760px;
    }

    .hero__content {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .hero__lead {
        font-size: 18px;
    }

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

    .section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .intro__grid,
    .feature,
    .summer,
    .section--split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section__head {
        display: grid;
        gap: 20px;
    }

    .program-grid,
    .faculty-grid,
    .visual-story__inner,
    .visual-story__media,
    .gallery-section__head,
    .site-footer__inner,
    .summer-facts,
    .summer-detail-grid,
    .cfd-enrollment__grid,
    .cfd-page-intro,
    .cfd-rich-split,
    .cfd-rich-split--reverse,
    .cfd-card-grid,
    .cfd-card-grid--two,
    .cfd-card-grid--four,
    .cfd-contact-grid,
    .cfd-cta {
        grid-template-columns: 1fr;
    }

    .summer-teachers {
        columns: 1;
    }

    .program-card {
        min-height: 250px;
    }

    .program-card span {
        margin-bottom: 40px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__credit {
        white-space: normal;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 18px;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-banner__actions .button {
        width: 100%;
        justify-content: center;
    }

    .feature__image,
    .summer__image {
        min-height: 360px;
    }

    .visual-story__inner {
        width: min(100% - 32px, 1320px);
        padding: 76px 0;
    }

    .visual-story__media {
        gap: 14px;
    }

    .visual-story__panel,
    .visual-story__panel--wide {
        grid-row: auto;
        min-height: 260px;
    }

    .gallery-hero {
        min-height: 640px;
    }

    .gallery-hero__content,
    .gallery-section {
        width: min(100% - 32px, 1320px);
    }

    .gallery-hero__content {
        padding: 150px 0 64px;
    }

    .gallery-collection__intro,
    .gallery-featured {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        grid-template-rows: auto;
    }

    .gallery-featured__item,
    .gallery-featured__item.is-primary {
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

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

    .summer__poster {
        padding: 16px;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .cfd-enrollment {
        padding: 22px;
    }

    .cfd-rich-image {
        min-height: 320px;
    }

    .cfd-band,
    .cfd-cta,
    .cfd-map-note {
        padding: 26px;
    }

    .cfd-timeline div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .woocommerce .woocommerce-ordering {
        float: none;
        margin: 0 0 24px;
    }

    .woocommerce-shop .page-title,
    .woocommerce div.product .product_title {
        font-size: 40px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 0;
    }

    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .single-product .shop-shell {
        width: min(100% - 32px, 1320px);
        padding-top: 58px;
    }

    .single-product .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-product .woocommerce div.product div.images {
        padding: 14px;
    }

    .single-product .woocommerce div.product div.images img {
        max-height: none;
    }

    .woocommerce div.product div.summary {
        position: static;
        padding: 24px;
    }

    .single-product .woocommerce div.product div.summary {
        position: static;
        padding: 28px 22px;
    }

    .single-product .woocommerce div.product .product_title {
        font-size: 38px;
    }

    .woocommerce div.product .woocommerce-tabs {
        padding: 24px;
    }

    .single-product .woocommerce div.product .woocommerce-tabs {
        padding: 24px;
    }

    .woocommerce-cart .coupon {
        display: grid;
        width: 100%;
    }

    .woocommerce-cart .cart-collaterals {
        justify-content: stretch;
    }

    .woocommerce-cart .cart-collaterals .cart_totals,
    .woocommerce-page .cart-collaterals .cart_totals {
        width: 100%;
    }

    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        text-align: left !important;
    }

    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        margin-right: 12px;
        color: rgba(22, 21, 17, 0.58);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: auto;
        grid-row: auto;
    }

    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-additional-fields,
    .woocommerce-checkout #order_review {
        padding: 22px;
    }

    .woocommerce-account #customer_login {
        grid-template-columns: 1fr;
    }

    .woocommerce-account #customer_login .col-1,
    .woocommerce-account #customer_login .col-2,
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .gallery-collection {
        padding-top: 36px;
    }

    .gallery-collection + .gallery-collection {
        margin-top: 64px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid__item {
        aspect-ratio: 4 / 5;
    }

    .gallery-featured__item,
    .gallery-featured__item.is-primary {
        aspect-ratio: 4 / 5;
    }
}

/* Final WooCommerce product layout */
.single-product .shop-main {
    padding-top: 110px;
    background:
        linear-gradient(180deg, rgba(185, 154, 88, 0.13), rgba(185, 154, 88, 0) 360px),
        var(--paper);
}

.single-product .shop-shell {
    width: min(100% - 64px, 1180px);
    padding: 74px 0 104px;
}

.single-product .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 34px;
    align-items: start;
}

.single-product .woocommerce div.product div.summary {
    grid-column: 1;
    grid-row: 1;
    position: static;
    min-height: 0;
    padding: 44px;
    border: 1px solid rgba(185, 154, 88, 0.32);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 62px rgba(12, 12, 10, 0.09);
}

.single-product .woocommerce div.product div.images,
.single-product.woocommerce div.product div.images,
.single-product.woocommerce-page div.product div.images {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 100%;
    max-width: 380px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(185, 154, 88, 0.36);
    background: #15130f;
    box-shadow: 0 22px 60px rgba(12, 12, 10, 0.16);
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    display: block;
}

.single-product .woocommerce div.product div.images img {
    width: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    box-shadow: none;
}

.single-product .woocommerce div.product .woocommerce-product-gallery__trigger {
    top: 24px;
    right: 24px;
}

.single-product .woocommerce div.product div.summary::before {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    content: "Ballet Summer School";
}

.single-product .woocommerce div.product .product_title {
    max-width: 760px;
    margin-bottom: 16px;
    font-size: clamp(42px, 4.8vw, 64px);
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
    margin-bottom: 18px;
    color: var(--wine);
    font-size: 25px;
    font-weight: 900;
}

.single-product .woocommerce-product-details__short-description {
    max-width: 760px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(22, 21, 17, 0.1);
    color: rgba(22, 21, 17, 0.72);
}

.cfd-product-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.cfd-product-highlights li {
    padding: 14px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--mist);
}

.cfd-product-highlights strong,
.cfd-product-highlights span {
    display: block;
}

.cfd-product-highlights strong {
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-product-highlights span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.single-product .woocommerce div.product form.cart {
    max-width: 760px;
    gap: 18px;
}

.single-product .woocommerce div.product form.cart .variations {
    display: block;
    padding: 18px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: rgba(241, 242, 239, 0.68);
}

.single-product .woocommerce div.product form.cart .variations select {
    min-height: 54px;
    background: var(--white);
}

.single-product .woocommerce div.product form.cart .button {
    min-height: 58px;
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.single-product .woocommerce div.product form.cart .button:hover,
.single-product .woocommerce div.product form.cart .button:focus-visible {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.single-product .woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
}

.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}

.single-product .woocommerce div.product .woocommerce-tabs .panel {
    max-width: none;
    padding: 34px 38px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
}

.single-product .woocommerce div.product .woocommerce-tabs .panel h2 {
    display: block;
    margin-bottom: 18px;
    font-size: 34px;
}

@media (max-width: 920px) {
    .single-product .shop-shell {
        width: min(100% - 32px, 1180px);
        padding-top: 50px;
    }

    .single-product .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .single-product .woocommerce div.product div.summary,
    .single-product .woocommerce div.product div.images,
    .single-product.woocommerce div.product div.images,
    .single-product.woocommerce-page div.product div.images {
        grid-column: 1;
        grid-row: auto;
        justify-self: stretch;
        max-width: none;
    }

    .single-product .woocommerce div.product div.images {
        order: -1;
    }

    .single-product .woocommerce div.product div.summary {
        padding: 28px 22px;
    }

    .single-product .woocommerce div.product .product_title {
        font-size: 38px;
    }

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

    .single-product .woocommerce div.product .woocommerce-tabs .panel {
        padding: 24px;
    }
}

/* Bespoke Summer School product page */
.cfd-product-main {
    padding-top: 82px;
    background:
        linear-gradient(180deg, rgba(185, 154, 88, 0.12), rgba(251, 250, 247, 0) 340px),
        var(--paper);
}

.cfd-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 24px;
    align-items: stretch;
    width: min(100% - 56px, 1400px);
    margin: 0 auto;
    padding: 44px 0 34px;
}

.cfd-product-hero__copy {
    display: grid;
    align-content: end;
    min-height: 650px;
    padding: 56px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 16, 13, 0.94) 0%, rgba(17, 16, 13, 0.74) 45%, rgba(17, 16, 13, 0.18) 100%),
        url("https://cfdanzaverona.doribene.it/wp-content/themes/cfdanzaverona/assets/images/gallery/cfd-dance-0523.jpg") center / cover;
    box-shadow: 0 28px 80px rgba(12, 12, 10, 0.16);
}

.cfd-product-hero__copy h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(54px, 6vw, 92px);
}

.cfd-product-lead {
    max-width: 700px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
}

.cfd-product-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: rgba(255, 255, 255, 0.18);
}

.cfd-product-facts div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.cfd-product-facts dt,
.cfd-product-buy__label {
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-product-facts dd {
    margin: 0;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.cfd-product-buy {
    align-self: center;
    padding: 34px;
    border: 1px solid rgba(185, 154, 88, 0.32);
    border-top: 5px solid var(--gold);
    background: var(--white);
    box-shadow: 0 28px 80px rgba(12, 12, 10, 0.11);
}

.cfd-product-buy h2 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.02;
}

.cfd-product-buy p.price {
    margin-bottom: 24px;
    color: var(--wine);
    font-size: 30px;
    font-weight: 900;
}

.cfd-product-buy form.cart {
    display: grid;
    gap: 16px;
    margin: 0;
}

.cfd-product-buy .woocommerce-notices-wrapper {
    margin-bottom: 18px;
}

.cfd-product-buy .woocommerce-message {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(185, 154, 88, 0.25);
    background: var(--mist);
    color: rgba(22, 21, 17, 0.78);
    font-size: 14px;
}

.cfd-product-buy .woocommerce-message .button {
    display: none;
}

.cfd-product-buy table.variations,
.cfd-product-buy table.variations tbody,
.cfd-product-buy table.variations tr,
.cfd-product-buy table.variations th,
.cfd-product-buy table.variations td {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.cfd-product-buy table.variations label {
    display: block;
    margin-bottom: 8px;
    color: rgba(22, 21, 17, 0.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-product-buy table.variations select {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(22, 21, 17, 0.16);
    border-radius: 0;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
}

.cfd-product-buy .reset_variations,
.cfd-product-buy .quantity {
    display: none !important;
}

.cfd-product-buy .single_variation_wrap {
    display: grid;
    gap: 14px;
}

.cfd-product-buy .woocommerce-variation-price .price {
    display: block;
    margin-bottom: 0;
    font-size: 26px;
}

.cfd-product-buy .single_add_to_cart_button {
    width: 100%;
    min-height: 58px;
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.cfd-product-buy .single_add_to_cart_button:hover,
.cfd-product-buy .single_add_to_cart_button:focus-visible {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.cfd-product-buy__note {
    margin: 18px 0 0;
    color: rgba(22, 21, 17, 0.62);
    font-size: 13px;
}

.cfd-product-story {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    width: min(100% - 64px, 1120px);
    margin: 0 auto;
    padding: 44px 0 110px;
}

.cfd-product-poster {
    position: sticky;
    top: 120px;
    margin: 0;
    padding: 12px;
    background: #15130f;
    box-shadow: 0 18px 50px rgba(12, 12, 10, 0.15);
}

.cfd-product-poster img {
    width: 100%;
    height: auto;
}

.cfd-product-story__content {
    padding: 40px;
    border: 1px solid rgba(22, 21, 17, 0.1);
    background: var(--white);
}

.cfd-product-story__content h2 {
    max-width: 760px;
}

.cfd-product-description {
    max-width: 760px;
    color: rgba(22, 21, 17, 0.72);
    font-size: 18px;
}

.cfd-product-description ul {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    padding-left: 20px;
}

.cfd-product-note {
    display: grid;
    gap: 5px;
    margin-top: 28px;
    padding: 20px;
    border-left: 3px solid var(--gold);
    background: var(--mist);
}

.cfd-product-note strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cfd-product-note span {
    color: rgba(22, 21, 17, 0.68);
}

@media (max-width: 980px) {
    .cfd-product-hero,
    .cfd-product-story {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 1120px);
    }

    .cfd-product-hero {
        padding-top: 44px;
    }

    .cfd-product-hero__copy {
        min-height: 560px;
        padding: 34px;
    }

    .cfd-product-facts {
        grid-template-columns: 1fr;
    }

    .cfd-product-buy {
        align-self: stretch;
        padding: 26px;
    }

    .cfd-product-poster {
        position: static;
        max-width: 340px;
    }

    .cfd-product-story__content {
        padding: 26px;
    }
}
