:root {
    --bg: #f4f1ea;
    --bg-dark: #111513;
    --bg-dark-2: #171c19;
    --surface: #ffffff;
    --surface-dark: #1c221f;

    --text: #151916;
    --text-soft: #68706a;
    --text-light: #f4f1ea;
    --text-light-soft: #aab1ab;

    --accent: #b77b42;
    --accent-dark: #8c5c2e;
    --accent-light: #d5a06d;

    --border: rgba(21, 25, 22, 0.12);
    --border-light: rgba(255,255,255,0.12);

    --container: 1240px;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --shadow:
        0 30px 80px rgba(17, 21, 19, 0.10);

    --transition:
        0.45s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loaded {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--accent);
    color: white;
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;
}

.section-padding {
    padding: 145px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--accent);
}

.section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 75px;
}

.section-heading h2,
.philosophy-content h2,
.location-content h2,
.contact-header h2,
.faq-intro h2 {
    margin-top: 22px;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.section-heading h2 em,
.philosophy-content h2 em,
.location-content h2 em,
.contact-header h2 em,
.faq-intro h2 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.section-heading > p {
    margin-top: 28px;
    max-width: 650px;

    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.centered .section-label {
    justify-content: center;
}


/* =========================================
   LOADER
========================================= */

.page-loader {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    background: var(--bg-dark);

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    align-items: center;
    gap: 18px;

    color: white;
}

.loader-inner span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}

.loader-mark {
    width: 34px;
    height: 34px;

    border: 2px solid rgba(255,255,255,.15);
    border-top-color: var(--accent);

    border-radius: 50%;

    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    padding: 25px 0;

    transition:
        padding .4s ease,
        background .4s ease,
        backdrop-filter .4s ease;
}

.site-header.scrolled {
    padding: 14px 0;

    background: rgba(244, 241, 234, .90);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
}

.brand-symbol span {
    width: 5px;
    border-radius: 3px;

    background: var(--accent);

    animation: bars 1.7s ease-in-out infinite;
}

.brand-symbol span:nth-child(1) {
    height: 14px;
}

.brand-symbol span:nth-child(2) {
    height: 25px;
    animation-delay: .2s;
}

.brand-symbol span:nth-child(3) {
    height: 19px;
    animation-delay: .4s;
}

@keyframes bars {
    0%,100% {
        transform: scaleY(.65);
    }

    50% {
        transform: scaleY(1);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 15px;
    line-height: 1;
    letter-spacing: .16em;
}

.brand-text small {
    margin-top: 5px;

    font-size: 7px;
    line-height: 1;

    letter-spacing: .28em;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    font-size: 12px;
    font-weight: 600;
    color: #535b55;

    transition: color .3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: width .3s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 13px 20px;

    border: 1px solid rgba(21,25,22,.2);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;

    transition:
        background .3s ease,
        color .3s ease,
        border .3s ease;
}

.nav-button:hover {
    background: var(--text);
    color: white;
    border-color: var(--text);
}

.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 1px;
    background: var(--text);

    transition: transform .3s ease;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    padding-top: 120px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(183,123,66,.15),
            transparent 28%
        ),
        var(--bg);

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(21,25,22,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(21,25,22,.06) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr .9fr;

    align-items: center;

    gap: 90px;

    min-height: 700px;
}

.hero-content {
    max-width: 690px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 36px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(70px, 8vw, 120px);
    line-height: .86;

    font-weight: 600;

    letter-spacing: -.065em;
}

.hero h1 span {
    display: block;

    color: var(--accent);

    font-style: italic;
    font-weight: 500;

    transform: translateX(30px);
}

.hero-description {
    max-width: 600px;

    margin-top: 38px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 40px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-height: 56px;

    padding: 0 27px;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}

.button span {
    font-size: 18px;
    line-height: 1;

    transition: transform .35s ease;
}

.button:hover span {
    transform: translateX(5px);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--text);
    color: white;
}

.button-primary:hover {
    background: var(--accent);
}

.button-secondary {
    border-color: rgba(21,25,22,.18);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--text);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 0 rgba(183,123,66,.4);

    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow:
            0 0 0 9px rgba(183,123,66,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(183,123,66,0);
    }
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-card {
    position: relative;

    width: 510px;
    height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,123,66,.18),
            rgba(183,123,66,.04) 42%,
            transparent 70%
        );
}

