:root {
    --gold: #d6a33b;
    --gold-bright: #f2be43;
    --dark-gold: #c48c28;
    --white: #ffffff;
    --off-white: rgba(255, 244, 228, 0.8);
    --nav-text: rgba(34, 12, 12, 0.55);
    --deep-maroon: #4b0710;
    --button-orange: #cf6d20;
    --cream: #f8f2e8;
    --cream-shadow: rgba(100, 53, 26, 0.12);
    --about-text: #6e4a3a;
    --about-heading: #8d1828;
    --about-accent: #ef9b42;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #250406;
}

body {
    background-image: url('assets/background.jpeg');
    background-size: cover;
    background-position: 78% 12%;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.page-frame {
    position: fixed;
    inset: 0;
    border-top: 2px solid rgba(212, 161, 57, 0.35);
    pointer-events: none;
    z-index: 4;
}

.overlay {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(76, 8, 18, 0.95) 0%,
            rgba(86, 10, 20, 0.92) 24%,
            rgba(86, 10, 20, 0.78) 52%,
            rgba(74, 8, 17, 0.7) 100%),
        linear-gradient(180deg,
            rgba(91, 6, 18, 0.15) 0%,
            rgba(32, 5, 9, 0.28) 100%);
    z-index: 1;
}

header,
main {
    position: relative;
    z-index: 2;
}

html {
    scroll-behavior: smooth;
}

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

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5.9%;
    min-height: 84px;
    z-index: 10;
    background: rgba(42, 4, 8, 0.16);
    backdrop-filter: blur(10px);
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid rgba(255, 244, 228, 0.08);
}

.navbar.is-scrolled {
    background: rgba(245, 233, 228, 0.96);
    box-shadow: 0 14px 32px rgba(60, 18, 24, 0.12);
    border-bottom-color: rgba(143, 95, 70, 0.1);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    position: relative;
    z-index: 12;
}

.logo-cursive {
    font-family: 'Tangerine', cursive;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 400;
}

.logo-sans {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: rgba(151, 75, 79, 0.85);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2.5rem;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 12;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255, 244, 228, 0.24);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 0.9rem;
    height: 2px;
    margin: 0.13rem auto;
    background: #fff6eb;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.navbar.is-scrolled .menu-toggle {
    border-color: rgba(122, 74, 55, 0.24);
}

.navbar.is-scrolled .menu-toggle span {
    background: #6f1b28;
}

.navbar.menu-active .menu-toggle span:nth-child(1) {
    transform: translateY(2px) rotate(45deg);
}

.navbar.menu-active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.menu-active .menu-toggle span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 241, 228, 0.82);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.navbar.is-scrolled .logo-cursive {
    color: #d7a640;
}

.navbar.is-scrolled .logo-sans,
.navbar.is-scrolled .nav-links a {
    color: rgba(85, 36, 36, 0.88);
}

.navbar.is-scrolled .nav-links a:hover {
    color: #8e1828;
}

.btn-book {
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(90deg, #a34119, var(--button-orange));
    padding: 0.62rem 1.28rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(203, 107, 28, 0.12);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215, 106, 41, 0.22);
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 5.9%;
    padding-top: 6.4rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
}

.hero-content {
    max-width: 640px;
    margin-top: -5.8rem;
    animation: fadeIn 0.9s ease-out forwards;
    opacity: 0;
}

.subtitle {
    font-family: 'Tangerine', cursive;
    color: var(--gold);
    font-size: clamp(2.9rem, 4.6vw, 3.35rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 0.25rem;
}

.title {
    line-height: 0.9;
    margin-bottom: 1.45rem;
}

.title-serif {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 6vw, 4.7rem);
    font-weight: 400;
    color: #f6ead8;
}

.title-cursive {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(4.15rem, 6.3vw, 5rem);
    color: var(--gold-bright);
    font-weight: 400;
    display: inline-block;
    margin-top: 0.1rem;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.55;
    margin-bottom: 1.8rem;
    font-weight: 300;
    max-width: 37rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    text-decoration: none;
    background: linear-gradient(180deg, #f3be43, #ebb63a);
    color: #4f1908;
    padding: 0.82rem 1.55rem;
    border-radius: 30px;
    font-size: 0.84rem;
    font-weight: 500;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 18px rgba(242, 190, 67, 0.12);
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 190, 67, 0.18);
}

.btn-secondary {
    text-decoration: none;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 244, 228, 0.48);
    padding: 0.82rem 1.55rem;
    border-radius: 30px;
    font-size: 0.84rem;
    font-weight: 400;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--white);
    transform: translateY(-2px);
}

