/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */

:root {
    --bg-color: #17171B;
    --text-main: #F5F0E8;
    --accent-gold: #C9A96E;
    --muted-gold: #8A6E3E;
    --deep-blue: #1B2A49;
    --bright-gold: #E6B325;
    --paint-yellow: #F2C245;
    --card-bg: #201F24;
    --border-gold: rgba(201, 169, 110, 0.2);
    --border-bright: rgba(230, 179, 37, 0.22);
    --text-muted: rgba(245, 240, 232, 0.72);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    --container-padding: 5vw;
    --section-spacing: 13vh;
    --radius-min: 2px;
}

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

html {
    scroll-behavior: initial; /* handled by Lenis */
}

body {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(40, 58, 96, 0.28) 0%, rgba(40, 58, 96, 0.06) 34%, transparent 64%),
        var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

body.cursor-ready {
    cursor: none;
}

body.cursor-ready a,
body.cursor-ready button {
    cursor: none;
}

@media (max-width: 768px) {
    body.cursor-ready {
        cursor: auto;
    }
}

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

a:focus-visible, button:focus-visible {
    outline: 1px solid var(--bright-gold);
    outline-offset: 6px;
}

::selection {
    background: var(--muted-gold);
    color: var(--bg-color);
}

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

/* ==========================================================================
   SCROLL PROGRESS
   ========================================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--bright-gold), rgba(245, 240, 232, 0.78), var(--accent-gold));
    box-shadow: 0 0 18px rgba(230, 179, 37, 0.38);
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */

.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-loader::after {
    content: '';
    width: 42px; height: 42px;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-top-color: var(--bright-gold);
    border-radius: 50%;
    animation: loaderSpin 1.1s linear infinite;
}

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

/* ==========================================================================
   PAINT SPLASH ACCENT (used sparingly — one or two per page)
   ========================================================================== */

.paint-splash {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: scale(0.85) rotate(var(--splash-rot, 0deg));
}

.paint-splash svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   MINIMAL CUSTOM CURSOR + TRAIL
   ========================================================================== */

.custom-cursor,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.custom-cursor {
    width: 6px;
    height: 6px;
    background: var(--bright-gold);
    transform: translate3d(-50%, -50%, 0);
}

.cursor-trail {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(230, 179, 37, 0.35);
    background: transparent;
    transform: translate3d(-50%, -50%, 0);
}

.custom-cursor.visible,
.cursor-trail.visible {
    opacity: 1;
}

.custom-cursor.hover {
    width: 5px;
    height: 5px;
}

.cursor-trail.hover {
    width: 40px;
    height: 40px;
    border-color: rgba(230, 179, 37, 0.55);
}

@media (max-width: 768px) {

    .custom-cursor,
    .cursor-trail {
        display: none;
    }
}

.cursor-text {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bg-color);
    background: var(--bright-gold);
    padding: 0.5em 1em;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cursor-text.visible {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
}

/* ==========================================================================
   1. FIXED NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.4rem var(--container-padding);
    z-index: 1000;
    background: rgba(23, 23, 27, 0.66);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    padding: 0.95rem var(--container-padding);
    border-bottom: 1px solid var(--border-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 1001;
}

.logo-mark-img {
    height: 34px;
    width: auto;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

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

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--bright-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-main);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.hamburger.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(23, 23, 27, 0.97);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

@media (min-width: 769px) {
    .mobile-menu, .hamburger { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-min);
    border: 1px solid var(--accent-gold);
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bright-gold);
    border-color: var(--bright-gold);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(230, 179, 37, 0.14);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-min);
    border: 1px solid var(--border-gold);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--bright-gold);
    color: var(--bright-gold);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--border-gold);
    transition: border-color 0.3s ease, gap 0.3s ease;
}

.btn-text:hover {
    border-color: var(--bright-gold);
    gap: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   HERO (home page)
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px var(--container-padding) 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--bright-gold);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.75rem;
}

.hero-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(500px, 60vw, 900px);
    transform: translate(-50%, -46%);
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 20px;
    height: 30px;
    border: 1px solid var(--text-main);
    border-radius: 10px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--accent-gold);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* ==========================================================================
   SUB-PAGE HERO (about / workshops / team / register / contact)
   ========================================================================== */

.page-hero {
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px var(--container-padding) 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.page-eyebrow {
    color: var(--bright-gold);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 40rem;
}

/* ==========================================================================
   MOMENTUM STRIP (home stats)
   ========================================================================== */

.momentum-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    background: rgba(32, 31, 36, 0.65);
}

