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

:root {
    /* Brand Colors */
    --navy: #0E1A22;
    --slate: #3B4650;
    --off-white: #E8E5DF;
    --teal: #2F8F9D;
    --gold: #C9A227;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Raleway', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--off-white);
    overflow-x: hidden;
}

body.page-transition {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

/* Page Loading Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.page-loader.hidden {
    opacity: 0;
}

.page-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(232, 229, 223, 0.2);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =================================================================
   UTILITIES
   ================================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
    color: var(--navy);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 12px rgba(47, 143, 157, 0.3);
}

.btn-primary:hover {
    background: #267e8c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 143, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: white;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.fade-in-delayed-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.fade-in-delayed-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(14, 26, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--off-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
    justify-content: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--off-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(47, 143, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-logo {
    margin-bottom: var(--spacing-md);
}

.hero-logo img {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--off-white);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--off-white);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

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

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

.about {
    background: white;
}

.about-content {
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--slate);
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.principle-card {
    background: linear-gradient(135deg, var(--off-white) 0%, white 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(47, 143, 157, 0.15);
}

.principle-icon svg {
    stroke: var(--teal);
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--navy);
}

.principle-card p {
    color: var(--slate);
    line-height: 1.6;
}

/* =================================================================
   REFLECTIONS SECTION
   ================================================================= */

.reflections {
    background: linear-gradient(180deg, white 0%, var(--off-white) 100%);
}

.reflections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reflection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.reflection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.reflection-image {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reflection-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.reflection-content {
    padding: var(--spacing-md);
}

.reflection-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--navy);
}