.about-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top left, rgba(236, 179, 110, 0.2), transparent 34%),
        linear-gradient(180deg, #fbf7f0 0%, #f7efe3 100%);
    padding: 6.5rem 5.9% 7rem;
}

.about-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1.02fr) minmax(320px, 1fr);
    gap: 3.3rem;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-right: 1.6rem;
}

.about-image-frame {
    border: 3px solid rgba(220, 185, 118, 0.8);
    border-radius: 0.35rem;
    overflow: hidden;
    box-shadow: 0 28px 48px var(--cream-shadow);
    background: #120403;
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: 0;
    bottom: -1.3rem;
    background: #8f1428;
    color: var(--white);
    padding: 1.15rem 1.3rem 1rem;
    min-width: 122px;
    box-shadow: 0 20px 32px rgba(109, 24, 37, 0.28);
}

.about-badge-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 0.9;
    color: #f2c05a;
}

.about-badge-label {
    display: block;
    margin-top: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 600;
}

.about-copy {
    color: var(--about-text);
    max-width: 560px;
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 0.8rem;
    color: #f08b31;
    margin-bottom: 1rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 400;
    color: var(--about-heading);
    margin-bottom: 1.6rem;
}

.about-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #e7bb55;
    font-weight: 400;
}

.about-text {
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2.1rem;
}

.stat-card {
    border: 1px solid rgba(212, 176, 122, 0.72);
    background: rgba(255, 251, 245, 0.75);
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 14px 24px rgba(170, 130, 92, 0.08);
}

.stat-card strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--about-heading);
    line-height: 1;
}

.stat-card span {
    margin-top: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: #7c5649;
}

.performance-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(175, 35, 55, 0.2), transparent 30%),
        linear-gradient(180deg, #6f0916 0%, #650713 100%);
    padding: 5.8rem 5.9% 6.6rem;
    color: #fff3ea;
    overflow: hidden;
}

.performance-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.36em;
    font-size: 0.68rem;
    color: #f0bb59;
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: #ffe3c8;
}

.section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #efc060;
    font-weight: 400;
}

.section-mark {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #f6c75f, #c58b1f);
    transform: rotate(45deg);
    box-shadow: 0 0 0 4px rgba(255, 211, 120, 0.06);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
    margin-bottom: 2.8rem;
}

.performance-card {
    position: relative;
    min-height: 455px;
    border: 1px solid rgba(246, 216, 163, 0.85);
    border-radius: 0.18rem;
    overflow: hidden;
    background: #2a0208;
    box-shadow: 0 22px 40px rgba(35, 0, 6, 0.16);
    animation: cardRise 0.75s ease forwards;
    opacity: 0;
}

.performance-card:nth-child(2) {
    animation-delay: 0.12s;
}

.performance-card:nth-child(3) {
    animation-delay: 0.24s;
}

.performance-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.performance-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 1, 3, 0.06) 6%, rgba(8, 1, 3, 0.18) 38%, rgba(8, 1, 3, 0.72) 100%);
}

.performance-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    transition: transform 0.45s ease, filter 0.45s ease;
    transform-origin: center center;
}

.performance-card-riga .performance-image-wrap img {
    object-position: 52% 16%;
}

.performance-card-festival .performance-image-wrap img {
    object-position: 50% 18%;
}

.performance-card-launch .performance-image-wrap img {
    object-position: 50% 14%;
}

.performance-card:hover .performance-image-wrap img,
.performance-card:focus-within .performance-image-wrap img {
    transform: scale(1.05);
    filter: saturate(1.04);
}

.performance-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.45rem 1.8rem 1.8rem;
    color: #fff7f0;
}

.performance-year {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 600;
    color: #f0b149;
    margin-bottom: 0.85rem;
}

.performance-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 2.55vw, 2.35rem);
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 0.7rem;
    max-width: 12ch;
}

.performance-location {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.25;
    color: #f1c77a;
    margin-bottom: 1rem;
}

.performance-overlay p:last-child {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 243, 233, 0.86);
    max-width: 18ch;
}

.experience-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    align-items: start;
    justify-items: center;
}

.experience-list-block {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 0 1rem;
}

.experience-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #efc060;
    margin-bottom: 1rem;
    text-align: center;
}

.experience-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
}

.experience-list-scroll {
    display: none;
}

.experience-list-scroll::-webkit-scrollbar {
    width: 10px;
}

.experience-list-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
}

.experience-list-scroll::-webkit-scrollbar-thumb {
    background: #cab69c;
    border-radius: 999px;
}