.instrument-glow {
    position: absolute;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background: var(--accent);

    opacity: .08;

    filter: blur(70px);

    animation: glowMove 5s ease-in-out infinite;
}

@keyframes glowMove {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

.visual-ring {
    position: absolute;

    border: 1px solid rgba(183,123,66,.18);

    border-radius: 50%;
}

.ring-one {
    width: 410px;
    height: 410px;

    animation: ringRotate 22s linear infinite;
}

.ring-two {
    width: 470px;
    height: 470px;

    border-style: dashed;

    animation: ringRotateReverse 30s linear infinite;
}

.ring-three {
    width: 550px;
    height: 550px;

    opacity: .45;

    animation: ringRotate 40s linear infinite;
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.abstract-instrument {
    position: relative;

    width: 250px;
    height: 420px;

    transform:
        rotate(-16deg)
        translateY(5px);

    filter:
        drop-shadow(
            25px 30px 30px
            rgba(0,0,0,.15)
        );

    animation: instrumentFloat 5s ease-in-out infinite;
}

@keyframes instrumentFloat {
    0%,100% {
        transform:
            rotate(-16deg)
            translateY(5px);
    }

    50% {
        transform:
            rotate(-13deg)
            translateY(-12px);
    }
}

.instrument-body {
    position: absolute;

    width: 150px;
    height: 230px;

    left: 35px;
    bottom: 15px;

    border-radius: 52% 48% 44% 56%;

    background:
        linear-gradient(
            135deg,
            #9e6433,
            #55321e
        );

    transform: rotate(12deg);
}

.instrument-body::before {
    content: "";

    position: absolute;

    inset: 22px;

    border: 2px solid rgba(255,220,170,.18);

    border-radius: 50%;
}

.instrument-body::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    left: 40px;
    top: 75px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;
}

.instrument-neck {
    position: absolute;

    width: 45px;
    height: 255px;

    left: 102px;
    top: 15px;

    border-radius: 25px;

    background:
        linear-gradient(
            90deg,
            #422719,
            #9a6131,
            #4c2d1d
        );

    transform: rotate(-5deg);
}

.instrument-top {
    position: absolute;

    width: 42px;
    height: 80px;

    left: 102px;
    top: -50px;

    border-radius: 15px 15px 6px 6px;

    background:
        linear-gradient(
            90deg,
            #2b1c14,
            #86512c,
            #302017
        );
}

.instrument-detail {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #d6a16c;

    left: 118px;
}

.detail-one {
    top: 90px;
}

.detail-two {
    top: 125px;
}

.detail-three {
    top: 160px;
}

.instrument-string {
    position: absolute;

    width: 2px;
    height: 250px;

    top: 25px;

    background: rgba(255,255,255,.28);
}

.string-one {
    left: 117px;
}

.string-two {
    left: 126px;
}

.string-three {
    left: 135px;
}

.floating-tag {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 17px;

    background: rgba(255,255,255,.8);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(21,25,22,.1);

    box-shadow: var(--shadow);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.tag-number {
    color: var(--accent);
}

.tag-top {
    top: 65px;
    right: 10px;

    animation: tagFloat 4s ease-in-out infinite;
}

.tag-bottom {
    bottom: 80px;
    left: 15px;

    animation: tagFloat 4s 1.3s ease-in-out infinite;
}

@keyframes tagFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-line {
    position: absolute;

    width: 1px;
    height: 500px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(183,123,66,.3),
        transparent
    );
}

.line-one {
    left: 7%;
    top: 20%;
    transform: rotate(22deg);
}

.line-two {
    right: 10%;
    top: 10%;
    transform: rotate(-17deg);
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(183,123,66,.15);
}

.orb-one {
    width: 14px;
    height: 14px;

    left: 12%;
    top: 35%;

    animation: orbFloat 6s ease-in-out infinite;
}

.orb-two {
    width: 8px;
    height: 8px;

    left: 47%;
    top: 17%;

    animation: orbFloat 5s 1s ease-in-out infinite;
}

.orb-three {
    width: 18px;
    height: 18px;

    right: 5%;
    bottom: 24%;

    animation: orbFloat 7s 2s ease-in-out infinite;
}

@keyframes orbFloat {
    50% {
        transform:
            translateY(-20px)
            scale(1.3);
    }
}

.hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    border-top: 1px solid var(--border);
}

