/* ==========================================================================
   A Walk Through Education - Premium SaaS Stylesheet (mobile-first)
   ========================================================================== */

:root {
    /* Brand palette */
    --primary: #173B8F;
    --brand: #2166D5;
    --sky: #3B82F6;
    --mist: #EEF4FF;
    --surface: #F6F8FE;
    --ink: #0B1226;
    --text: #15203B;
    --muted: #5A6A8A;
    --line: #E7EDF9;
    --white: #FFFFFF;

    --yellow: #FFC928;
    --green: #22C55E;
    --orange: #FF8A00;
    --purple: #6557E8;
    --pink: #E94D88;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #3B82F6 0%, #2166D5 52%, #173B8F 100%);
    --grad-sky: linear-gradient(135deg, #EAF2FF 0%, #F7F9FF 100%);
    --grad-cta: linear-gradient(135deg, #FFC928 0%, #FF9F0A 100%);

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(11, 18, 38, 0.06);
    --shadow-sm: 0 4px 14px rgba(11, 18, 38, 0.07);
    --shadow-md: 0 12px 32px rgba(21, 65, 150, 0.12);
    --shadow-lg: 0 24px 56px rgba(21, 65, 150, 0.16);
    --shadow-glow: 0 10px 30px rgba(33, 102, 213, 0.30);

    /* Layout */
    --container: 1200px;
    --gutter: 20px;

    /* Type */
    --font-body: 'Inter', system-ui, -apple-system, Arial, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, Arial, sans-serif;
    --h1: clamp(2.3rem, 6vw, 4rem);
    --h2: clamp(1.7rem, 3.8vw, 2.6rem);
    --h3: clamp(1.15rem, 2.2vw, 1.4rem);
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.awalk-lock { overflow: hidden; }

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

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink);
    margin: 0 0 0.55em;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

button { font-family: inherit; cursor: pointer; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

ul { padding-left: 1.25em; }

/* Accessibility */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute !important; word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--primary); border-radius: 3px; clip: auto !important;
    clip-path: none; color: var(--white); display: block; font-size: 14px;
    height: auto; left: 5px; top: 5px; line-height: normal; padding: 15px 23px 14px;
    text-decoration: none; width: auto; z-index: 100000;
}

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 6px; top: 6px; z-index: 100000; }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.awalk-container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    width: 100%;
}

.text-blue { color: var(--brand); }

/* Section head (centered SaaS style) */
.awalk-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 38px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.awalk-section-title {
    font-size: var(--h2);
    margin: 0;
}

.awalk-section-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 14px;
    color: var(--brand);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 10px 18px;
    box-shadow: var(--shadow-xs);
    margin-top: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.awalk-section-link:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.awalk-section-link svg { transition: transform 0.2s ease; }
.awalk-section-link:hover svg { transform: translateX(3px); }

.awalk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(33, 102, 213, 0.08);
    border: 1px solid rgba(33, 102, 213, 0.16);
    padding: 7px 14px;
    border-radius: var(--r-pill);
}

.awalk-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grad-cta);
    box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.25);
}

.awalk-empty {
    text-align: center;
    color: var(--muted);
    padding: 20px 0;
}

/* Scroll reveal */
.awalk-js .awalk-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.awalk-js .awalk-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .awalk-js .awalk-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.awalk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: var(--r-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    border: 1.5px solid transparent;
    min-height: 48px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.awalk-btn svg { flex-shrink: 0; }

.awalk-btn-lg { padding: 16px 30px; font-size: 16px; min-height: 54px; }
.awalk-btn-sm { padding: 9px 16px; font-size: 13px; min-height: 40px; }

.awalk-btn-primary,
.awalk-btn-solid {
    background-image: var(--grad-primary);
    background-color: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.awalk-btn-primary:hover,
.awalk-btn-solid:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(33, 102, 213, 0.42);
}

.awalk-btn-dark { background: var(--primary); color: var(--white); }
.awalk-btn-dark:hover { background: #10285e; color: var(--white); }

.awalk-btn-outline {
    background: var(--white);
    color: var(--brand);
    border-color: rgba(33, 102, 213, 0.4);
}

.awalk-btn-outline:hover {
    background: var(--mist);
    color: var(--primary);
    border-color: var(--brand);
    transform: translateY(-2px);
}

.awalk-btn-play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.awalk-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    color: var(--brand);
}

.awalk-link:hover { color: var(--primary); }
.awalk-link svg { transition: transform 0.2s ease; }
.awalk-link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231, 237, 249, 0.8);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.awalk-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.07);
}