.momentum-item {
    min-height: 170px;
    padding: 2.4rem var(--container-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.momentum-item + .momentum-item {
    border-left: 1px solid var(--border-gold);
}

.momentum-value {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    line-height: 1;
    color: var(--text-main);
}

.momentum-label {
    margin-top: 0.85rem;
    color: var(--muted-gold);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ==========================================================================
   MANIFESTO / PULL QUOTE
   ========================================================================== */

.manifesto {
    padding: var(--section-spacing) var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46vh;
}

.manifesto-content {
    max-width: 920px;
    text-align: center;
}

.manifesto-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.4vw, 3.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.gold-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--bright-gold), var(--muted-gold), transparent);
    margin: 0 auto;
    transform-origin: top;
}

/* ==========================================================================
   STORY / CONTENT GRID (about, school, vision, difference)
   ========================================================================== */

.story-section {
    padding: calc(var(--section-spacing) * 0.85) var(--container-padding);
    border-top: 1px solid var(--border-gold);
}

.story-section:first-of-type {
    border-top: none;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.8fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.story-kicker {
    color: var(--bright-gold);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding-top: 0.55rem;
}

.story-copy {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-main);
}

.story-copy p + p {
    margin-top: 1.75rem;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

/* ==========================================================================
   CATEGORIES GRID (workshops page)
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 3.6rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--bright-gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ateliers {
    padding: var(--section-spacing) var(--container-padding);
}

.ateliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.atelier-card {
    background: linear-gradient(150deg, rgba(32, 31, 36, 0.98), rgba(32, 31, 36, 0.88));
    padding: 3rem 2.4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.atelier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(320px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(230, 179, 37, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.atelier-card:hover::before {
    opacity: 1;
}

.atelier-card .card-initial,
.atelier-card .card-title,
.atelier-card .card-desc {
    position: relative;
    z-index: 1;
}

.atelier-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.card-initial {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-style: italic;
    color: var(--muted-gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.atelier-card:hover .card-initial {
    color: var(--bright-gold);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ==========================================================================
   TEAM PAGE — each person is their own layered cutout on a shared themed
   background, matching the exact original composition. Hovering one
   person zooms only them and traces a soft gold outline glow around their
   silhouette; everyone else stays put. Tiny invisible hitzones (sized to
   each person's actually-visible, non-occluded area) handle the hover
   detection so people partly hidden behind others stay reachable.
   ========================================================================== */

.team-section {
    padding: calc(var(--section-spacing) * 0.6) var(--container-padding) var(--section-spacing);
}

.team-2026-heading {
    text-align: center;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.reveal-hint {
    text-align: center;
    color: var(--muted-gold);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.team-photo-scene {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    cursor: none;
    border: 18px solid #2b1f14;
    border-image: linear-gradient(to right, #2b1f14, #44301d, #2b1f14) 1;
    box-shadow: 
        0 22px 45px rgba(0, 0, 0, 0.7), 
        inset 0 0 12px rgba(0, 0, 0, 0.8);
}

.scene-bg {
    display: block;
    width: 100%;
    height: auto;
}

.person-wrap {
    position: absolute;
}

.person-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: 50% 50%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 0 transparent);
}

.person-wrap.hovered .person-img {
    transform: scale(1.09);
    filter:
        drop-shadow(0 0 5px rgba(230, 179, 37, 0.95))
        drop-shadow(0 0 14px rgba(230, 179, 37, 0.65))
        drop-shadow(0 0 28px rgba(230, 179, 37, 0.35));
}



.hitzone {
    position: absolute;
    z-index: 60;
}

@media (max-width: 768px) {
    .team-photo-scene {
        cursor: auto;
    }

    .reveal-hint {
        font-size: 0.78rem;
    }
}

.team-manifesto {
    min-height: 42vh;
}

/* ==========================================================================
   REGISTER PAGE — guideline list + working registration form
   ========================================================================== */

.register-section {
    padding: calc(var(--section-spacing) * 0.7) var(--container-padding) var(--section-spacing);
}

.guideline-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.guideline-list li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(245, 240, 232, 0.82);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
}

.guideline-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0.15em;
    color: var(--muted-gold);
    font-size: 0.6em;
}

.guideline-list li strong {
    color: var(--text-main);
    font-weight: 500;
}

.entry-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: none;
    padding: 0;
    margin: 0;
}