.hero-bottom-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.hero-bottom-inner > div {
    padding: 22px 25px;

    border-right: 1px solid var(--border);
}

.hero-bottom-inner > div:first-child {
    border-left: 1px solid var(--border);
}

.hero-bottom-inner strong {
    display: block;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: .13em;
}

.hero-bottom-inner span {
    color: var(--text-soft);

    font-size: 12px;
}


/* =========================================
   ABOUT
========================================= */

.split-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 100px;
    align-items: end;

    max-width: none;
}

.split-heading > p {
    margin-bottom: 5px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 35px;
}

.about-large-card {
    position: relative;

    min-height: 540px;

    padding: 55px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: var(--bg-dark);
    color: white;
}

.about-large-card::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -120px;
    top: -100px;

    border: 1px solid rgba(183,123,66,.25);

    border-radius: 50%;
}

.about-large-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -40px;
    top: 20px;

    border: 1px dashed rgba(183,123,66,.2);

    border-radius: 50%;

    animation: ringRotate 25s linear infinite;
}

.card-number {
    position: absolute;

    top: 45px;
    left: 55px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
}

.card-label {
    margin-bottom: 25px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .2em;
}

.about-large-card h3 {
    max-width: 620px;

    font-family: var(--serif);

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -.04em;
}

.about-large-card p {
    max-width: 580px;

    margin-top: 28px;

    color: var(--text-light-soft);

    font-size: 15px;
    line-height: 1.8;
}

.card-line {
    width: 70px;
    height: 2px;

    margin-top: 35px;

    background: var(--accent);
}

.about-side-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 20px;
}

.mini-feature {
    min-height: 160px;

    padding: 28px;

    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.45);

    transition:
        transform .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}

.mini-feature:hover {
    transform: translateX(8px);

    background: white;

    box-shadow: var(--shadow);
}

.mini-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(183,123,66,.35);

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;
}

.mini-feature h4 {
    font-size: 17px;
}

.mini-feature p {
    margin-top: 9px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
    overflow: hidden;

    padding: 30px 0;

    background: var(--accent);

    color: white;

    transform: rotate(-1.3deg) scale(1.03);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 28px;

    font-family: var(--serif);

    font-size: 35px;
    font-style: italic;

    animation: marquee 25s linear infinite;
}

.marquee-track i {
    font-family: var(--sans);
    font-style: normal;

    font-size: 12px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   PROGRAMS
========================================= */

.programs-section {
    background: #efebe3;
}

.programs-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.program-card {
    position: relative;

    min-height: 490px;

    padding: 38px;

    display: flex;
    flex-direction: column;

    background: rgba(255,255,255,.65);

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform .5s ease,
        background .5s ease,
        box-shadow .5s ease;
}

.program-card:hover {
    transform: translateY(-9px);

    background: white;

    box-shadow: var(--shadow);
}

.program-card.featured {
    background: var(--bg-dark);
    color: white;
}

.program-card.featured:hover {
    background: #171c19;
}

.program-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border: 1px solid rgba(183,123,66,.2);

    border-radius: 50%;

    transition: transform .6s ease;
}

.program-card:hover::before {
    transform: scale(1.5);
}

.program-top {
    display: flex;
    justify-content: space-between;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .15em;
}

.program-arrow {
    font-size: 20px;
}

.program-icon {
    position: relative;

    width: 72px;
    height: 72px;

    margin: 65px 0 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(183,123,66,.35);

    transition: transform .5s ease;
}

.program-card:hover .program-icon {
    transform: rotate(8deg) scale(1.05);
}

.icon-circle {
    width: 28px;
    height: 28px;

    border: 2px solid var(--accent);

    border-radius: 50%;
}

.icon-line {
    position: absolute;

    width: 42px;
    height: 1px;

    background: var(--accent);

    transform: rotate(45deg);
}