.reflection-excerpt {
    color: var(--slate);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.reflection-link {
    color: var(--teal);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reflection-link:hover {
    color: #267e8c;
    transform: translateX(5px);
}

/* =================================================================
   RESOURCES SECTION
   ================================================================= */

.resources {
    background: var(--navy);
    color: white;
}

.resources .section-heading {
    color: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.resource-category {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--gold);
    text-align: center;
}

.resource-list {
    list-style: none;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--teal);
    transform: translateX(5px);
}

.resource-item svg {
    flex-shrink: 0;
    stroke: var(--teal);
    margin-top: 2px;
}

.resource-item span {
    color: var(--off-white);
    line-height: 1.5;
}

/* =================================================================
   COACHING SECTION
   ================================================================= */

.coaching {
    background: white;
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.coaching-text {
    max-width: 500px;
}

.coaching-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: var(--spacing-md);
}

.coaching-note {
    font-style: italic;
    color: var(--teal);
    font-size: 1rem !important;
}

.coaching-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--off-white) 0%, white 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-item svg {
    flex-shrink: 0;
    stroke: var(--teal);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-item p {
    color: var(--slate);
    line-height: 1.6;
}

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

.contact {
    background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--off-white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(47, 143, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-box {
    padding: var(--spacing-md);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-box.safety-note {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid var(--gold);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box.safety-note svg {
    flex-shrink: 0;
    stroke: var(--gold);
    margin-top: 2px;
}

.info-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.info-box p {
    color: var(--slate);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--teal);
    color: white;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: #267e8c;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer {
    background: var(--navy);
    color: var(--off-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--off-white);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--off-white);
    transition: var(--transition);
    display: inline-block;
    padding: 0.5rem 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: var(--spacing-sm);
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: rgba(232, 229, 223, 0.7);
    font-style: italic;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(232, 229, 223, 0.5);
}

/* =================================================================
   MODAL
   ================================================================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal) 0%, #267e8c 100%);
    border-radius: 50%;
}

.modal-icon svg {
    stroke: white;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--navy);
}

.modal-content p {
    font-size: 1.125rem;
    color: var(--slate);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* =================================================================
   QUICK EXIT BUTTON
   ================================================================= */

.quick-exit-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d32f2f;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.quick-exit-btn:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .quick-exit-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* =================================================================
   SEARCH BAR
   ================================================================= */

.search-container {
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--off-white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--navy);
}

.search-container input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(47, 143, 157, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--slate);
    pointer-events: none;
}

/* =================================================================
   DARK MODE
   ================================================================= */

@media (prefers-color-scheme: dark) {
    :root {
        --navy-dark: #0E1A22;
        --slate-light: #B0BEC5;
        --bg-dark: #121212;
        --bg-card: #1E1E1E;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--off-white);
    }

    .about,
    .coaching,
    .contact,
    .reflections {
        background: var(--bg-dark);
    }

    .section-heading,
    .reflection-title,
    .principle-card h3,
    .feature-item h4,
    .info-box h4,
    .modal-content h3,
    .form-group label {
        color: var(--off-white);
    }

    .section-description,
    .about-text p,
    .coaching-text p,
    .reflection-excerpt,
    .principle-card p,
    .feature-item p,
    .info-box p,
    .modal-content p {
        color: var(--slate-light);
    }

    .principle-card,
    .reflection-card,
    .feature-item,
    .contact-form,
    .info-box,
    .modal-content {
        background: var(--bg-card);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .principle-icon {
        background: #2C3E50;
    }

    .form-group input,
    .form-group select,
    .form-group textarea,
    .search-container input {
        background: #2C2C2C;
        border-color: #444;
        color: var(--off-white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus,
    .search-container input:focus {
        border-color: var(--teal);
        background: #333;
    }

    .resource-item {
        background: rgba(255, 255, 255, 0.05);
    }

    .resource-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Ensure links are visible */
    a {
        color: inherit;
    }
    
    .reflection-link {
        color: var(--teal);
    }
}

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

@media (max-width: 968px) {
    .coaching-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-logo img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--spacing-lg);
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }

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

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

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

    .coaching-features {
        gap: var(--spacing-sm);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 250px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .about-text p,
    .coaching-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

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

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--teal);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(47, 143, 157, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #267e8c;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(47, 143, 157, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* Form Errors */
.field-error {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

input.error,
textarea.error,
select.error {
    border-color: #d32f2f;
}

/* Breadcrumbs */
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--slate);
}

.breadcrumb a {
    color: var(--teal);
    text-decoration: none;
    padding: 0.5rem;
    display: inline-block;
    min-height: 44px;
    line-height: 1.5;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: var(--slate);
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 26, 34, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-overlay--hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(14, 26, 34, 0.25);
    padding: 2rem;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner--hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cookie-banner__message {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
}

.cookie-banner__link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: #267e8c;
}

.cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner__button {
    min-width: 120px;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
        max-width: none;
        padding: 1.5rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
    }
}

/* Mirror Statements Page */
.mirror-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, rgba(47, 143, 157, 0.95), rgba(17, 28, 38, 0.95));
    color: var(--off-white);
}
.mirror-hero__inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.mirror-hero__inner h1 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
    color: white;
}
.mirror-hero__inner p {
    color: rgba(232, 229, 223, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
}
.eyebrow {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(232, 229, 223, 0.8);
}
.mirror-rotation {
    background: #f9f9f6;
    padding: 2rem 0 3rem;
}
.mirror-rotation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.mirror-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(14, 26, 34, 0.12);
}
.mirror-card__label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
}
.mirror-card h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}
.mirror-card__focus {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.mirror-card__prompt {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.mirror-card__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.mirror-card__meta p {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--slate);
    margin-bottom: 0.35rem;
}
.mirror-card__meta strong,
.mirror-card__meta span {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}
.mirror-card--note {
    background: linear-gradient(180deg, rgba(47, 143, 157, 0.1), rgba(232, 229, 223, 0.4));
}
.mirror-card--note h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--navy);
}
.mirror-card--note ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mirror-card--note li {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
}
.mirror-guides {
    padding: 3rem 0;
}
.mirror-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}
.guide-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(14, 26, 34, 0.08);
}
.guide-card h3 {
    color: var(--teal);
    margin-bottom: 0.8rem;
}
.guide-card p {
    color: var(--slate);
    line-height: 1.7;
}
.mirror-prompts {
    padding: 3rem 0;
    background: #f9f9f6;
}
.mirror-prompts__header h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}
.mirror-prompts__header p {
    color: var(--slate);
    margin-bottom: 1.25rem;
}
.mirror-prompts__list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.65rem;
}
.mirror-prompts__list li {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(47, 143, 157, 0.15);
    color: var(--navy);
    line-height: 1.6;
}
.mirror-archive {
    padding: 3rem 0 4rem;
}
.mirror-archive__intro h2 {
    margin-bottom: 0.4rem;
    font-size: 2rem;
}
.mirror-archive__intro p {
    margin-bottom: 1.5rem;
    color: var(--slate);
}
.mirror-archive__list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1rem;
}
.mirror-archive__list li {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(14, 26, 34, 0.08);
}
.mirror-archive__number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    min-width: 2.5rem;
    text-align: center;
}
.mirror-archive__list strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.mirror-archive__list p {
    margin: 0;
    color: var(--slate);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .mirror-card {
        padding: 1.5rem;
    }
    .mirror-card__meta {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.mirror-hero__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}
.mirror-hero__button {
    text-transform: none;
    letter-spacing: normal;
}
.mirror-hero__note {
    width: 100%;
    text-align: center;
    color: rgba(232, 229, 223, 0.85);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}
.mirror-hero__note a {
    color: #fff;
    text-decoration: underline;
}
.mirror-testimonials {
    padding: 2rem 0 3rem;
    background: #f3f8fb;
}
.mirror-testimonial-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(14, 26, 34, 0.12);
    text-align: center;
}
.mirror-testimonial-card__quote {
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.mirror-testimonial-card__author {
    display: block;
    font-size: 1rem;
    color: var(--teal);
    margin-bottom: 1rem;
}
.mirror-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.mirror-testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(47, 143, 157, 0.35);
    transition: background 0.3s ease;
}
.mirror-testimonial-dots span.active {
    background: var(--teal);
}
.mirror-print {
    display: none;
}
.mirror-print__template {
    display: none;
}
.print-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(14, 26, 34, 0.1);
    margin-bottom: 1rem;
}
.print-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}
.print-card__label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: 0.5rem;
}
.print-card__value {
    margin-top: 0.25rem;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.6;
}
.print-card__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.print-card__list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.print-card__number {
    font-weight: 700;
    color: var(--teal);
    min-width: 2.5rem;
}
.print-card__list strong {
    font-size: 1rem;
    color: var(--navy);
}
.print-card__list p {
    margin: 0;
    color: var(--slate);
    line-height: 1.4;
}
.print-card__prompts {
    margin-top: 1rem;
}
.print-card__prompts-list {
    margin: 0;
    padding-left: 1.2rem;
}
.print-card__prompts-list li {
    margin-bottom: 0.5rem;
}

@media print {
    body {
        background: #fff;
        color: #0e1a22;
    }
    header,
    footer,
    main > :not(.mirror-print) {
        display: none !important;
    }
    body[data-print-mode="today"] .mirror-print__template,
    body[data-print-mode="full"] .mirror-print__template {
        display: flex !important;
        flex-direction: column;
    }
    body[data-print-mode="today"] #mirrorPrintCardFull {
        display: none !important;
    }
    body[data-print-mode="full"] #mirrorPrintCardToday {
        display: none !important;
    }
    #mirrorPrintTemplate {
        display: flex;
        flex-direction: column;
    }
    .mirror-print {
        display: block;
    }
    .print-card {
        page-break-inside: avoid;
    }
}