.form-field label,
.form-field legend {
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--text-main);
    padding: 0;
}

.required {
    color: var(--bright-gold);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"] {
    background: rgba(32, 31, 36, 0.45);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: 0.95rem 1.25rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.form-field input:focus {
    outline: none;
    border-color: var(--bright-gold);
    background: rgba(32, 31, 36, 0.75);
    box-shadow: 0 0 15px rgba(230, 179, 37, 0.18);
}

.radio-pills {
    display: flex;
    gap: 1rem;
}

.radio-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-pill:has(input:checked) {
    border-color: var(--bright-gold);
    color: var(--text-main);
    background: rgba(230, 179, 37, 0.1);
}

.form-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.form-status {
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.form-status.success {
    color: var(--bright-gold);
}

.form-status.error {
    color: #d98787;
}

/* ---- Register page: info + sticky form side-by-side ---- */

.register-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
    gap: clamp(2.5rem, 6vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    padding: calc(var(--section-spacing) * 0.75) var(--container-padding) var(--section-spacing);
}

.register-info {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

.info-block-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.1rem;
    color: var(--text-main);
}

.info-kicker {
    color: var(--bright-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.info-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-main);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-pill {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: 0.85rem 1.15rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.category-pill:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}

.category-pill strong {
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.category-pill span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.guideline-list.compact-list {
    gap: 0.7rem;
}

.guideline-list.compact-list li {
    font-size: 0.95rem;
}

.info-contact {
    color: rgba(245, 240, 232, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.info-contact a {
    color: var(--bright-gold);
    text-decoration: underline;
}

.info-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.register-form-panel {
    position: sticky;
    top: 110px;
    background: linear-gradient(150deg, rgba(32, 31, 36, 0.98), rgba(32, 31, 36, 0.9));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: clamp(2rem, 3.5vw, 2.75rem);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
}

.form-panel-header {
    text-align: left;
    margin-bottom: 2rem;
}

.form-panel-header .section-title {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    margin-bottom: 0.5rem;
}

.register-form-panel .entry-form {
    max-width: none;
    margin: 0;
    gap: 1.4rem;
}

.register-form-panel .form-submit {
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .register-layout {
        grid-template-columns: 1fr;
    }

    .register-form-panel {
        position: static;
        order: -1;
    }
}

/* ==========================================================================
   FOUNDERS' VISION PAGE
   ========================================================================== */

.founder-section {
    padding: calc(var(--section-spacing) * 0.6) var(--container-padding) var(--section-spacing);
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 8vw, 7rem);
    max-width: 1200px;
    margin: 0 auto;
}

.founder-block {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.6fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.founder-block--reverse {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.85fr);
}

.founder-block--reverse .founder-photo-wrap {
    order: 2;
}

.founder-block--reverse .founder-copy {
    order: 1;
}

.founder-photo-wrap {
    border: 12px solid #2b1f14;
    border-image: linear-gradient(to right, #2b1f14, #44301d, #2b1f14) 1;
    box-shadow: 
        0 16px 30px rgba(0, 0, 0, 0.6), 
        inset 0 0 8px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

.founder-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.founder-photo-wrap:hover .founder-photo {
    transform: scale(1.035);
}

.founder-copy {
    position: relative;
    padding-top: 0.5rem;
}

.founder-mark {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--muted-gold);
    opacity: 0.6;
    margin-bottom: -1rem;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.9vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-main);
}

.founder-quote + .founder-quote {
    margin-top: 1.5rem;
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gold);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--bright-gold);
    margin-bottom: 0.3rem;
}

.founder-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 800px) {
    .founder-block,
    .founder-block--reverse {
        grid-template-columns: 1fr;
    }

    .founder-block--reverse .founder-photo-wrap,
    .founder-block--reverse .founder-copy {
        order: initial;
    }

    .founder-photo-wrap {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
    padding: calc(var(--section-spacing) * 0.6) var(--container-padding) var(--section-spacing);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: 2.4rem;
    text-align: center;
}

.contact-card .story-kicker {
    padding-top: 0;
    margin-bottom: 1rem;
}

.contact-card a, .contact-card p.placeholder {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.contact-card p.placeholder {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.15rem;
}

.contact-card a:hover {
    color: var(--bright-gold);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: var(--section-spacing) var(--container-padding);
    text-align: center;
    background: radial-gradient(circle at center, var(--card-bg) 0%, var(--bg-color) 70%);
    border-top: 1px solid var(--border-gold);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 5rem var(--container-padding) 2rem;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-img {
    height: 30px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-gold);
    margin-bottom: 1.4rem;
}

.footer-nav a, .footer-contact a {
    display: block;
    margin-bottom: 0.7rem;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    width: fit-content;
}

.footer-nav a:hover, .footer-contact a:hover {
    color: var(--bright-gold);
}

.footer-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-gold);
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* ==========================================================================
   COMPETITIONS PAGE
   ========================================================================== */

.competitions-intro {
    padding: calc(var(--section-spacing) * 0.5) var(--container-padding) 0;
}

.competitions-section {
    padding: var(--section-spacing) var(--container-padding);
}

.competitions-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.competition-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(90px, 0.5fr) minmax(0, 1.6fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    background: linear-gradient(150deg, rgba(32, 31, 36, 0.98), rgba(32, 31, 36, 0.85));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: clamp(2rem, 4vw, 3.2rem);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.competition-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(420px circle at var(--spot-x, 15%) var(--spot-y, 15%), rgba(230, 179, 37, 0.12), transparent 62%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.competition-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.competition-card:hover::before {
    opacity: 1;
}

.competition-number {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-style: italic;
    line-height: 1;
    color: var(--muted-gold);
    transition: color 0.4s ease;
}

.competition-card:hover .competition-number {
    color: var(--bright-gold);
}

.competition-body {
    position: relative;
    z-index: 1;
}

.competition-tagline {
    color: var(--bright-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.competition-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.competition-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.competition-desc p + p {
    margin-top: 1.1rem;
}

.competition-judged {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gold);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.judged-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-right: 0.4rem;
}

.judged-pill {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--text-main);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
}

@media (max-width: 700px) {
    .competition-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .competition-number {
        font-size: 3rem;
    }
}

/* ---- Pricing ---- */

.pricing-section {
    padding: 0 var(--container-padding) var(--section-spacing);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    background: linear-gradient(150deg, rgba(32, 31, 36, 0.98), rgba(32, 31, 36, 0.85));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-min);
    padding: 2.75rem 2rem;
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card--feature {
    border-color: var(--border-bright);
    background: linear-gradient(150deg, rgba(48, 40, 20, 0.55), rgba(32, 31, 36, 0.9));
}

.pricing-tier {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1.25rem;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--bright-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-amount span {
    font-size: 0.35em;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pricing-note {
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* ==========================================================================
   UTILITIES / SCROLL-REVEAL ANIMATION CLASSES
   ========================================================================== */

.fade-up, .fade-up-scroll {
    opacity: 0;
    transform: translateY(26px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 6vw;
        --section-spacing: 10vh;
    }

    .navbar { padding: 1.1rem var(--container-padding); }
    .hero { min-height: 92vh; padding-top: 110px; }
    .page-hero { min-height: 46vh; padding-top: 120px; }

    .section-header { margin-bottom: 3.5rem; }

    .ateliers-grid, .team-grid, .momentum-strip, .contact-grid {
        grid-template-columns: 1fr;
    }

    .momentum-item { min-height: 140px; }
    .momentum-item + .momentum-item {
        border-left: 0;
        border-top: 1px solid var(--border-gold);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
    .cta-buttons { align-items: stretch; flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

/* ==========================================================================
   STROLLING CANVAS & FRAMED CANVAS STYLES
   ========================================================================== */

.strolling-canvas-section {
    padding: calc(var(--section-spacing) * 0.8) var(--container-padding);
    background: radial-gradient(ellipse at center, rgba(10, 28, 58, 0.15) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.strolling-canvas-container {
    perspective: 1000px;
    width: 100%;
    max-width: 720px;
    display: flex;
    justify-content: center;
}

.framed-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 18px solid #2b1f14; /* Wood-like thick dark frame */
    border-image: linear-gradient(to right, #2b1f14, #44301d, #2b1f14) 1;
    box-shadow: 
        0 22px 40px rgba(0, 0, 0, 0.65), 
        inset 0 0 10px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: translateY(60px) rotateX(15deg) rotateY(-5deg);
    opacity: 0;
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.canvas-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.5s ease;
}

.framed-canvas:hover .canvas-artwork {
    filter: brightness(1.0) contrast(1.1);
}

.canvas-text-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 28, 58, 0.9) 15%, rgba(0, 0, 0, 0.25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
    color: var(--text-main);
}

.canvas-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.canvas-author {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bright-gold);
}