.experience-list li {
    position: relative;
    padding-left: 1rem;
    color: #f8e3d0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.experience-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.34rem;
    height: 0.34rem;
    background: #f1b74a;
    transform: rotate(45deg);
}

.collaboration-scroll {
    display: grid;
    gap: 0.9rem;
}

.collaboration-card {
    border: 1px solid rgba(250, 220, 175, 0.8);
    background: rgba(120, 10, 25, 0.18);
    padding: 1rem 1.05rem;
    box-shadow: 0 12px 28px rgba(40, 0, 8, 0.12);
}

.collaboration-card h4 {
    font-size: 0.95rem;
    color: #f0c56e;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.collaboration-card p {
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 241, 228, 0.9);
}

.teach-section {
    position: relative;
    z-index: 2;
    padding: 1rem 5.9% 4.4rem;
    background:
        radial-gradient(circle at top center, rgba(241, 195, 112, 0.16), transparent 26%),
        linear-gradient(180deg, #f7efe2 0%, #f6edde 100%);
}

.teach-shell {
    max-width: 1320px;
    margin: 0 auto;
}

.teach-heading {
    text-align: center;
    margin-bottom: 2.1rem;
}

.teach-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 400;
    color: #932330;
}

.teach-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: #efbb4a;
}

.teach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.teach-card {
    min-height: 218px;
    padding: 1.3rem 1.25rem 1.15rem;
    background: rgba(255, 252, 247, 0.82);
    border: 1px solid rgba(219, 186, 130, 0.78);
    box-shadow: 0 18px 36px rgba(147, 103, 67, 0.1);
}

.teach-icon {
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7d132c, #d66d1d);
}

.teach-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.teach-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: #9d2530;
    margin-bottom: 0.55rem;
}

.teach-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #7f5647;
}

.awards-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(241, 195, 112, 0.18), transparent 28%),
        linear-gradient(180deg, #f6edde 0%, #f5ebdb 100%);
    padding: 1.2rem 5.9% 4.4rem;
    color: #6f4438;
}

.awards-shell {
    max-width: 1260px;
    margin: 0 auto;
}

.awards-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
    gap: 2rem;
    align-items: center;
}

.awards-copy-column {
    padding-right: 0.25rem;
}

.awards-heading {
    margin-bottom: 1.6rem;
}

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

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
    font-weight: 400;
    color: #932330;
}

.awards-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #e8bf5e;
    font-weight: 400;
    color: #efbb4a;
}

.awards-stack {
    display: grid;
    gap: 1rem;
}

.award-card {
    background: rgba(255, 252, 247, 0.84);
    border: 1px solid rgba(219, 186, 130, 0.78);
    box-shadow: 0 18px 36px rgba(147, 103, 67, 0.1);
}

.award-icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #780f28, #d5671f);
    flex: 0 0 auto;
}

.award-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.award-card-compact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 1rem 0.95rem;
}

.award-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 500;
    color: #9d2530;
    margin-bottom: 0.38rem;
}

.award-body p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #7f5647;
}

.awards-visual {
    margin: 0;
    justify-self: end;
}

.awards-image-frame {
    padding: 0.15rem;
    background: linear-gradient(180deg, rgba(219, 178, 106, 0.92), rgba(160, 109, 58, 0.55));
    box-shadow: 0 24px 38px rgba(122, 80, 49, 0.14);
}

.awards-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
    object-position: 50% 24%;
    background: #0e1210;
}

.gallery-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(241, 195, 112, 0.2), transparent 26%),
        linear-gradient(180deg, #f5ebdb 0%, #f4ead9 100%);
    padding: 1.2rem 5.9% 6rem;
    color: #6f4438;
}

.gallery-shell {
    max-width: 1260px;
    margin: 0 auto;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    font-weight: 400;
    color: #932330;
}

.gallery-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #efbb4a;
    font-weight: 400;
}

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

.gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 186, 130, 0.82);
    border-radius: 0.18rem;
    background: #260107;
    box-shadow: 0 16px 28px rgba(122, 80, 49, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    transform-origin: center center;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.stage-gallery-card {
    min-height: 180px;
    aspect-ratio: 1.45;
}

.journey-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(239, 188, 108, 0.14), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f6ede0 100%);
    padding: 5.8rem 5.9% 6.8rem;
    color: var(--about-text);
}

.journey-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.journey-heading {
    text-align: center;
    margin-bottom: 3.2rem;
}

.journey-kicker {
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.7rem;
    color: #ef9a33;
    margin-bottom: 0.75rem;
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--about-heading);
}

