/* ============================================================================
   MINDCRAFT METHOD - STYLESHEET
   ============================================================================ */

/* COLOR PALETTE */
:root {
    --color-linen: #dbd5cb;
    --color-forest-green: #465F4A;
    --color-dark-text: #2a2420;
    --color-muted-text: #6e6860;
    --color-white: #ffffff;
    --color-cream: #f0e9d8;
    --color-hero-overlay: #6e7a6e;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    
    --transition-smooth: 0.3s ease-in-out;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-text);
    background-color: var(--color-linen);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    background-color: var(--color-forest-green);
    color: var(--color-white);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #465F4A;
    outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ============================================================================
   NAVIGATION BAR
   ============================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(248, 246, 245, 0.95);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
    min-height: 80px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 80px;
}

.navbar.scrolled {
    background-color: #f0ece4;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
}

.logo-image {
    height: 56px;
    width: auto;
    display: block;
}

/* Centered Navigation Links */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0 auto;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #2a2420;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #2a2420;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
    color: var(--color-forest-green);
}

.navbar.scrolled .nav-link.active {
    color: var(--color-forest-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-forest-green);
    opacity: 0.5;
    transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-forest-green);
    outline: none;
}

.nav-link.active {
    color: var(--color-forest-green);
}

.nav-link.active::after {
    width: 100%;
}

/* Right Section - Language Toggle & Login */
.nav-right {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

/* Language Toggle Pill */
.language-toggle {
    display: inline-flex;
    background-color: rgba(70, 95, 74, 0.1);
    border-radius: 20px;
    padding: 0.35rem;
    gap: 0.5rem;
}

.navbar.scrolled .language-toggle {
    background-color: rgba(70, 95, 74, 0.1);
}

.lang-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-muted-text);
    background-color: transparent;
    border-radius: 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.navbar.scrolled .lang-btn {
    color: var(--color-muted-text);
}

.lang-btn.lang-active {
    background-color: var(--color-forest-green);
    color: var(--color-white);
}

.lang-btn:hover:not(.lang-active) {
    color: var(--color-forest-green);
}

/* Login Button */
.login-btn {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2420;
    transition: color 0.3s ease;
}

.navbar.scrolled .login-btn {
    color: #2a2420;
}

.login-btn:hover,
.login-btn:focus {
    color: var(--color-forest-green);
    outline: none;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

/* Hero Background */
.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/photo1.jpg');
    background-size: cover;
    background-position: center center;
    background-color: #4a4a38;
    z-index: 1;
}

.hero-bg-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 10, 0.38);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 100%;
}

.hero-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(3.5rem, 7vw, 7rem);
    color: var(--color-cream);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(245, 243, 239, 0.82);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1.2rem;
    font-weight: 400;
    min-height: 1.2em;
}

/* Register Page */
.hero.hero--register {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    visibility: hidden;
}

.register-page {
    background-color: #dbd5cb;
    padding: 100px 2rem 80px;
    min-height: calc(100vh - 80px);
}

.register-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: transparent;
}

.register-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.register-pill {
    display: inline-block;
    background-color: rgba(70,95,74,0.1);
    color: #465F4A;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.register-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 3rem;
    color: #2a2420;
    margin: 0 0 0.75rem;
    line-height: 1.05;
}

.register-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #6e6860;
    margin: 0;
}

.register-divider {
    border-bottom: 1px solid rgba(70, 95, 74, 0.2);
    width: 100%;
    margin: 2rem 0;
}

.register-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #6e6860;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-label .required {
    color: #D5643E;
    margin-left: 0.25rem;
}

.form-control,
.form-select,
textarea {
    width: 100%;
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    background-color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2a2420;
    margin-top: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.form-control:focus,
.form-select:focus,
textarea:focus,
.register-btn:focus {
    outline: 2px solid #465F4A;
    outline-offset: 2px;
}

.form-control::placeholder {
    color: #a59b8f;
}

.error-msg {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #c0392b;
    min-height: 1.2rem;
}

.register-btn {
    width: 100%;
    background-color: #465F4A;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s ease;
}

.register-btn:hover:not(:disabled) {
    background-color: #394e3c;
}

.register-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

.success-message {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
    justify-items: center;
}

.success-message.visible {
    display: grid;
}

.success-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #465F4A;
    display: grid;
    place-items: center;
    position: relative;
}