.icon-grid {
    width: 30px;
    height: 30px;

    background:
        linear-gradient(
            90deg,
            var(--accent) 1px,
            transparent 1px
        ),
        linear-gradient(
            var(--accent) 1px,
            transparent 1px
        );

    background-size: 10px 10px;
}

.icon-wave {
    width: 42px;
    height: 20px;

    border-top: 2px solid var(--accent);

    border-radius: 50%;

    transform: rotate(-5deg);
}

.icon-dots {
    width: 35px;
    height: 35px;

    background:
        radial-gradient(
            circle,
            var(--accent) 2px,
            transparent 3px
        );

    background-size: 12px 12px;
}

.program-card h3 {
    font-family: var(--serif);

    font-size: 36px;
    line-height: 1;

    font-weight: 500;

    letter-spacing: -.025em;
}

.program-card p {
    max-width: 490px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.75;
}

.program-card.featured p {
    color: var(--text-light-soft);
}

.program-card ul {
    margin-top: 23px;

    list-style: none;
}

.program-card li {
    position: relative;

    padding-left: 18px;
    margin-bottom: 7px;

    color: var(--text-soft);

    font-size: 12px;
}

.program-card.featured li {
    color: var(--text-light-soft);
}

.program-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: auto;
    padding-top: 30px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.featured .text-link {
    color: white;
}

.text-link span {
    color: var(--accent);
    font-size: 17px;

    transition: transform .3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   PHILOSOPHY
========================================= */

.philosophy-section {
    background: var(--bg-dark);
    color: white;
}

.philosophy-container {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 130px;

    align-items: center;
}

.philosophy-content .section-label {
    color: var(--accent-light);
}

.philosophy-content h2 {
    max-width: 680px;
}

.philosophy-content > p {
    max-width: 650px;

    color: var(--text-light-soft);

    line-height: 1.8;

    margin-top: 25px;
}

.philosophy-content .lead {
    color: white;

    font-family: var(--serif);

    font-size: 22px;
    line-height: 1.5;
}

.philosophy-visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-circle {
    position: relative;

    width: 400px;
    height: 400px;

    border: 1px solid rgba(183,123,66,.35);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: slowRotate 25s linear infinite;
}

@keyframes slowRotate {
    to {
        transform: rotate(360deg);
    }
}

.philosophy-circle::before,
.philosophy-circle::after {
    content: "";

    position: absolute;

    border-radius: 50%;
}

.philosophy-circle::before {
    width: 310px;
    height: 310px;

    border: 1px dashed rgba(183,123,66,.25);
}

.philosophy-circle::after {
    width: 210px;
    height: 210px;

    background:
        radial-gradient(
            circle,
            rgba(183,123,66,.15),
            transparent 70%
        );
}

.circle-text {
    position: absolute;

    top: -20px;

    color: var(--accent-light);

    font-size: 9px;
    letter-spacing: .25em;
}

.circle-center {
    position: relative;
    z-index: 2;

    width: 115px;
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);

    border-radius: 50%;

    animation: counterRotate 25s linear infinite;
}

@keyframes counterRotate {
    to {
        transform: rotate(-360deg);
    }
}

.circle-center span {
    font-family: var(--serif);
    font-size: 60px;
    font-style: italic;
}

.philosophy-floating {
    position: absolute;

    right: 0;
    bottom: 50px;

    padding: 20px 24px;

    background: rgba(255,255,255,.07);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.1);

    display: flex;
    flex-direction: column;
}

.philosophy-floating strong {
    font-family: var(--serif);
    font-size: 22px;
}

.philosophy-floating span {
    color: var(--text-light-soft);
    font-size: 11px;
}

.approach-list {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 1px;

    margin-top: 55px;

    background: rgba(255,255,255,.1);
}

.approach-list > div {
    padding: 25px;

    background: var(--bg-dark);
}

.approach-list span {
    display: block;

    margin-bottom: 18px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .15em;
}

.approach-list strong {
    font-family: var(--serif);

    font-size: 22px;
}

.approach-list p {
    margin-top: 7px;

    color: var(--text-light-soft);

    font-size: 12px;
}


/* =========================================
   TIMELINE
========================================= */

.experience-section {
    background: var(--bg);
}

.timeline {
    position: relative;

    max-width: 980px;

    margin: 0 auto;
}

.timeline-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background: var(--border);

    transform: translateX(-50%);
}