.journey-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #e7bd5c;
    font-weight: 400;
}

.journey-mark {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 1.05rem;
    background: linear-gradient(135deg, #f2c664, #cb9125);
    transform: rotate(45deg);
}

.journey-timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(220, 184, 126, 0.72), rgba(220, 184, 126, 0.32));
}

.journey-item {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 1.65rem;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-dot {
    position: absolute;
    left: -0.08rem;
    top: 0.48rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #8f1428;
    box-shadow: 0 0 0 4px rgba(143, 20, 40, 0.08);
}

.journey-copy {
    max-width: 640px;
}

.journey-meta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: #ef9a33;
    margin-bottom: 0.15rem;
}

.journey-copy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    line-height: 1.3;
    font-weight: 400;
    color: var(--about-heading);
    margin-bottom: 0.3rem;
}

.journey-copy p:last-child {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #82584a;
}

.workshop-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(239, 188, 108, 0.16), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, #f5efe7 100%);
    padding: 5.9rem 5.9% 6.2rem;
    color: var(--about-text);
    overflow: hidden;
}

.workshop-shell {
    max-width: 1160px;
    margin: 0 auto;
}

.workshop-heading {
    text-align: center;
    margin-bottom: 3.4rem;
}

.workshop-kicker {
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 0.66rem;
    color: #f07b19;
    margin-bottom: 0.65rem;
}

.workshop-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.14;
    font-weight: 400;
    color: #8b1022;
}

.workshop-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: #efbc5b;
}

.workshop-mark {
    display: inline-block;
    width: min(18rem, 62vw);
    height: 0.5rem;
    margin-top: 1.1rem;
    position: relative;
}

.workshop-mark::before,
.workshop-mark::after {
    content: "";
    display: block;
    position: absolute;
}

.workshop-mark::before {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background:
        linear-gradient(90deg, transparent, rgba(221, 180, 110, 0.72) 18%, transparent 44%, transparent 56%, rgba(221, 180, 110, 0.72) 82%, transparent);
}

.workshop-mark::after {
    left: 50%;
    top: 50%;
    width: 0.42rem;
    height: 0.42rem;
    background: linear-gradient(135deg, #f2bd55, #d99024);
    transform: translate(-50%, -50%) rotate(45deg);
}

.workshop-feature {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 2.2rem;
    align-items: center;
    margin-bottom: 2.9rem;
}

.workshop-image {
    border: 2px solid rgba(214, 182, 121, 0.72);
    border-radius: 0.18rem;
    overflow: hidden;
    background: #fffaf1;
    box-shadow: 0 20px 42px rgba(91, 43, 22, 0.13);
}

.workshop-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-image-main {
    aspect-ratio: 2.08;
}

.workshop-copy p {
    font-size: 0.95rem;
    line-height: 1.68;
    color: #743b33;
    margin-bottom: 1rem;
}

.workshop-copy strong {
    color: #8d1022;
    font-weight: 600;
}

.workshop-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.workshop-stat {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    min-height: 86px;
    padding: 0.85rem 0.7rem 0.75rem;
    border: 1px solid rgba(210, 165, 95, 0.72);
    background: rgba(255, 253, 248, 0.64);
    text-align: center;
}

.workshop-stat svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: #f27416;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workshop-stat span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    line-height: 1.1;
    color: #8b1022;
}

.workshop-stat strong {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.58rem;
    font-weight: 500;
    color: #65352d;
}

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

.workshop-gallery .workshop-image {
    aspect-ratio: 1.72;
    box-shadow: 0 18px 34px rgba(91, 43, 22, 0.1);
}

.press-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(178, 30, 51, 0.16), transparent 28%),
        linear-gradient(180deg, #8d1727 0%, #8a1525 100%);
    padding: 5.8rem 5.9% 6.8rem;
    color: #fff2e7;
}

.press-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.press-heading {
    text-align: center;
    margin-bottom: 2.6rem;
}

.press-kicker {
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.7rem;
    color: #f1be5f;
    margin-bottom: 0.7rem;
}

.press-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3.3rem);
    line-height: 1.1;
    font-weight: 400;
    color: #fff0df;
}

.press-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.press-quote-card {
    border: 1px solid rgba(244, 218, 186, 0.88);
    padding: 1.2rem 1.15rem 1rem;
    min-height: 122px;
    background: rgba(255, 255, 255, 0.02);
}

.press-quote-mark {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f0bc5a;
    line-height: 1;
    margin-bottom: 0.55rem;
}

.press-quote-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 239, 227, 0.94);
}