.success-icon::before {
    content: '✓';
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
}

.success-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.5rem;
    color: #2a2420;
    margin: 0;
}

.success-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #2a2420;
    line-height: 1.8;
    max-width: 560px;
    margin: 0;
}

.success-back {
    font-family: var(--font-body);
    color: #465F4A;
    text-decoration: none;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* ============================================================================
   PHOTO PLACEHOLDER SYSTEM
   ============================================================================ */

.photo-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #c4bdb4;
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '✦';
    font-size: 1.25rem;
    color: rgba(80, 70, 62, 0.45);
}

.photo-placeholder::after {
    content: attr(data-dimensions);
    font-size: 0.8rem;
    color: rgba(80, 70, 62, 0.45);
    font-family: var(--font-body);
    font-weight: 500;
}

/* Variant: Square (1:1) */
.photo-placeholder.square {
    aspect-ratio: 1 / 1;
}

/* Variant: Wide (21:9) */
.photo-placeholder.wide {
    aspect-ratio: 21 / 9;
}

/* Variant: Portrait (9:16) */
.photo-placeholder.portrait {
    aspect-ratio: 9 / 16;
}

/* ============================================================================
   ABOUT / ETHOS SECTION
   ============================================================================ */

.about {
    background-color: var(--color-linen);
    padding: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.about-image {
    padding: 0;
}

.about-content {
    background-color: var(--color-linen);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-dark-text);
    line-height: 1.2;
    text-align: center;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-muted-text);
    line-height: 1.9;
    max-width: 680px;
    text-align: justify;
}

.btn {
    padding: 18px 52px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-smooth);
    width: fit-content;
}

.btn-primary {
    background-color: var(--color-forest-green);
    color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #385144;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 95, 74, 0.3);
    outline: none;
}

.btn-trainer-linkedin,
button.btn-trainer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-forest-green);
    color: var(--color-white);
    padding: 14px 26px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-trainer-linkedin:hover,
.btn-trainer-linkedin:focus {
    background-color: #385144;
    transform: translateY(-2px);
    outline: none;
}

/* ============================================================================
   PROFESSIONALS SECTION
   ============================================================================ */

.professionals {
    background-color: var(--color-white);
    padding: 120px 0;
    position: relative;
}

.professionals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.professionals-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-dark-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.3;
}

/* Professionals Tagline */
.professionals-tagline {
    text-align: right;
    margin-bottom: 4rem;
}

.professionals-tagline span {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-forest-green);
}

.professionals-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-forest-green);
    text-align: center;
    margin: 4rem 0 3rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-card-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.team-card-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
}

.team-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: #2a2420;
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #6e6860;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.team-bio {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #6e6860;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
}

.team-read-more {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #465F4A;
    margin-top: 12px;
    display: block;
    transition: color 0.3s ease;
}

/* ============================================================================
   PROGRAMS / SERVICES SECTION
   ============================================================================ */

.programs {
    background-color: var(--color-linen);
    padding: 120px 0;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.programs-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.programs-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: normal;
    color: var(--color-dark-text);
    line-height: 1.2;
}

.programs-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-muted-text);
    line-height: 1.85;
    padding-top: 0.5rem;
    text-align: justify;
}

.programs-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    align-items: start !important;
}

.program-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.program-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    background-color: #c4bdb4;
}

.program-card.coming-soon-card .program-card-image {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(70,95,74,0.12) 0%, rgba(70,95,74,0.06) 100%);
}

.coming-soon-top {
    display: grid;
    place-items: center;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
}

.coming-soon-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.coming-soon-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #465F4A;
    opacity: 0.7;
}