.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 220px;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-number {
    position: absolute;

    left: 50%;
    top: 0;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);

    border: 1px solid var(--accent);

    background: var(--bg);

    border-radius: 50%;

    color: var(--accent);

    font-size: 11px;
    font-weight: 700;
}

.timeline-content {
    padding: 0 70px 80px 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding:
        0
        0
        80px
        70px;
}

.timeline-content span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
}

.timeline-content h3 {
    margin-top: 15px;

    font-family: var(--serif);

    font-size: 36px;
    font-weight: 500;

    letter-spacing: -.03em;
}

.timeline-content p {
    max-width: 430px;

    margin-top: 12px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   QUOTE
========================================= */

.quote-section {
    position: relative;

    padding: 180px 0;

    background: #e9e4db;

    overflow: hidden;
}

.quote-background-text {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%)
        rotate(-8deg);

    font-family: var(--serif);

    font-size: 25vw;
    line-height: .7;

    color: rgba(183,123,66,.07);

    pointer-events: none;
}

.quote-content {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    text-align: center;
}

.quote-mark {
    display: block;

    height: 65px;

    color: var(--accent);

    font-family: var(--serif);

    font-size: 100px;
    line-height: 1;
}

blockquote {
    font-family: var(--serif);

    font-size: clamp(35px, 5vw, 67px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.quote-line {
    width: 50px;
    height: 2px;

    margin: 45px auto 18px;

    background: var(--accent);
}

.quote-caption {
    color: var(--text-soft);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .18em;
}


/* =========================================
   FAQ
========================================= */

.faq-container {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 110px;
}

.faq-intro {
    position: sticky;
    top: 130px;

    align-self: start;
}

.faq-intro p {
    margin: 25px 0 35px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 27px 0;

    border: none;
    background: transparent;

    color: var(--text);

    text-align: left;

    font-size: 15px;
    font-weight: 600;
}

.faq-plus {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    color: var(--accent);

    font-size: 19px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);

    background: var(--accent);
    color: white;
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .45s ease;
}

.faq-answer p {
    overflow: hidden;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 27px;
}


/* =========================================
   LOCATION
========================================= */

.location-section {
    background: #eae6de;
}

.location-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 80px;

    align-items: center;
}

.location-content h2 {
    max-width: 550px;
}

.location-content > p {
    max-width: 500px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.8;
}

.address-card {
    display: flex;
    gap: 20px;

    margin-top: 40px;
    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: 0 20px 50px rgba(17,21,19,.06);
}

.address-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(183,123,66,.35);
}

.address-icon span {
    width: 11px;
    height: 11px;

    border: 2px solid var(--accent);

    border-radius: 50%;
}

.address-card div:last-child {
    display: flex;
    flex-direction: column;
}

.address-label {
    margin-bottom: 8px;

    color: var(--accent);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
}

.address-card strong {
    font-size: 14px;
}

.address-card span:last-child {
    margin-top: 3px;

    color: var(--text-soft);

    font-size: 12px;
}

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.direction-link span {
    color: var(--accent);
}

.map-wrapper {
    position: relative;

    min-height: 550px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter: grayscale(1) contrast(.9);
}

.map-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(183,123,66,.12),
            transparent 40%
        );
}

.map-label {
    position: absolute;

    z-index: 3;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px 17px;

    background: rgba(17,21,19,.92);

    color: white;

    box-shadow: var(--shadow);
}

.map-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow: 0 0 0 6px rgba(183,123,66,.15);
}

.map-label div {
    display: flex;
    flex-direction: column;
}

.map-label strong {
    font-size: 11px;
    letter-spacing: .05em;
}

.map-label small {
    margin-top: 2px;

    color: #9ea49f;

    font-size: 9px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    position: relative;

    background: var(--bg-dark);

    color: white;

    overflow: hidden;
}

.contact-decoration {
    position: absolute;

    border: 1px solid rgba(183,123,66,.14);

    border-radius: 50%;

    pointer-events: none;
}

.decoration-one {
    width: 600px;
    height: 600px;

    right: -300px;
    top: -200px;
}

.decoration-two {
    width: 400px;
    height: 400px;

    left: -230px;
    bottom: -250px;
}