.press-source {
    display: inline-block;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.6rem;
    color: #f0bc5a;
}

.press-feature-card {
    max-width: 860px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 1.6rem;
    border: 1px solid rgba(244, 218, 186, 0.88);
    padding: 0.9rem;
}

.press-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center top;
}

.press-feature-copy {
    align-self: center;
    padding: 0.4rem 0.2rem;
}

.press-feature-kicker {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.62rem;
    color: #f0bc5a;
    margin-bottom: 0.75rem;
}

.press-feature-copy h3,
.press-production-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: #fff2e2;
    margin-bottom: 0.75rem;
}

.press-feature-copy p,
.press-production-card p {
    font-size: 0.84rem;
    line-height: 1.62;
    color: rgba(255, 239, 227, 0.95);
}

.press-feature-copy blockquote,
.press-production-card blockquote {
    margin: 1rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #fff3e5;
}

.press-production-card {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(244, 218, 186, 0.88);
    padding: 1.35rem 1.45rem 1.5rem;
    text-align: center;
}

.press-production-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #f3c675;
    margin-bottom: 1rem;
}

.press-production-card p {
    text-align: left;
    margin-bottom: 0.85rem;
}

.press-production-card blockquote {
    text-align: left;
    margin-top: 1.1rem;
}

.contact-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(circle at top center, rgba(239, 188, 108, 0.14), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f6ede0 100%);
    padding: 5.8rem 5.9% 6rem;
    color: var(--about-text);
}

.contact-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-kicker {
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.72rem;
    color: #ef922e;
    margin-bottom: 0.8rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--about-heading);
}

.contact-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #e8bf5e;
    font-weight: 400;
}

.contact-mark {
    display: inline-block;
    width: 0.48rem;
    height: 0.48rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #f2c664, #cb9125);
    transform: rotate(45deg);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
    gap: 2rem;
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #7c5649;
    max-width: 31rem;
    margin-bottom: 1.4rem;
}

.contact-card-list {
    display: grid;
    gap: 1rem;
}

.contact-location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.1rem;
    padding: 0.92rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff7ef;
    background: linear-gradient(90deg, #780f28 0%, #f07f18 100%);
    box-shadow: 0 14px 24px rgba(173, 80, 23, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-location-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(173, 80, 23, 0.2);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(216, 188, 134, 0.78);
    background: rgba(255, 253, 249, 0.62);
}

.contact-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #780f28, #d5671f);
    flex-shrink: 0;
}

.contact-icon svg,
.contact-socials svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.62rem;
    color: #ef922e;
    margin-bottom: 0.18rem;
}

.contact-info-card p {
    color: #5f3b32;
    line-height: 1.45;
}

.contact-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.contact-socials a {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid rgba(216, 188, 134, 0.88);
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
}

.contact-socials a svg {
    stroke: #8f1428;
}

.contact-form-card {
    border: 2px solid rgba(216, 188, 134, 0.78);
    background: rgba(255, 253, 249, 0.78);
    padding: 1.9rem 1.85rem 1.7rem;
    box-shadow: 0 24px 42px rgba(124, 84, 58, 0.16);
}

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

.contact-form-card label {
    display: block;
    margin-bottom: 1rem;
}

.contact-form-card span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    color: #ef922e;
    margin-bottom: 0.42rem;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: 2px solid rgba(216, 188, 134, 0.78);
    background: rgba(255, 253, 249, 0.9);
    padding: 0.82rem 0.9rem;
    font: inherit;
    color: #5f3b32;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #cf8f2d;
    box-shadow: 0 0 0 3px rgba(239, 146, 46, 0.12);
}

.contact-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 0.96rem 1.2rem;
    font: inherit;
    font-weight: 600;
    color: #fff7ef;
    background: linear-gradient(90deg, #780f28 0%, #f07f18 100%);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(173, 80, 23, 0.18);
}

.contact-form-status {
    min-height: 1.4rem;
    margin-top: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #7b4b3f;
}

.contact-form-status[data-state="success"] {
    color: #2f7a4b;
}

.contact-form-status[data-state="error"] {
    color: #9b1c31;
}

.success-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: min(27rem, calc(100vw - 2rem));
    max-width: 27rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(215, 183, 129, 0.92);
    border-radius: 0.85rem;
    background: rgba(251, 246, 239, 0.98);
    box-shadow: 0 18px 36px rgba(97, 43, 22, 0.18);
    transform: translateY(1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.success-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.success-toast-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #4d1818;
    flex-shrink: 0;
}