.notify-button {
    border: 1.5px solid #465F4A;
    background: transparent;
    color: #465F4A;
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.notify-button:hover:not(:disabled) {
    background: #465F4A;
    color: white;
}

.notify-button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

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

.program-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.program-badge {
    display: inline-block;
    background: rgba(70, 95, 74, 0.1);
    color: #465F4A;
    font-size: 0.75rem;
    border-radius: 100px;
    padding: 4px 12px;
    font-family: var(--font-body);
    font-weight: 600;
    align-self: flex-start;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.3;
}

.program-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-muted-text);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.program-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #6e6860;
    margin: 0.75rem 0;
}

.program-cta-btn {
    display: block;
    width: 100%;
    background: #465F4A;
    color: var(--color-white);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
    margin-top: auto;
}

.program-cta-btn:hover {
    background: #394e3c;
}

/* ============================================================================
   SOCIAL SECTION
   ============================================================================ */

.social {
    background-color: var(--color-linen);
    padding: 120px 0;
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-dark-text);
    text-align: center;
    margin-bottom: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.social-grid .photo-placeholder {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 2.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #465F4A;
}

.social-link:hover,
.social-link:focus-visible {
    opacity: 0.7;
    transform: scale(1.05);
}

.social-link-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #465F4A;
    letter-spacing: 0.05em;
}

.btn-social {
    background-color: var(--color-forest-green);
    color: var(--color-white);
    padding: 18px 52px;
    border-radius: 12px;
}

.btn-social:hover,
.btn-social:focus {
    background-color: #385144;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 95, 74, 0.3);
    outline: none;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact {
    background-color: var(--color-linen);
    padding: 120px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    padding-top: 1rem;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-muted-text);
    line-height: 1.85;
    text-align: justify;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--color-white);
    border: none;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
    border-radius: 4px;
    transition: all var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-muted-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(70, 95, 74, 0.1);
}

.btn-form {
    background-color: var(--color-forest-green);
    color: var(--color-white);
    padding: 18px 52px;
    border-radius: 12px;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-form:hover,
.btn-form:focus {
    background-color: #385144;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 95, 74, 0.3);
    outline: none;
}

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

.footer {
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 44px;
    width: auto;
}

/* Real photo inside team card */
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Real photo inside trainer profile */
.trainer-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-dark-text);
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-muted-text);
    letter-spacing: 0.04em;
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-muted-text);
}

/* ============================================================================
   PROGRAM / WEBINAR PAGE
   ============================================================================ */

/* Hero modifier — keeps all .hero base styles, overrides height only */
.hero.hero--program {
    height: 520px;
}

.program-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.program-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 10, 0.5);
    z-index: 2;
}

.program-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    max-width: 800px;
}

.program-label-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.program-hero-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
}

.program-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-white);
    opacity: 0.85;
    line-height: 1.6;
    max-width: 560px;
}

/* Details Bar */
.program-details-bar {
    background-color: var(--color-linen);
    padding: 24px 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.program-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.program-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.program-detail-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-muted-text);
    letter-spacing: 0.04em;
}

.program-detail-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark-text);
}

/* Main two-column layout */
.program-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 3rem;
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 4rem;
    align-items: start;
}

.program-back-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-muted-text);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    transition: color 0.3s ease;
}

.program-back-link:hover {
    color: var(--color-forest-green);
}

/* Session Cards */
.session-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.session-card:last-child {
    margin-bottom: 0;
}

.session-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-forest-green);
    color: var(--color-white);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.session-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.session-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-muted-text);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.session-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.session-topics li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark-text);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.55;
}

.session-topics li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-forest-green);
    font-weight: 600;
}

/* Sidebar */
.program-sidebar {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-price-box {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.program-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1;
}

.program-price-note {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-muted-text);
    margin-top: 4px;
}

.btn-program-cta {
    display: block;
    width: 100%;
    background: var(--color-forest-green);
    color: var(--color-white);
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 1.5rem;
    box-sizing: border-box;
}

.btn-program-cta:hover {
    background: #385144;
    transform: translateY(-2px);
}

.discount-badge {
    background: rgba(70, 95, 74, 0.07);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-dark-text);
    line-height: 1.5;
}