.awalk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.awalk-header-left { flex-shrink: 0; }

/* Logo */
.awalk-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.awalk-logo-symbol {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background-image: var(--grad-primary);
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(33, 102, 213, 0.32);
}

.awalk-logo-symbol .awalk-icon { position: relative; z-index: 2; }

.awalk-logo-dot {
    position: absolute;
    right: -3px;
    top: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grad-cta);
    border: 2px solid var(--white);
}

.awalk-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.awalk-logo-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.awalk-logo-sub {
    font-size: 7.5px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.awalk-logo-tag {
    font-size: 9px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Navigation (mobile: off-canvas drawer) */
.main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    width: min(320px, 86vw);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -16px 0 48px rgba(11, 18, 38, 0.16);
    display: flex;
}

.main-navigation.is-open { transform: translateX(0); }

.awalk-mobile-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 96px 24px 32px;
    overflow-y: auto;
}

.menu-toggle {
    position: fixed;
    top: 18px;
    right: var(--gutter);
    z-index: 600;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--mist);
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.menu-toggle .menu-toggle-close { display: none; }
.main-navigation.is-open .menu-toggle-close { display: block; }
.main-navigation.is-open .menu-toggle > .awalk-icon:not(.menu-toggle-close) { display: none; }

.awalk-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(11, 18, 38, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

body.awalk-menu-active .awalk-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Menu list (mobile) */
.awalk-menu {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.awalk-menu .menu-item {
    position: relative;
    border-bottom: 1px solid var(--line);
}

.awalk-menu > .menu-item:last-child { border-bottom: none; }

.awalk-menu a {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.awalk-menu a:hover { color: var(--brand); }
.awalk-menu > .current-menu-item > a,
.awalk-menu > .current-menu-ancestor > a { color: var(--brand); }

.awalk-menu .menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.25s ease;
}

.awalk-menu .menu-item.is-open > a::after { transform: rotate(180deg); }

.awalk-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 16px;
    display: none;
}

.awalk-menu .menu-item.is-open > .sub-menu { display: block; }

.awalk-menu .sub-menu a {
    font-size: 15px;
    font-weight: 600;
    padding: 11px 6px;
}

/* Header action buttons (desktop) */
.awalk-header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.awalk-header-actions .awalk-btn {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
}

/* Mobile CTA inside drawer */
.awalk-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 26px;
}

.awalk-mobile-cta-btn { width: 100%; }

.awalk-search-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--mist);
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.awalk-search-toggle:hover { background: #e0ebff; }

/* Search overlay */
.awalk-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 38, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 700;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 72px 20px 24px;
}

.awalk-search-overlay.is-open { display: flex; }

.awalk-search-panel {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 20px;
    width: 100%;
    max-width: 620px;
    position: relative;
}

.awalk-search-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--mist);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.awalk-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.awalk-search-form .awalk-icon { color: var(--muted); flex-shrink: 0; }

.awalk-search-form .search-field {
    flex: 1;
    min-width: 160px;
    border: none;
    border-bottom: 2px solid var(--line);
    padding: 12px 4px;
    font-size: 17px;
    color: var(--text);
    background: transparent;
}

.awalk-search-form .search-field:focus { outline: none; border-bottom-color: var(--brand); }

.awalk-search-form-block {
    max-width: 560px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 12px 14px;
}

.awalk-search-form-block .search-field {
    border-bottom: none;
    padding: 6px 4px;
    font-size: 15px;
}

.awalk-search-form-block .search-field:focus { border-bottom: none; }

.awalk-search-overlay.open-overlay .awalk-search-panel { animation: awalk-slide-down 0.3s ease; }

@keyframes awalk-slide-down {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.awalk-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 84px;
    background:
        radial-gradient(1200px 520px at 85% -10%, rgba(59, 130, 246, 0.18), transparent 60%),
        radial-gradient(900px 480px at -10% 100%, rgba(255, 201, 40, 0.16), transparent 60%),
        linear-gradient(180deg, var(--surface) 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--line);
}

.awalk-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.awalk-hero-glow-a {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px;
    background: rgba(59, 130, 246, 0.22);
}