.success-toast-icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-toast-copy strong {
    display: block;
    color: #4f2c24;
    font-size: 0.98rem;
    line-height: 1.35;
}

.success-toast-copy p {
    margin-top: 0.2rem;
    color: #7e5e51;
    line-height: 1.45;
}

.site-footer {
    position: relative;
    z-index: 2;
    background: #740a18;
    color: #f5dfd1;
    padding: 2.6rem 5.9% 1.5rem;
    text-align: center;
}

.footer-shell {
    max-width: 960px;
    margin: 0 auto;
}

.footer-name {
    font-family: 'Tangerine', cursive;
    font-size: 2.25rem;
    color: #efc15f;
    line-height: 1;
}

.footer-mark {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin: 0.95rem 0 1.1rem;
    background: linear-gradient(135deg, #f2c664, #cb9125);
    transform: rotate(45deg);
}

.footer-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.45;
    color: #f6e6d7;
    margin-bottom: 1.5rem;
}

.footer-credit {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 223, 209, 0.86);
}

/* School slide styles */
.school-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 5.9rem 5.9% 6.4rem;
    background:
        radial-gradient(circle at top center, rgba(241, 195, 112, 0.18), transparent 26%),
        linear-gradient(180deg, #f8f1e4 0%, #f7efe2 52%, #f4eadc 100%);
    color: #6f4438;
}

.school-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.72), transparent 24%),
        radial-gradient(circle at 84% 24%, rgba(248, 225, 193, 0.32), transparent 18%);
    pointer-events: none;
}

.school-shell {
    position: relative;
    max-width: 1110px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.4rem;
    align-items: start;
}

.school-heading {
    position: relative;
    max-width: 960px;
    margin: 0 auto 3.3rem;
    text-align: center;
}

.school-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.55em;
    color: #e1802e;
    text-transform: uppercase;
}

.school-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 4.9rem);
    line-height: 0.95;
    font-style: italic;
    font-weight: 400;
    color: #efbb4a;
}

.school-sub {
    max-width: 760px;
    margin: 1.15rem auto 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    line-height: 1.25;
    color: #89554a;
}

.school-divider {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.school-divider span {
    width: 5.9rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 186, 113, 0.95), transparent);
}

.school-divider i {
    width: 0.42rem;
    height: 0.42rem;
    display: inline-block;
    background: linear-gradient(135deg, #efc25b, #cf8e2b);
    transform: rotate(45deg);
}

.school-visual {
    margin: 0;
}

.school-image-frame {
    position: relative;
    border-radius: 2px;
    padding: 0.15rem;
    background: linear-gradient(180deg, rgba(219, 178, 106, 0.9), rgba(160, 109, 58, 0.5));
    box-shadow: 0 24px 38px rgba(122, 80, 49, 0.14);
}

.school-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 0.97;
    object-fit: cover;
    object-position: 50% 34%;
    background: #120708;
    border-radius: 1px;
}

.school-copy {
    max-width: 540px;
    justify-self: end;
}

.school-text {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.72;
    color: #8b5545;
}

.school-text:last-of-type {
    margin-bottom: 0;
}

.school-text strong {
    color: #a12420;
    font-weight: 600;
}

.school-text em {
    font-style: italic;
    color: #7f4a3d;
}

.school-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.school-stat-card {
    min-height: 102px;
    padding: 1rem 1.15rem;
    background: rgba(255, 251, 245, 0.74);
    border: 1px solid rgba(220, 184, 126, 0.68);
    box-shadow: 0 10px 28px rgba(179, 138, 101, 0.08);
    text-align: center;
}

.school-stat-card strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    color: #98212a;
}

.school-stat-card span {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.24em;
    color: #7e5849;
}