.program-includes-box {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.program-includes-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted-text);
    margin-bottom: 1rem;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.includes-list li {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-dark-text);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.includes-list li::before {
    content: '✓';
    color: var(--color-forest-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================================
   TRAINER PROFILE PAGE
   ============================================================================ */

.trainer-layout {
    display: grid;
    grid-template-columns: 45fr 55fr;
    margin-top: 88px;
    min-height: calc(100vh - 88px);
}

.trainer-photo-col {
    position: sticky;
    top: 88px;
    height: calc(100vh - 88px);
    align-self: start;
    overflow: hidden;
}

.trainer-photo-col .photo-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
}

.trainer-info-col {
    background-color: var(--color-linen);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: calc(100vh - 88px);
}

.trainer-back-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-muted-text);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.trainer-back-link:hover {
    color: var(--color-forest-green);
}

.trainer-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.15;
    margin-top: 0.25rem;
}

.trainer-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-muted-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.trainer-divider {
    border: none;
    border-top: 1px solid rgba(70, 95, 74, 0.2);
    margin: 0.5rem 0;
}

.trainer-bio-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark-text);
    line-height: 1.9;
    max-width: 520px;
}

.btn-trainer-linkedin {
    display: inline-block;
    background-color: var(--color-forest-green);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.btn-trainer-linkedin:hover {
    background-color: #385144;
    transform: translateY(-2px);
}

/* ============================================================================
   SCROLL TO TOP BUTTON
   ============================================================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--color-forest-green);
    color: var(--color-white);
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth), background-color var(--transition-smooth);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background-color: #385144;
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .language-toggle {
        padding: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* About section */
    .about-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-content {
        padding: 60px;
    }
    
    .about-heading {
        font-size: 2.5rem;
    }
    
    /* Professionals section */
    .professionals {
        padding: 80px 0;
    }
    
    .professionals-quote {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        margin-bottom: 4rem;
    }
    
    .professionals-decoration {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Programs section */
    .programs {
        padding: 80px 0;
    }
    
    .programs-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .programs-heading {
        font-size: 2.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-card {
        padding: 2.5rem;
    }
    
    /* Social section */
    .social {
        padding: 80px 0;
    }
    
    .social-container {
        padding: 0 1rem;
    }
    
    .social-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Contact section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-heading {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }
    
    .nav-logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        gap: 1rem;
        font-size: 0.8rem;
        margin: 0.75rem 0;
    }
    
    .nav-right {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .hero-heading {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* About section */
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 40px;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    /* Professionals section */
    .professionals {
        padding: 60px 1rem;
    }
    
    .professionals-container {
        padding: 0 1rem;
    }
    
    .professionals-quote {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .professionals-title {
        font-size: 1.8rem;
        margin: 2rem 0 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Programs section */
    .programs {
        padding: 60px 1rem;
    }
    
    .programs-container {
        padding: 0 1rem;
    }
    
    .programs-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .programs-heading {
        font-size: 2rem;
    }
    
    .programs-description {
        font-size: 0.9rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .program-title {
        font-size: 1.3rem;
    }
    
    /* Social section */
    .social {
        padding: 80px 0;
    }
    
    .social-container {
        padding: 0 1rem;
    }
    
    .social-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Contact section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Mobile - Extra Small */
@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .social-heading {
        font-size: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Program card overrides */
.programs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  align-items: stretch !important;
}

.program-card-new {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.program-card-banner {
  height: 180px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.program-card-content {
  padding: 1.75rem !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  background: white !important;
}

.program-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}

.program-card-new h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card-new p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card-badge {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-card-btn {
  display: block;
  width: 100%;
  background: #465F4A;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s, transform 0.15s;
  box-sizing: border-box;
}

.program-card-btn:hover {
  background: #394e3c;
  transform: translateY(-1px);
}

.program-card-btn:active {
  transform: translateY(0);
}

.program-card-btn-coming {
  display: block;
  width: 100%;
  background: transparent;
  color: #465F4A;
  border: 1.5px solid #465F4A;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: default;
  margin-top: auto;
  box-sizing: border-box;
}

/* ============================================================================
   PROGRAM DETAIL PAGE (program.html)
   ============================================================================ */
.prog-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4a4a38;
  margin-top: 0;
}
.prog-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.prog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0.5);
  z-index: 1;
}
.prog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}
.prog-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 100px;
  padding: 5px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.prog-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 4rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.prog-format-text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.prog-details-bar {
  background: #dbd5cb;
  padding: 18px 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: #2a2420;
}
.prog-details-bar span:empty { display: none; }
.prog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.prog-back-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: #465F4A;
  text-decoration: none;
  margin-bottom: 2rem;
}
.prog-back-link:hover { text-decoration: underline; }
.prog-description {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #2a2420;
  line-height: 1.85;
  white-space: pre-wrap;
}
.prog-description p { margin-bottom: 1em; }
.prog-description ul, .prog-description ol { padding-left: 1.5rem; margin-bottom: 1em; }
.prog-sidebar { position: sticky; top: 100px; }
.prog-sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.prog-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: #2a2420;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.prog-cta-btn {
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 1.25rem;
}
.prog-cta-btn--active { background: #465F4A; color: #fff; }
.prog-cta-btn--active:hover { background: #394e3c; transform: translateY(-1px); }
.prog-cta-btn--soon { background: transparent; color: #465F4A; border: 1.5px solid #465F4A; cursor: default; }
@media (max-width: 900px) {
  .prog-title { font-size: 2.8rem; }
  .prog-main { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .prog-sidebar { position: static; }
  .prog-details-bar { padding: 14px 1.5rem; gap: 1.25rem; }
}

/* ══════════════════════════════════════
   PROGRAM CARDS — CLEAN
══════════════════════════════════════ */
.programs-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    align-items: start !important;
}

.pcard {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.pcard--active { cursor: pointer; }
.pcard--active:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.11); transition: all 0.2s ease; }
.pcard--coming { cursor: pointer; opacity: 0.9; }

.pcard-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.pcard-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e8e2da;
    flex-shrink: 0;
}

.pcard-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard-badge {
    display: inline-block;
    background: rgba(70,95,74,0.08);
    color: #465F4A;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.pcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #2a2420;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 400;
}

.pcard-teaser {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: #6e6860;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.pcard-price {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: #6e6860;
    margin-bottom: 1rem;
}

/* Team cards */
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Trainer bio */
.trainer-bio-text {
    text-align: justify;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.trainer-bio-html {
    text-align: justify;
    line-height: 1.85;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.trainer-bio-html p { margin-bottom: 1rem; }

/* Team card UX */
.team-read-more {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-forest-green);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-card:hover .team-read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Program detail page */
.prog-info-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0 3rem;
}

.prog-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.prog-info-item:last-child { border-right: none; }
.prog-info-icon { font-size: 1.1rem; flex-shrink: 0; }

.prog-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prog-info-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-muted-text);
}

.prog-info-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark-text);
}

.prog-venue-link { color: var(--color-forest-green); text-decoration: none; }
.prog-venue-link:hover { text-decoration: underline; }

.prog-register-bar {
    background: var(--color-linen);
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.prog-register-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.prog-register-btn {
    display: inline-block;
    background: var(--color-forest-green);
}

/* ══════════════════════════════════════
   PROGRAM CARDS — CLEAN
══════════════════════════════════════ */
.programs-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    align-items: start !important;
}

.pcard {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.pcard--active { cursor: pointer; }
.pcard--active:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.11); transition: all 0.2s ease; }
.pcard--coming { cursor: pointer; opacity: 0.9; }