.contact-header {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin-bottom: 80px;
}

.contact-header .section-label {
    color: var(--accent-light);
}

.contact-header p {
    max-width: 650px;

    margin-top: 25px;

    color: var(--text-light-soft);

    font-size: 15px;
    line-height: 1.8;
}

.contact-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}

.contact-detail {
    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 18px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border-light);
}

.detail-index {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;
}

.contact-detail small {
    display: block;

    margin-bottom: 8px;

    color: #7f8781;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .17em;
}

.contact-detail a,
.contact-detail span:not(.detail-index) {
    font-family: var(--serif);

    font-size: 22px;
}

.contact-detail a {
    transition: color .3s ease;
}

.contact-detail a:hover {
    color: var(--accent-light);
}

.contact-note {
    display: flex;
    gap: 18px;

    margin-top: 35px;
}

.note-line {
    width: 2px;

    flex-shrink: 0;

    background: var(--accent);
}

.contact-note p {
    color: var(--text-light-soft);

    font-size: 12px;
    line-height: 1.8;
}

.contact-form {
    padding: 45px;

    background: #f8f5ef;

    color: var(--text);
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 23px;
}

.form-group label {
    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .13em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 16px 17px;

    border: 1px solid rgba(21,25,22,.14);

    outline: none;

    background: white;

    color: var(--text);

    font-size: 13px;

    border-radius: 0;

    transition:
        border .3s ease,
        box-shadow .3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(183,123,66,.08);
}

.form-submit {
    border: none;

    width: 100%;
}

.form-status {
    min-height: 20px;

    margin-top: 15px;

    color: var(--accent-dark);

    font-size: 12px;
}

.form-disclaimer {
    margin-top: 15px;

    color: #777d78;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    position: relative;

    padding: 150px 0;

    background: var(--accent);

    color: white;

    overflow: hidden;
}

.final-cta-pattern {
    position: absolute;

    inset: 0;

    opacity: .16;

    background-image:
        linear-gradient(
            45deg,
            transparent 48%,
            white 49%,
            white 51%,
            transparent 52%
        );

    background-size: 70px 70px;

    animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
    to {
        background-position: 70px 70px;
    }
}

.final-cta-content {
    position: relative;

    max-width: 900px;
}

.final-cta .section-label {
    color: white;
}

.final-cta h2 {
    margin-top: 25px;

    font-family: var(--serif);

    font-size: clamp(55px, 7vw, 105px);

    line-height: .9;

    letter-spacing: -.055em;

    font-weight: 500;
}

.button-light {
    margin-top: 45px;

    background: white;

    color: var(--text);
}

.button-light:hover {
    background: var(--text);
    color: white;
}


/* =========================================
   LEGAL
========================================= */

.legal-section {
    background: var(--bg);

    border-bottom: 1px solid var(--border);
}

.legal-alt {
    background: #ece8e0;
}

.legal-container {
    max-width: 950px;
}

.legal-container h2 {
    margin-top: 20px;

    font-family: var(--serif);

    font-size: clamp(48px,6vw,70px);

    font-weight: 500;

    letter-spacing: -.045em;
}

.legal-updated {
    margin-top: 12px;

    color: var(--text-soft);

    font-size: 11px;
}

.legal-content {
    margin-top: 55px;
}

.legal-content h3 {
    margin-top: 35px;
    margin-bottom: 10px;

    font-size: 17px;
}

.legal-content p {
    max-width: 800px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.9;
}