.awalk-hero-glow-b {
    width: 380px;
    height: 380px;
    left: -140px;
    bottom: -160px;
    background: rgba(255, 201, 40, 0.18);
}

.awalk-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.awalk-hero-left {
    max-width: 620px;
}

.awalk-hero-left .awalk-eyebrow { margin-bottom: 20px; }

.awalk-hero-heading {
    font-size: var(--h1);
    color: var(--ink);
    margin-bottom: 18px;
    text-wrap: balance;
}

.awalk-hero-description {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.awalk-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.awalk-hero-buttons .awalk-btn { width: 100%; }

.awalk-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.awalk-avatar-stack { display: flex; align-items: center; }

.awalk-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    overflow: hidden;
    margin-left: -10px;
    flex-shrink: 0;
    background: var(--mist);
    display: inline-flex;
    box-shadow: var(--shadow-xs);
}

.awalk-avatar:first-child { margin-left: 0; }

.awalk-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awalk-social-proof-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.awalk-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #F5A623;
}

.awalk-rating .awalk-icon { width: 14px; height: 14px; }

.awalk-social-proof-text {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.4;
}

.awalk-social-proof-text strong { color: var(--ink); font-weight: 800; }

/* Hero right visual */
.awalk-hero-right {
    position: relative;
    order: -1;
}

.awalk-hero-visual {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    min-height: 340px;
}

.awalk-hero-blob {
    position: absolute;
    top: 4%;
    right: 2%;
    width: 92%;
    height: 90%;
    background: linear-gradient(140deg, #FFD95C 0%, #FFB800 100%);
    border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%;
    z-index: 1;
    opacity: 0.9;
}

.awalk-hero-rings {
    position: absolute;
    top: -8%;
    right: -12%;
    width: 108%;
    height: 118%;
    background: radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(23, 59, 143, 0.14) 30.5% 31.5%, transparent 32% 46%, rgba(23, 59, 143, 0.14) 46.5% 47.5%, transparent 48% 62%, rgba(23, 59, 143, 0.14) 62.5% 63.5%, transparent 64%);
    z-index: 0;
}

/* App-window frame */
.awalk-hero-frame {
    position: relative;
    z-index: 2;
    width: 92%;
    margin-left: auto;
    margin-right: 2%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.awalk-frame-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.awalk-frame-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5F57;
}