.pcard-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.pcard-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e8e2da;
    flex-shrink: 0;
}

.pcard-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard-badge {
    display: inline-block;
    background: rgba(70,95,74,0.08);
    color: #465F4A;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.pcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #2a2420;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 400;
}

.pcard-teaser {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: #6e6860;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.pcard-price {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: #6e6860;
    margin-bottom: 1rem;
}

/* Team cards */
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Trainer bio */
.trainer-bio-text {
    text-align: justify;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.trainer-bio-html {
    text-align: justify;
    line-height: 1.85;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.trainer-bio-html p { margin-bottom: 1rem; }

/* Team card UX */
.team-read-more {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-forest-green);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-card:hover .team-read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Program detail page */
.prog-info-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0 3rem;
}

.prog-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.prog-info-item:last-child { border-right: none; }
.prog-info-icon { font-size: 1.1rem; flex-shrink: 0; }

.prog-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prog-info-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-muted-text);
}

.prog-info-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark-text);
}

.prog-venue-link { color: var(--color-forest-green); text-decoration: none; }
.prog-venue-link:hover { text-decoration: underline; }

.prog-register-bar {
    background: var(--color-linen);
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.prog-register-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.prog-register-btn {
    display: inline-block;
    background: var(--color-forest-green);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.prog-register-btn:hover { opacity: 0.88; }

.prog-register-btn--soon {
    background: #e8e4e0;
    color: var(--color-muted-text);
    cursor: default;
    padding: 16px 48px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.prog-main-new {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 2rem 80px;
}

.prog-section-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

.prog-description-block {
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.prog-description p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-dark-text);
    margin-bottom: 1rem;
    text-align: justify;
}

.prog-sessions-block { margin-bottom: 4rem; }

.prog-sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.prog-session-card-new {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-height: 160px;
}

.prog-session-num {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-forest-green);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.prog-session-body { flex: 1; min-width: 0; }

.prog-session-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-text);
    margin-bottom: 0.6rem;
}