@media (max-width: 1024px) {
    .school-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .school-copy {
        max-width: none;
        justify-self: stretch;
    }

    .school-visual {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .school-heading {
        margin-bottom: 2.3rem;
    }

    .school-title {
        font-size: 3rem;
    }

    .school-sub {
        font-size: 1.38rem;
    }

    .school-image-frame img {
        aspect-ratio: 0.88;
        object-position: 48% 28%;
    }

    .school-stats {
        grid-template-columns: 1fr;
    }

    .school-stat-card {
        min-height: auto;
        padding: 1rem;
    }
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardRise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding-inline: 4.5%;
    }

    .hero,
    .about-section,
    .performance-section,
    .teach-section,
    .awards-section,
    .gallery-section,
    .journey-section,
    .school-section,
    .workshop-section,
    .press-section,
    .contact-section,
    .site-footer {
        padding-inline: 4.5%;
    }

    .title-serif {
        font-size: 3.8rem;
    }

    .title-cursive {
        font-size: 4.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .about-shell {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-copy {
        max-width: none;
    }

    .about-visual {
        max-width: 720px;
        padding-right: 4.2rem;
    }

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

    .performance-card {
        min-height: 520px;
    }

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

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

    .awards-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .journey-timeline {
        max-width: 720px;
    }

    .workshop-feature {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .workshop-copy {
        max-width: 720px;
        margin: 0 auto;
    }

    .press-quote-grid {
        grid-template-columns: 1fr;
    }

    .press-feature-card {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

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

    .hero-content {
        max-width: 580px;
        margin-top: -3rem;
    }

    .description {
        max-width: 30rem;
    }
}

@media (max-width: 900px) {
    .navbar {
        min-height: 62px;
        padding-inline: 5%;
        padding-block: 0.85rem;
        background: transparent;
        backdrop-filter: none;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .nav-links,
    .btn-book {
        display: none;
    }

    .logo {
        flex-direction: row;
        align-items: baseline;
        gap: 0.34rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        line-height: 1;
        width: max-content;
        max-width: none;
        flex: 0 0 auto;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
        width: 2.2rem;
        height: 2.2rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 1rem 0 1.1rem;
        border-top: 1px solid rgba(214, 186, 142, 0.85);
        background: rgba(251, 246, 239, 1);
        box-shadow: 0 18px 30px rgba(62, 20, 22, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.35rem);
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .navbar.is-scrolled,
    .navbar.menu-active {
        background: rgba(245, 233, 228, 0.98);
        border-bottom-color: rgba(143, 95, 70, 0.14);
    }

    .navbar.menu-active .mobile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #8b1c2b;
        font-family: 'Playfair Display', serif;
        font-size: 1.08rem;
        line-height: 1.3;
        padding: 0.92rem 1.75rem;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .mobile-menu a:hover {
        background: rgba(143, 20, 40, 0.04);
        color: #8e1828;
    }

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

    .hero {
        align-items: center;
        min-height: 100svh;
        padding-inline: 5%;
        padding-top: 5.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-content {
        margin-top: 0;
        max-width: 21rem;
    }

    .description br {
        display: none;
    }

    .logo-sans {
        display: block;
        font-size: 0.46rem;
        letter-spacing: 0.24em;
        margin-top: 0;
        line-height: 1;
    }

    .logo-cursive {
        font-size: 2.12rem;
        color: #efc15f;
    }

    .menu-toggle span {
        width: 0.88rem;
        height: 2px;
        margin: 0.11rem auto;
        background: #941b2d;
        transform-origin: center;
    }

    .navbar.is-scrolled .logo-cursive,
    .navbar .logo-cursive {
        color: #efc15f;
    }

    .navbar.is-scrolled .menu-toggle span {
        background: #941b2d;
    }

    .navbar.is-scrolled {
        box-shadow: none;
    }

    .about-shell,
    .performance-grid,
    .experience-columns,
    .teach-grid,
    .workshop-feature,
    .workshop-gallery,
    .press-quote-grid,
    .contact-layout {
        gap: 1.4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .hero-content {
        max-width: none;
        text-align: left;
    }

    .title-serif {
        font-size: 3rem;
    }

    .title-cursive {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 2.2rem;
    }

    .button-group {
        width: 100%;
        max-width: 18rem;
    }

    .button-group a {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 100svh;
    }

    .description {
        font-size: 0.98rem;
        line-height: 1.65;
        max-width: 17rem;
    }

    .about-shell {
        gap: 2rem;
    }

    .about-section {
        padding: 4.8rem 5% 5.5rem;
    }

    .about-visual {
        padding-right: 0;
    }

    .about-image-frame img {
        min-height: 460px;
    }

    .about-badge {
        right: 1rem;
        bottom: -1rem;
        min-width: 112px;
        padding: 1rem 1.1rem 0.9rem;
    }

    .about-title {
        font-size: 2.35rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-copy,
    .performance-shell,
    .teach-shell,
    .awards-shell,
    .gallery-shell,
    .journey-shell,
    .school-shell,
    .workshop-shell,
    .press-shell,
    .contact-shell {
        max-width: none;
    }

    .performance-section {
        padding: 4.8rem 5% 5.2rem;
    }

    .section-heading {
        margin-bottom: 2.2rem;
    }

    .performance-card {
        min-height: 420px;
    }

    .performance-overlay {
        padding: 1.2rem 1.2rem 1.2rem;
    }

    .performance-overlay h3 {
        font-size: 1.85rem;
    }

    .performance-location {
        font-size: 0.95rem;
    }

    .performance-card-riga .performance-image-wrap img {
        object-position: 54% 10%;
    }

    .performance-card-festival .performance-image-wrap img {
        object-position: 50% 14%;
    }

    .performance-card-launch .performance-image-wrap img {
        object-position: 50% 10%;
    }

    .experience-heading {
        font-size: 1.7rem;
    }

    .experience-list {
        grid-template-columns: 1fr;
        gap: 0.75rem 1.2rem;
    }

    .experience-list li,
    .collaboration-card p {
        font-size: 0.88rem;
    }

    .teach-section,
    .awards-section,
    .gallery-section {
        padding: 4rem 5% 4.6rem;
    }

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

    .teach-card,
    .award-card-compact {
        min-height: auto;
    }

    .awards-content {
        gap: 1.6rem;
    }

    .awards-heading {
        margin-bottom: 1.2rem;
    }

    .awards-image-frame img {
        aspect-ratio: 0.85;
        object-position: 50% 20%;
    }

    .gallery-heading {
        margin-bottom: 1.6rem;
    }

    .stage-gallery-card {
        aspect-ratio: 1.3;
    }

    .journey-section {
        padding: 4.8rem 5% 5.3rem;
    }

    .school-section {
        padding: 4.8rem 5% 5.3rem;
    }

    .workshop-section {
        padding: 4.8rem 5% 5.3rem;
    }

    .workshop-heading {
        margin-bottom: 2.3rem;
    }

    .workshop-title {
        font-size: 2.25rem;
    }

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

    .workshop-image-main,
    .workshop-gallery .workshop-image {
        aspect-ratio: 1.35;
    }

    .journey-heading {
        margin-bottom: 2.4rem;
    }

    .journey-kicker {
        letter-spacing: 0.28em;
        font-size: 0.68rem;
    }

    .journey-timeline {
        padding-left: 1.55rem;
    }

    .journey-item {
        padding-left: 0.95rem;
    }

    .school-kicker {
        letter-spacing: 0.42em;
        font-size: 0.66rem;
    }

    .school-divider span {
        width: 4rem;
    }

    .press-section {
        padding: 4.8rem 5% 5.3rem;
    }

    .press-heading {
        margin-bottom: 2.2rem;
    }

    .press-feature-card,
    .press-production-card {
        padding-inline: 1rem;
    }

    .press-feature-image img {
        min-height: 260px;
    }

    .contact-section {
        padding: 4.8rem 5% 5rem;
    }

    .contact-heading {
        margin-bottom: 2.3rem;
    }

    .contact-form-card {
        padding: 1.35rem 1.1rem 1.2rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        padding: 2.3rem 5% 1.35rem;
    }

    .footer-name {
        font-size: 1.95rem;
    }

    .footer-quote {
        font-size: 0.95rem;
    }
}

@media (max-width: 560px) {
    .navbar {
        min-height: 74px;
        padding-inline: 1.65rem;
        padding-top: 1rem;
    }

    .logo-cursive {
        font-size: 2.18rem;
        flex: 0 0 auto;
    }

    .logo-sans {
        font-size: 0.62rem;
        letter-spacing: 0.32em;
        color: rgba(255, 241, 228, 0.48);
        flex: 0 0 auto;
    }

    .hero {
        align-items: flex-start;
        padding-top: 11.7rem;
        padding-bottom: 2.6rem;
    }

    .subtitle {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .title-serif {
        font-size: 2.5rem;
    }

    .title-cursive {
        font-size: 3rem;
    }

    .description {
        font-size: 0.94rem;
        max-width: 18rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        max-width: 18.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.4rem;
        font-size: 0.9rem;
    }

    .navbar:not(.is-scrolled):not(.menu-active) .logo-sans {
        color: rgba(255, 241, 228, 0.78);
    }

    .about-image-frame img {
        min-height: 380px;
    }

    .performance-card {
        min-height: 360px;
    }

    .performance-overlay h3 {
        font-size: 1.55rem;
    }

    .performance-card-riga .performance-image-wrap img {
        object-position: 56% 8%;
    }

    .performance-card-festival .performance-image-wrap img {
        object-position: 50% 12%;
    }

    .performance-card-launch .performance-image-wrap img {
        object-position: 50% 8%;
    }

    .gallery-grid {
        gap: 0.7rem;
    }

    .contact-info-card {
        align-items: flex-start;
    }

    .success-toast {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        min-width: 0;
        max-width: none;
        padding: 0.95rem 1rem;
    }
}