.awalk-frame-dot:nth-child(2) { background: #FEBD2E; }
.awalk-frame-dot:nth-child(3) { background: #28C840; }

.awalk-frame-url {
    flex: 1;
    margin-left: 8px;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 4px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.awalk-hero-image {
    position: relative;
    overflow: hidden;
}

.awalk-hero-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Floating chips */
.awalk-float-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 10px 14px;
    animation: awalk-float 5s ease-in-out infinite;
}

.awalk-chip-progress {
    top: 22%;
    left: -10px;
}

.awalk-chip-trophy {
    bottom: 16%;
    right: -12px;
    animation-delay: 2.5s;
}

.awalk-chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--mist);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.awalk-chip-data {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.awalk-chip-data strong {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
}

.awalk-chip-data span {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

@keyframes awalk-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero decorations */
.awalk-deco {
    position: absolute;
    z-index: 3;
    color: var(--primary);
    display: inline-flex;
}

.awalk-deco-plane {
    top: -6%;
    left: 6%;
    color: var(--brand);
}

.awalk-deco-lightbulb {
    top: 12%;
    left: -3%;
    color: #C98A00;
}

.awalk-deco-globe {
    top: -6%;
    right: 2%;
    color: var(--primary);
}

/* Mission card */
.awalk-mission-card {
    position: absolute;
    z-index: 4;
    right: 4%;
    bottom: -18px;
    width: 152px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 16px 15px;
    text-align: left;
}

.awalk-mission-star {
    position: absolute;
    top: -13px;
    right: -9px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-image: var(--grad-primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.awalk-mission-heading {
    margin: 0 0 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.awalk-mission-text {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

/* ==========================================================================
   Feature cards
   ========================================================================== */

.awalk-feature-cards-wrap {
    padding: 44px 0 16px;
}

.awalk-feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.awalk-feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.awalk-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.awalk-feature-purple::before { background: linear-gradient(90deg, var(--purple), transparent); }
.awalk-feature-orange::before { background: linear-gradient(90deg, var(--orange), transparent); }
.awalk-feature-green::before { background: linear-gradient(90deg, var(--green), transparent); }
.awalk-feature-blue::before { background: linear-gradient(90deg, var(--sky), transparent); }
.awalk-feature-pink::before { background: linear-gradient(90deg, var(--pink), transparent); }
.awalk-feature-yellow::before { background: linear-gradient(90deg, var(--yellow), transparent); }

.awalk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.awalk-feature-card:hover::before { opacity: 1; }

.awalk-feature-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 24px 20px 22px;
    color: inherit;
    text-decoration: none;
    position: relative;
    min-height: 168px;
}

.awalk-feature-link:hover { color: inherit; }

.awalk-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.awalk-feature-purple .awalk-feature-icon { background: rgba(101, 87, 232, 0.12); color: var(--purple); }
.awalk-feature-orange .awalk-feature-icon { background: rgba(255, 138, 0, 0.13); color: var(--orange); }
.awalk-feature-green .awalk-feature-icon { background: rgba(34, 197, 94, 0.13); color: var(--green); }
.awalk-feature-blue .awalk-feature-icon { background: rgba(59, 130, 246, 0.12); color: var(--sky); }
.awalk-feature-pink .awalk-feature-icon { background: rgba(233, 77, 136, 0.12); color: var(--pink); }
.awalk-feature-yellow .awalk-feature-icon { background: rgba(255, 201, 40, 0.2); color: #B57E00; }

.awalk-feature-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 7px;
    padding-right: 34px;
}

.awalk-feature-desc {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.awalk-feature-arrow {
    position: absolute;
    top: 24px;
    right: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.awalk-feature-card:hover .awalk-feature-arrow {
    background-image: var(--grad-primary);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ==========================================================================
   Programs
   ========================================================================== */

.awalk-programs {
    padding: 56px 0 24px;
}

.awalk-program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.awalk-program-card {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.awalk-program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.awalk-program-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.awalk-program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awalk-program-card:hover .awalk-program-img { transform: scale(1.06); }

.awalk-age-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.awalk-badge-blue { background: var(--brand); }
.awalk-badge-purple { background: var(--purple); }
.awalk-badge-green { background: var(--green); }
.awalk-badge-orange { background: var(--orange); }
.awalk-badge-pink { background: var(--pink); }
.awalk-badge-yellow { background: var(--yellow); color: var(--ink); }

.awalk-program-body {
    padding: 20px 20px 24px;
}

.awalk-program-title {
    font-family: var(--font-heading);
    font-size: 19px;
    margin: 0 0 8px;
}

.awalk-program-desc {
    margin: 0 0 14px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* ==========================================================================
   Statistics
   ========================================================================== */

.awalk-stats {
    padding: 40px 0;
}

.awalk-stats-bar {
    position: relative;
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 34px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.awalk-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 10% 0%, rgba(59, 130, 246, 0.35), transparent 60%),
        radial-gradient(500px 260px at 95% 100%, rgba(101, 87, 232, 0.28), transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.09) 1.5px, transparent 2px);
    background-size: auto, auto, 26px 26px;
    pointer-events: none;
}

.awalk-stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.awalk-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.awalk-stat-data {
    display: flex;
    flex-direction: column;
}

.awalk-stat-count {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF, #BBD3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.awalk-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Articles
   ========================================================================== */

.awalk-articles {
    padding: 24px 0 56px;
}

.awalk-article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.awalk-article-card {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.awalk-article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.awalk-article-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.awalk-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awalk-article-card:hover .awalk-article-img { transform: scale(1.06); }

.awalk-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
}

.awalk-article-body {
    padding: 18px 20px 22px;
}

.awalk-article-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 0 0 12px;
    line-height: 1.3;
}

.awalk-article-title a { color: var(--ink); }
.awalk-article-title a:hover { color: var(--brand); }

.awalk-article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
}

.awalk-article-readtime {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.awalk-newsletter {
    padding: 12px 0 64px;
}

.awalk-newsletter-banner {
    position: relative;
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 44px 22px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.awalk-newsletter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px 300px at 15% -10%, rgba(59, 130, 246, 0.4), transparent 60%),
        radial-gradient(560px 280px at 90% 110%, rgba(255, 201, 40, 0.22), transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 2px);
    background-size: auto, auto, 26px 26px;
    pointer-events: none;
}

.awalk-nl-content {
    position: relative;
    color: var(--white);
    margin-bottom: 26px;
}

.awalk-nl-heading {
    color: var(--white);
    font-size: var(--h3);
    margin: 0 0 10px;
}

.awalk-nl-desc {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    font-size: 15px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.awalk-nl-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.awalk-nl-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.awalk-nl-input:focus { outline: 3px solid rgba(59, 130, 246, 0.45); }

.awalk-nl-form .awalk-btn { white-space: nowrap; }

.awalk-nl-illustration-left,
.awalk-nl-illustration-right { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--ink);
    color: #C3CCDE;
}

.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--brand), var(--purple), var(--yellow));
}

.awalk-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 20px 40px;
}

.awalk-logo-footer { margin-bottom: 16px; }
.awalk-logo-footer .awalk-logo-title { color: var(--white); }
.awalk-logo-footer .awalk-logo-sub { color: #AAB6CC; }
.awalk-logo-footer .awalk-logo-tag { color: #7E8AA3; }

.awalk-footer-desc {
    color: #98A4BC;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 320px;
}

.awalk-social {
    display: flex;
    gap: 10px;
}

.awalk-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #DCE4F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.awalk-social-link:hover {
    background-image: var(--grad-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.awalk-footer-heading {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
}

.awalk-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.awalk-footer-menu a { color: #C3CCDE; font-size: 14.5px; }
.awalk-footer-menu a:hover { color: var(--yellow); }

.awalk-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.awalk-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #C3CCDE;
}

.awalk-contact-list .awalk-icon { color: var(--yellow); flex-shrink: 0; }
.awalk-contact-list a { color: #C3CCDE; }
.awalk-contact-list a:hover { color: var(--yellow); }

.awalk-copyright-bar {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 20px;
}

.awalk-copyright-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.awalk-copyright-text { margin: 0; font-size: 13.5px; color: #8E9AB2; }
.awalk-copyright-links { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.awalk-copyright-links a { color: #C3CCDE; }
.awalk-copyright-links a:hover { color: var(--yellow); }

/* ==========================================================================
   Page / Post layout
   ========================================================================== */

.awalk-content { background: var(--white); }
.awalk-content-inner { padding-top: 34px; padding-bottom: 56px; }

.awalk-page-header { padding: 32px 0 20px; }
.awalk-page-title { font-size: var(--h2); margin: 0; }

.awalk-archive-header {
    background: linear-gradient(135deg, var(--mist), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 38px 24px;
    margin: 26px 0 34px;
}

.awalk-archive-description { color: var(--muted); margin: 8px 0 0; font-size: 16px; }

.awalk-page { max-width: 820px; margin: 0 auto; }
.awalk-page-footer { display: flex; gap: 12px; margin-top: 30px; }

/* Single post */
.awalk-single-article { max-width: 820px; margin: 0 auto; }
.awalk-single-header { padding: 28px 0 20px; }
.awalk-post-title-large { font-size: var(--h1); margin: 12px 0 0; }

.awalk-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: var(--muted);
}

.awalk-post-meta span { display: inline-flex; align-items: center; gap: 5px; }

.awalk-single-featured {
    margin: 10px 0 28px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.awalk-single-featured img { width: 100%; height: auto; object-fit: cover; }

.awalk-single-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.awalk-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.awalk-tags a {
    background: var(--mist);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
}

.entry-content { font-size: 17px; line-height: 1.75; }
.entry-content img { border-radius: var(--r-md); margin: 1.2em 0; }
.entry-content h2 { font-size: var(--h3); margin-top: 1.6em; }
.entry-content h3 { font-size: 1.2rem; margin-top: 1.4em; }

.entry-content blockquote {
    border-left: 4px solid var(--brand);
    background: var(--surface);
    margin: 1.6em 0;
    padding: 16px 20px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

.entry-content blockquote p { margin: 0; }

/* Blog / post cards */
.awalk-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 20px;
}

.awalk-post-card {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.awalk-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.awalk-post-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.awalk-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.awalk-post-body { padding: 20px 20px 24px; }
.awalk-post-title { font-family: var(--font-heading); font-size: 19px; margin: 0 0 10px; line-height: 1.3; }
.awalk-post-title a { color: var(--ink); }
.awalk-post-title a:hover { color: var(--brand); }

.awalk-post-excerpt { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.awalk-post-excerpt p:last-child { margin: 0; }
.awalk-search-type { color: var(--brand); font-weight: 700; }

/* Pagination */
.navigation.pagination, .pagination { margin: 30px 0 10px; }
.pagination .nav-links, .page-numbers { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { padding: 0; list-style: none; }

.page-numbers li .page-numbers,
.pagination .page-numbers {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
}

.page-numbers .current,
.pagination .page-numbers.current {
    background-image: var(--grad-primary);
    color: var(--white);
    border-color: transparent;
}

/* Post / program / event navigation */
.post-navigation,
.awalk-post-navigation {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.post-navigation a,
.awalk-post-navigation a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 16px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.post-navigation a:hover,
.awalk-post-navigation a:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.nav-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--muted);
}

.nav-title { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ==========================================================================
   Single Program / Event / Team
   ========================================================================== */

.awalk-program-single,
.awalk-event-single { max-width: 840px; margin: 0 auto; }

.awalk-program-single-featured {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    margin-bottom: 28px;
}

.awalk-program-single-featured img { width: 100%; height: 380px; object-fit: cover; }

.awalk-program-single-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.awalk-age-badge { position: static; }

.awalk-program-category-label {
    background: var(--mist);
    color: var(--brand);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
}

.awalk-program-title-large { font-size: var(--h1); margin: 0 0 12px; }
.awalk-program-lede { font-size: 18px; color: var(--muted); line-height: 1.6; }
.awalk-program-single-cta,
.awalk-event-single-cta { margin-top: 30px; }

.awalk-event-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 10px 0 26px;
    font-size: 15px;
    color: var(--muted);
}

.awalk-event-single-meta span { display: inline-flex; align-items: center; gap: 7px; }

.awalk-event-single-featured {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    margin-bottom: 26px;
}

.awalk-event-single-featured img { width: 100%; height: auto; object-fit: cover; }

/* Team single */
.awalk-team-single-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.awalk-team-single-photo img,
.awalk-team-img { width: 100%; object-fit: cover; }

.awalk-team-single-info { padding: 24px 20px 30px; }
.awalk-team-single-position { color: var(--brand); font-weight: 700; font-size: 16px; margin-bottom: 18px; }
.awalk-team-single-bio.entry-content { color: var(--muted); }

.awalk-team-single-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.awalk-team-single-social a {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--surface);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.awalk-team-single-social a:hover {
    background-image: var(--grad-primary);
    color: var(--white);
}

.awalk-back-link { margin-top: 28px; }

/* ==========================================================================
   Archives: programs / events / team
   ========================================================================== */

.awalk-program-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 20px;
}

.awalk-event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 20px;
}

.awalk-event-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.awalk-event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.awalk-event-thumb { display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.awalk-event-thumb img { width: 100%; height: 100%; object-fit: cover; }

.awalk-event-body { display: flex; gap: 16px; padding: 18px 18px 22px; }

.awalk-event-date-badge {
    background-image: var(--grad-primary);
    color: var(--white);
    border-radius: var(--r-md);
    min-width: 62px;
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.awalk-ev-month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.awalk-ev-day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.awalk-event-info { flex: 1; min-width: 0; }
.awalk-event-title { font-size: 18px; margin: 0 0 8px; line-height: 1.3; }
.awalk-event-title a { color: var(--ink); }
.awalk-event-title a:hover { color: var(--brand); }

.awalk-event-location,
.awalk-event-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    color: var(--muted);
    margin-right: 14px;
}

.awalk-event-desc { font-size: 14.5px; color: var(--muted); margin: 8px 0 0; }
.awalk-event-actions { display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }

.awalk-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 20px;
}

.awalk-team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.awalk-team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.awalk-team-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.awalk-team-photo .awalk-team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.awalk-team-card:hover .awalk-team-img { transform: scale(1.05); }

.awalk-team-body { padding: 18px 16px 22px; }
.awalk-team-name { font-size: 18px; margin: 0 0 4px; }
.awalk-team-position { color: var(--brand); font-weight: 600; font-size: 14px; margin: 0 0 14px; }

.awalk-team-social { display: flex; justify-content: center; gap: 8px; }

.awalk-team-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--surface);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.awalk-team-social a:hover {
    background-image: var(--grad-primary);
    color: var(--white);
}

/* ==========================================================================
   404
   ========================================================================== */

.awalk-404-inner {
    text-align: center;
    padding: 60px 0;
    max-width: 560px;
    margin: 0 auto;
}

.awalk-404-code {
    font-size: clamp(5rem, 20vw, 9rem);
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, var(--sky), var(--brand), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    margin: 0 0 10px;
}

.awalk-404-text { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.awalk-404-inner .awalk-btn { margin-top: 16px; }

/* ==========================================================================
   Auth pages
   ========================================================================== */

.awalk-auth-main {
    background: linear-gradient(180deg, var(--surface) 0%, var(--mist) 100%);
    padding: 34px 0 64px;
    min-height: 80vh;
}

.awalk-auth-layout {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.awalk-auth-visual {
    position: relative;
    background: var(--ink);
    color: var(--white);
    min-height: 200px;
    overflow: hidden;
}

.awalk-auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 260px at 10% -10%, rgba(59, 130, 246, 0.45), transparent 60%),
        radial-gradient(420px 240px at 95% 110%, rgba(101, 87, 232, 0.4), transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 2px);
    background-size: auto, auto, 24px 24px;
    pointer-events: none;
}

.awalk-auth-visual-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 24px;
    min-height: 200px;
    z-index: 1;
}

.awalk-auth-visual-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--grad-cta);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.awalk-auth-img { display: none !important; }

.awalk-auth-visual-quote {
    position: relative;
    z-index: 2;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-md);
    padding: 16px 18px;
    backdrop-filter: blur(6px);
}

.awalk-auth-quote-mark {
    font-size: 40px;
    line-height: 0.6;
    font-weight: 800;
    color: var(--yellow);
    margin: 0 0 8px;
}

.awalk-auth-quote-text {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.awalk-auth-quote-tag {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.85);
}

.awalk-auth-panel { padding: 32px 22px 40px; }
.awalk-auth-card { width: 100%; max-width: 420px; margin: 0 auto; }

.awalk-auth-card-head { text-align: center; margin-bottom: 26px; }

.awalk-auth-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background-image: var(--grad-primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
}

.awalk-auth-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 6px;
}

.awalk-auth-sub { color: var(--muted); font-size: 15px; margin: 0; }

.awalk-auth-notice {
    border-radius: var(--r-md);
    padding: 13px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.awalk-auth-error { background: #FDEBEF; color: #A12445; border: 1px solid #F5C6D0; }
.awalk-auth-success { background: #E8F8E3; color: #2F7A16; border: 1px solid #BFE5B0; }

.awalk-auth-form { display: flex; flex-direction: column; gap: 16px; }

.awalk-form-field { display: flex; flex-direction: column; gap: 7px; }

.awalk-form-field label {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}

.awalk-form-field input[type="text"],
.awalk-form-field input[type="email"],
.awalk-form-field input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--line);
    background: var(--surface);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.awalk-form-field input:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(33, 102, 213, 0.12);
}

.awalk-password-wrap { position: relative; }
.awalk-password-wrap input { padding-right: 78px; }

.awalk-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--brand);
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 12px;
    border-radius: 9px;
}

.awalk-password-toggle:hover { background: var(--mist); }

.awalk-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
    flex-wrap: wrap;
}

.awalk-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: var(--muted);
}

.awalk-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
}

.awalk-form-link { color: var(--brand); font-weight: 700; }
.awalk-btn-auth { width: 100%; margin-top: 2px; }

.awalk-auth-switch {
    text-align: center;
    margin: 6px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.awalk-auth-switch a { font-weight: 700; color: var(--brand); }
.awalk-auth-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.awalk-auth-actions .awalk-btn { width: 100%; }

/* ==========================================================================
   Widgets / Sidebar / Comments
   ========================================================================== */

.widget-area { padding-top: 32px; }

.widget {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.widget ul li:last-child { border-bottom: none; }
.widget select {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
}

.comment-list { list-style: none; margin: 0; padding: 0; }

.comment {
    margin-bottom: 18px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}

.comment .avatar { border-radius: 50%; margin-right: 12px; }
.comment-reply-title,
.comments-title { font-size: var(--h3); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    font-size: 15px;
    background: var(--surface);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--white);
}

/* ==========================================================================
   Responsive: SM (>=600px)
   ========================================================================== */

@media (min-width: 600px) {

    :root { --gutter: 28px; }

    .awalk-hero-buttons { flex-direction: row; }
    .awalk-hero-buttons .awalk-btn { width: auto; }
    .awalk-hero-img { height: 300px; }

    .awalk-feature-cards { grid-template-columns: repeat(2, 1fr); }
    .awalk-stats-bar { grid-template-columns: repeat(2, 1fr); }

    .awalk-blog-grid,
    .awalk-program-grid,
    .awalk-program-archive-grid,
    .awalk-event-grid,
    .awalk-article-grid,
    .awalk-team-grid { grid-template-columns: repeat(2, 1fr); }

    .post-navigation,
    .awalk-post-navigation { grid-template-columns: 1fr 1fr; }

    .awalk-copyright-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   Responsive: MD (>=768px)
   ========================================================================== */

@media (min-width: 768px) {

    .awalk-nl-form { flex-direction: row; align-items: center; }
    .awalk-nl-input { width: auto; }
    .awalk-nl-form .awalk-btn { flex-shrink: 0; }

    .awalk-team-single-grid { grid-template-columns: 0.9fr 1.1fr; }
    .awalk-team-single-photo img { height: 100%; min-height: 420px; object-fit: cover; }
    .awalk-team-single-info { padding: 34px 30px; }

    .awalk-stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        padding: 40px 34px;
    }

    .awalk-hero { padding: 64px 0 96px; }

    .awalk-nl-illustration-left,
    .awalk-nl-illustration-right { display: none; }
}

/* ==========================================================================
   Responsive: LG (>=1024px) - desktop
   ========================================================================== */

@media (min-width: 1024px) {

    :root { --gutter: 40px; }

    /* Restore inline desktop navigation */
    .main-navigation {
        position: static;
        width: auto;
        background: transparent;
        transform: none;
        box-shadow: none;
        z-index: auto;
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .main-navigation.is-open { transform: none; }
    .menu-toggle { display: none; }
    .awalk-menu-overlay { display: none; }

    .awalk-mobile-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        padding: 0;
        overflow: visible;
        width: auto;
    }

    .awalk-search-toggle {
        margin-bottom: 0;
        order: 3;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        margin-left: 6px;
    }

    .awalk-menu {
        flex-direction: row;
        gap: 2px;
        margin: 0;
        align-items: center;
    }

    .awalk-menu > .menu-item { border-bottom: none; }

    .awalk-menu a {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        padding: 10px 13px;
        display: inline-flex;
        color: var(--text);
    }

    .awalk-menu > .menu-item > a::before {
        content: '';
        position: absolute;
        left: 13px;
        right: 13px;
        bottom: 2px;
        height: 3px;
        border-radius: 3px;
        background-image: var(--grad-primary);
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .awalk-menu > .menu-item > a:hover::before,
    .awalk-menu > .current-menu-item > a::before,
    .awalk-menu > .current-menu-ancestor > a::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .awalk-menu .menu-item-has-children > a::after { margin-left: 4px; }

    .awalk-menu .sub-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
        padding: 10px;
        min-width: 210px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 260;
    }

    .awalk-menu .menu-item:hover > .sub-menu,
    .awalk-menu .menu-item:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .awalk-menu .sub-menu a {
        font-size: 13.5px;
        font-weight: 600;
        padding: 10px 12px;
        border-radius: 10px;
        display: block;
        color: var(--text);
    }

    .awalk-menu .sub-menu a:hover {
        background: var(--surface);
        color: var(--brand);
    }

    .awalk-menu .sub-menu .sub-menu {
        top: 0;
        left: 100%;
        margin-left: 4px;
    }

    .awalk-header-actions { display: flex; order: 4; margin-left: 8px; }
    .awalk-mobile-cta { display: none; }

    /* Hero */
    .awalk-hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    .awalk-hero-right { order: 0; }
    .awalk-hero-visual { max-width: none; min-height: 460px; }
    .awalk-hero-img { height: 420px; }

    .awalk-feature-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .awalk-feature-cards-wrap { padding: 56px 0 20px; }

    .awalk-footer-top {
        grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
        gap: 30px;
        padding: 60px 40px 48px;
    }

    .awalk-section-head { margin-bottom: 46px; }
}

/* ==========================================================================
   Responsive: XL (>=1240px)
   ========================================================================== */

@media (min-width: 1240px) {

    .awalk-blog-grid,
    .awalk-program-grid,
    .awalk-program-archive-grid,
    .awalk-event-grid,
    .awalk-article-grid,
    .awalk-team-grid { grid-template-columns: repeat(3, 1fr); }

    .awalk-hero-grid { gap: 64px; }
}