.prog-session-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #5a5550;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prog-trainers-block { margin-bottom: 4rem; }

.prog-trainers-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prog-trainer-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    max-width: 480px;
    flex: 1;
    min-width: 300px;
}

.prog-trainer-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0dbd5;
}

.prog-trainer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.prog-trainer-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-dark-text);
    margin-bottom: 0.25rem;
}

.prog-trainer-role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-forest-green);
    margin-bottom: 0.75rem;
}

.prog-trainer-bio {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #5a5550;
    line-height: 1.7;
}

/* Prog detail old styles */
.prog-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.prog-back-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-muted-text);
    margin-bottom: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.prog-back-link:hover { color: var(--color-forest-green); }

.prog-sidebar { position: sticky; top: 100px; }

.prog-sidebar-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.prog-price-big {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-dark-text);
    margin-bottom: 1rem;
}

.prog-details-bar {
    background: var(--color-linen);
    padding: 20px 2rem;
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-muted-text);
    flex-wrap: wrap;
}

.prog-status { display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; margin-bottom: 1rem; }
.prog-status--active { background: #eafaf1; color: #1e8449; }
.prog-status--soon { background: #fef9e7; color: #d68910; }

.prog-cta-btn { display: block; text-align: center; padding: 14px 24px; border-radius: 100px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s ease; cursor: pointer; }
.prog-cta-btn--active { background: var(--color-forest-green); color: var(--color-white); }
.prog-cta-btn--active:hover { opacity: 0.88; }
.prog-cta-btn--soon { background: #f0ece8; color: var(--color-muted-text); cursor: default; }

.prog-badge { display: inline-block; background: rgba(255,255,255,0.2); color: var(--color-white); padding: 6px 20px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.35); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.prog-title { font-family: var(--font-heading); font-style: italic; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; color: var(--color-white); line-height: 1.1; }
.prog-format-text { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.85); }

@media (max-width: 900px) {
    .prog-sessions-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .prog-main { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .prog-sessions-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr !important; }
    .prog-trainer-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ── About Section ── */
#about {
    background: var(--color-linen);
}

.about-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 3rem;
    display: flex;
    justify-content: center;
}

#about {
    background: var(--color-linen);
    padding: 0 2rem;
}

.about-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

.about-heading {
    font-family: var(--font-heading) !important;
    font-style: italic !important;
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 400 !important;
    color: var(--color-dark-text) !important;
    line-height: 1.2 !important;
}