.legal-content a {
    color: var(--accent-dark);

    text-decoration: underline;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 75px 0 30px;

    background: #0c0f0d;

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr repeat(3,1fr);

    gap: 70px;

    padding-bottom: 65px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.site-footer .brand-text strong {
    color: white;
}

.site-footer .brand-text small {
    color: #777e79;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 25px;

    color: #8c938e;

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}

.footer-column > span:first-child {
    margin-bottom: 12px;

    color: var(--accent-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.footer-column a,
.footer-column > span:not(:first-child) {
    color: #8c938e;

    font-size: 11px;

    transition: color .3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    color: #666e68;

    font-size: 10px;

    letter-spacing: .03em;
}


/* =========================================
   COOKIE
========================================= */

.cookie-banner {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 2000;

    width: min(520px, calc(100% - 50px));

    display: flex;
    align-items: center;
    gap: 25px;

    padding: 20px 22px;

    background: rgba(17,21,19,.96);

    color: white;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow: 0 25px 70px rgba(0,0,0,.2);

    backdrop-filter: blur(15px);

    transition:
        transform .5s ease,
        opacity .5s ease;
}

.cookie-banner.hidden {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner strong {
    font-size: 12px;
}

.cookie-banner p {
    margin-top: 5px;

    color: #9da49e;

    font-size: 10px;

    line-height: 1.5;
}

.cookie-banner button {
    flex-shrink: 0;

    padding: 11px 18px;

    border: none;

    background: var(--accent);

    color: white;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .1em;
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 500;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    background: white;

    color: var(--text);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--text);
    color: white;
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s cubic-bezier(.22,.61,.36,1),
        transform .8s cubic-bezier(.22,.61,.36,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .22s;
}


/* =========================================
   CURSOR
========================================= */

.cursor-glow {
    position: fixed;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(183,123,66,.06),
        transparent 70%
    );

    pointer-events: none;

    transform: translate(-50%,-50%);

    z-index: 999;

    transition:
        opacity .3s ease;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .container {
        width: min(calc(100% - 50px), var(--container));
    }

    .main-nav {
        gap: 18px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(65px, 9vw, 100px);
    }

    .instrument-card {
        transform: scale(.82);
    }

    .philosophy-container {
        gap: 60px;
    }

    .faq-container {
        gap: 60px;
    }

}


@media (max-width: 900px) {

    .section-padding {
        padding: 100px 0;
    }

    .main-nav,
    .nav-button {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav.mobile-open {
        position: absolute;

        top: 75px;
        left: 25px;
        right: 25px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: rgba(255,255,255,.97);

        border: 1px solid var(--border);

        box-shadow: var(--shadow);

        backdrop-filter: blur(15px);
    }

    .main-nav.mobile-open a {
        padding: 14px 0;

        border-bottom: 1px solid var(--border);
    }

    .hero {
        min-height: auto;
        padding-bottom: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .split-heading,
    .about-grid,
    .philosophy-container,
    .faq-container,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-heading {
        gap: 20px;
    }

    .about-side-content {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

    .mini-feature {
        display: block;
    }

    .mini-feature h4 {
        margin-top: 20px;
    }

    .philosophy-visual {
        min-height: 450px;
    }

    .faq-intro {
        position: static;
    }

    .location-grid {
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: clamp(57px, 16vw, 85px);
    }

    .hero h1 span {
        transform: translateX(12px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .instrument-card {
        transform: scale(.63);
    }

    .hero-bottom {
        position: static;
        margin-top: 30px;
    }

    .hero-bottom-inner {
        grid-template-columns: 1fr;
    }

    .hero-bottom-inner > div,
    .hero-bottom-inner > div:first-child {
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .section-heading h2,
    .philosophy-content h2,
    .location-content h2,
    .contact-header h2,
    .faq-intro h2 {
        font-size: 48px;
    }

    .about-large-card {
        min-height: 500px;
        padding: 35px;
    }

    .about-large-card h3 {
        font-size: 42px;
    }

    .about-side-content {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-height: 470px;
    }

    .philosophy-circle {
        width: 290px;
        height: 290px;
    }

    .philosophy-circle::before {
        width: 220px;
        height: 220px;
    }

    .circle-center {
        width: 90px;
        height: 90px;
    }

    .circle-center span {
        font-size: 45px;
    }

    .philosophy-floating {
        right: 5px;
        bottom: 15px;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 27px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        display: block;
        direction: ltr;
        padding-left: 75px;
    }

    .timeline-number {
        left: 0;
        transform: none;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding:
            0
            0
            65px;
    }

    .timeline-content h3 {
        font-size: 30px;
    }

    .quote-section {
        padding: 100px 0;
    }

    blockquote {
        font-size: 38px;
    }

    .map-wrapper {
        min-height: 430px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cookie-banner {
        left: 17px;
        bottom: 17px;

        width: calc(100% - 34px);

        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner button {
        width: 100%;
    }

    .back-to-top {
        right: 17px;
        bottom: 17px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}