.about-text {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--color-muted-text) !important;
    line-height: 1.9 !important;
    max-width: 680px !important;
    text-align: justify !important;
}

@media (max-width: 768px) {
    .about-banner { padding: 60px 1.5rem; }
}

/* ── About Section ── */
#about {
    background: var(--color-linen);
}

.about-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 3rem;
    display: flex;
    justify-content: center;
}

#about {
    background: var(--color-linen);
    padding: 0 2rem;
}

.about-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

.about-heading {
    font-family: var(--font-heading) !important;
    font-style: italic !important;
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 400 !important;
    color: var(--color-dark-text) !important;
    line-height: 1.2 !important;
}

.about-text {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--color-muted-text) !important;
    line-height: 1.9 !important;
    max-width: 680px !important;
    text-align: justify !important;
}

@media (max-width: 768px) {
    .about-banner { padding: 60px 1.5rem; }
}

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   MOBILE FIXES — must stay last in file
══════════════════════════════════════ */
@media (max-width: 768px) {
    /* Program cards: single column on mobile */
    .programs-grid {
        grid-template-columns: 1fr !important;
        overflow: visible !important;
    }
    .program-card,
    .program-card-new,
    .pcard {
        overflow: visible !important;
        word-wrap: break-word !important;
    }

    /* Contact form: stack First Name / Last Name vertically */
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* ══════════════════════════════════════
   MOBILE NAV + FOOTER FIXES
══════════════════════════════════════ */
@media (max-width: 768px) {
    /* Nav: show links wrapped below logo instead of hiding them */
    .nav-container {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        min-height: unset;
        gap: 0.5rem;
    }
    .nav-logo {
        order: 1;
        flex: 1;
    }
    .nav-right {
        order: 2;
        flex-shrink: 0;
    }
    .nav-links {
        display: flex !important;
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0 0.25rem;
        margin: 0;
    }

    /* Footer: stack columns vertically */
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1.5rem 1.5rem !important;
    }
    .footer-tagline,
    .footer-copyright {
        font-size: 0.65rem !important;
    }
}

/* ══════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════ */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark-text, #2a2420);
    padding: 0.4rem 0.6rem;
    line-height: 1;
    flex-shrink: 0;
    border-radius: 6px;
    transition: background 0.15s ease;
}
.hamburger-btn:hover { background: rgba(0,0,0,0.05); }

/* Desktop: hide the mobile lang clone inside .nav-links */
.nav-mobile-lang { display: none !important; }

@media (max-width: 768px) {
    .hamburger-btn { display: flex; align-items: center; justify-content: center; }

    .navbar { position: relative; }
    .nav-container {
        flex-wrap: nowrap !important;
        padding: 0 1rem !important;
        min-height: 64px !important;
        gap: 0.5rem !important;
    }
    .nav-logo { order: 1; flex: 1; }
    .nav-right {
        order: 2;
        gap: 0.5rem;
    }
    /* Hide the header lang toggle — it moves into the dropdown */
    .nav-right .language-toggle { display: none; }

    /* Nav links become an absolute dropdown */
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: auto !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #faf8f7;
        box-shadow: 0 8px 28px rgba(0,0,0,0.13);
        border-top: 1px solid rgba(0,0,0,0.07);
        z-index: 998;
        order: unset !important;
        font-size: 0.92rem !important;
    }
    .nav-links.mobile-open {
        display: flex !important;
        animation: navSlideDown 0.18s ease;
    }
    @keyframes navSlideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .nav-links .nav-link {
        display: block !important;
        text-align: center !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        width: auto !important;
    }
    /* Lang switcher row inside dropdown */
    .nav-mobile-lang {
        display: flex !important;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        gap: 0.4rem;
    }
}

/* ══════════════════════════════════════
   HORIZONTAL OVERFLOW FIXES — must be last
══════════════════════════════════════ */
img {
  max-width: 100%;
  height: auto;
}

.team-grid, .team-card, .professionals-container,
.programs-grid, .program-card, section, .container {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  * {
    max-width: 100vw;
  }
  .team-card {
    width: 100%;
  }
}
