{"id":8797,"date":"2022-09-13T21:12:00","date_gmt":"2022-09-13T21:12:00","guid":{"rendered":"https:\/\/koryo.club\/notre-equipe\/"},"modified":"2026-05-01T13:06:24","modified_gmt":"2026-05-01T13:06:24","slug":"notre-equipe","status":"publish","type":"page","link":"https:\/\/koryo.club\/fr\/notre-equipe\/","title":{"rendered":"Notre \u00e9quipe"},"content":{"rendered":"\n<?php\n\/**\n * Template Name: Koryo Our Team VIP FR\n *\/\n\nget_header(); ?>\n\n<style>\n    \/* =========================================\n       KORYO TEAM - VIP & CINEMATIC STYLES\n       ========================================= *\/\n    :root {\n        --k-red: #dc2626;\n        --k-red-glow: rgba(220, 38, 38, 0.4);\n        --k-dark: #050505; \n        --k-surface: #111111;\n        --k-text: #ffffff;\n        --k-muted: rgba(255, 255, 255, 0.6);\n        --k-border: rgba(255, 255, 255, 0.08);\n    }\n\n    html, body, #page, .site-content {\n        background-color: var(--k-dark) !important;\n        margin: 0;\n        padding: 0;\n    }\n\n    .k-team-wrapper {\n        color: var(--k-text);\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n        background: var(--k-dark);\n        min-height: 100vh;\n        padding-bottom: 120px;\n        overflow-x: hidden;\n    }\n\n    \/* 1. HEADER SECTION *\/\n    .k-team-header {\n        padding: 160px 20px 80px;\n        text-align: center;\n        background-image: radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);\n    }\n\n    .k-team-header h1 {\n        font-size: clamp(3rem, 6vw, 4.5rem);\n        font-weight: 900;\n        text-transform: uppercase;\n        margin-bottom: 15px;\n        letter-spacing: -2px;\n    }\n\n    .k-team-header h1 span { color: var(--k-red); }\n\n    \/* 2. TEAM GRID SYSTEM *\/\n    .k-team-container {\n        max-width: 1000px;\n        margin: 0 auto;\n        padding: 0 24px;\n        display: grid;\n        grid-template-columns: repeat(2, 1fr);\n        gap: 40px;\n    }\n\n    \/* 3. VIP FEATURED CARD (MASTER HAMED) - CLICKABLE *\/\n    .k-featured-card {\n        grid-column: 1 \/ -1;\n        display: flex;\n        background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);\n        border: 1px solid var(--k-border);\n        border-radius: 20px;\n        overflow: hidden;\n        text-decoration: none;\n        color: inherit;\n        position: relative;\n        transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);\n        margin-bottom: 20px;\n        box-shadow: 0 20px 50px rgba(0,0,0,0.5);\n    }\n\n    .k-featured-card::before {\n        content: \"\";\n        position: absolute;\n        inset: 0;\n        border-radius: 20px;\n        border: 2px solid transparent;\n        background: linear-gradient(45deg, var(--k-red), transparent) border-box;\n        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);\n        -webkit-mask-composite: destination-out;\n        mask-composite: exclude;\n        opacity: 0.3;\n        transition: opacity 0.5s ease;\n    }\n\n    .k-featured-card:hover {\n        transform: translateY(-5px);\n        box-shadow: 0 30px 60px rgba(220, 38, 38, 0.15);\n    }\n\n    .k-featured-card:hover::before { opacity: 1; }\n\n    .k-featured-img {\n        flex: 0 0 40%;\n        position: relative;\n        overflow: hidden;\n        background: #e5e5e5;\n    }\n\n    .k-featured-img img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n        object-position: top center;\n        transition: transform 0.8s ease, filter 0.5s ease;\n        filter: grayscale(80%) contrast(1.1);\n    }\n\n    .k-featured-card:hover .k-featured-img img {\n        transform: scale(1.05);\n        filter: grayscale(0%) contrast(1.1);\n    }\n\n    .k-featured-info {\n        padding: 60px 50px;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        flex: 1;\n    }\n\n    .k-featured-info .badge {\n        display: inline-block;\n        padding: 5px 12px;\n        background: rgba(220, 38, 38, 0.1);\n        color: var(--k-red);\n        border: 1px solid rgba(220, 38, 38, 0.3);\n        border-radius: 50px;\n        font-size: 0.75rem;\n        font-weight: 800;\n        letter-spacing: 2px;\n        text-transform: uppercase;\n        margin-bottom: 20px;\n        align-self: flex-start;\n    }\n\n    .k-featured-info h2 {\n        font-size: 3rem;\n        font-weight: 900;\n        text-transform: uppercase;\n        margin: 0 0 10px 0;\n        line-height: 1.1;\n    }\n\n    .k-featured-info p.role {\n        color: var(--k-muted);\n        font-size: 1.1rem;\n        letter-spacing: 3px;\n        text-transform: uppercase;\n        margin-bottom: 25px;\n    }\n\n    .k-featured-info p.bio {\n        font-size: 1.1rem;\n        line-height: 1.8;\n        color: var(--k-muted);\n        margin-bottom: 30px;\n        max-width: 600px;\n    }\n\n    .k-btn-profile {\n        align-self: flex-start;\n        background: var(--k-red);\n        color: #fff;\n        padding: 12px 28px;\n        border-radius: 6px;\n        font-weight: 800;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        display: inline-flex;\n        align-items: center;\n        gap: 10px;\n        transition: background 0.3s ease, transform 0.3s ease;\n    }\n\n    .k-featured-card:hover .k-btn-profile {\n        background: #b91c1c;\n        transform: translateX(5px);\n    }\n\n    \/* 4. REGULAR INSTRUCTOR CARDS *\/\n    .k-member-card {\n        background: var(--k-surface);\n        border: 1px solid var(--k-border);\n        border-radius: 16px;\n        overflow: hidden;\n        display: flex;\n        flex-direction: column;\n        transition: all 0.4s ease;\n    }\n\n    .k-member-card:hover {\n        border-color: rgba(255, 255, 255, 0.3);\n        transform: translateY(-8px);\n    }\n\n    .k-member-img-wrap {\n        width: 100%;\n        aspect-ratio: 4 \/ 3;\n        background: #e5e5e5;\n        overflow: hidden;\n        position: relative;\n    }\n\n    .k-member-img-wrap img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n        object-position: top center;\n        transition: transform 0.6s ease, filter 0.6s ease;\n        filter: grayscale(100%);\n    }\n\n    .k-member-card:hover .k-member-img-wrap img {\n        transform: scale(1.05);\n        filter: grayscale(0%);\n    }\n\n    .k-member-info {\n        padding: 30px 25px;\n        text-align: center;\n        flex-grow: 1;\n        display: flex;\n        flex-direction: column;\n    }\n\n    .k-member-info h3 {\n        font-size: 1.5rem;\n        font-weight: 800;\n        text-transform: uppercase;\n        margin: 0 0 5px 0;\n        color: #fff;\n    }\n\n    .k-member-info p.role {\n        color: var(--k-red);\n        font-weight: 700;\n        font-size: 0.75rem;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin-bottom: 20px;\n    }\n\n    .k-member-info p.bio {\n        font-size: 0.95rem;\n        color: var(--k-muted);\n        line-height: 1.6;\n        margin-bottom: 0;\n        flex-grow: 1;\n    }\n\n    \/* RESPONSIVE *\/\n    @media (max-width: 900px) {\n        .k-team-container { grid-template-columns: 1fr; }\n        .k-featured-card { flex-direction: column; }\n        .k-featured-img { aspect-ratio: 16\/9; }\n        .k-featured-info { padding: 40px 30px; }\n        .k-featured-info h2 { font-size: 2.2rem; }\n    }\n<\/style>\n\n<div class=\"k-team-wrapper\">\n    \n    <header class=\"k-team-header\">\n        <span style=\"color: var(--k-red); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem;\">Les Ma\u00eetres<\/span>\n        <h1>Notre <span>\u00c9quipe d&rsquo;Experts<\/span><\/h1>\n        <p style=\"color: var(--k-muted); margin-top: 15px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto;\">\n            Apprenez des meilleurs. Nos instructeurs apportent des d\u00e9cennies d&rsquo;exp\u00e9rience internationale sur le tatami.\n        <\/p>\n    <\/header>\n\n    <div class=\"k-team-container\">\n        \n        <a href=\"\/fr\/team\/master-hamed\" class=\"k-featured-card k-reveal\">\n            <div class=\"k-featured-img\">\n                <img decoding=\"async\" src=\"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg\" alt=\"Ma\u00eetre Hamed Konarivand\">\n            <\/div>\n            <div class=\"k-featured-info\">\n                <span class=\"badge\">Directeur &#038; Fondateur<\/span>\n                <h2>Ma\u00eetre Hamed<\/h2>\n                <p class=\"role\">Instructeur Officiel Kukkiwon<\/p>\n                <p class=\"bio\">30 ans d&rsquo;excellence en arts martiaux. Ancien membre de l&rsquo;\u00e9quipe nationale d&rsquo;Iran et d\u00e9tenteur de titres internationaux en tant qu&rsquo;entra\u00eeneur et athl\u00e8te. \u00c9levant le Koryo aux standards mondiaux.<\/p>\n                <div class=\"k-btn-profile\">Voir le Profil Complet <span style=\"font-size:1.2em;\">\u2192<\/span><\/div>\n            <\/div>\n        <\/a>\n\n        <div class=\"k-member-card k-reveal\">\n            <div class=\"k-member-img-wrap\">\n                <img decoding=\"async\" src=\"https:\/\/koryo.club\/wp-content\/uploads\/2026\/05\/Afarin-Djavanrouh.webp\" alt=\"Ma\u00eetre Afarin Djavanrouh\">\n            <\/div>\n            <div class=\"k-member-info\">\n                <h3>Ma\u00eetre Afarin<\/h3>\n                <p class=\"role\">Co-fondatrice &#038; Instructrice<\/p>\n                <p class=\"bio\">Ceinture Noire 2\u00e8me Dan et sp\u00e9cialiste en Poomsae. Plus de 10 ans d&rsquo;exp\u00e9rience en coaching professionnel pour tous les groupes d&rsquo;\u00e2ge.<\/p>\n            <\/div>\n        <\/div>\n\n        <div class=\"k-member-card k-reveal\">\n            <div class=\"k-member-img-wrap\">\n                <img decoding=\"async\" src=\"https:\/\/koryo.club\/wp-content\/uploads\/2021\/06\/Marc-removebg-preview-1-e1665484396308.png\" alt=\"Marc Favre\">\n            <\/div>\n            <div class=\"k-member-info\">\n                <h3>Marc Favre<\/h3>\n                <p class=\"role\">Instructeur<\/p>\n                <p class=\"bio\">Ceinture Noire et ancien membre de l&rsquo;\u00e9quipe nationale suisse. Multiple champion suisse et international de Taekwondo.<\/p>\n            <\/div>\n        <\/div>\n\n        <div class=\"k-member-card k-reveal\">\n            <div class=\"k-member-img-wrap\">\n                <img decoding=\"async\" src=\"https:\/\/koryo.club\/wp-content\/uploads\/2021\/06\/mohsen-removebg-preview-e1665484668545.jpg\" alt=\"Mohsen Jahfari\">\n            <\/div>\n            <div class=\"k-member-info\">\n                <h3>Mohsen Jahfari<\/h3>\n                <p class=\"role\">Instructeur<\/p>\n                <p class=\"bio\">Ceinture Noire et ancien membre de l&rsquo;\u00e9quipe nationale suisse. Fier multiple champion suisse et international de Taekwondo.<\/p>\n            <\/div>\n        <\/div>\n\n        <div class=\"k-member-card k-reveal\">\n            <div class=\"k-member-img-wrap\">\n                <img decoding=\"async\" src=\"https:\/\/koryo.club\/wp-content\/uploads\/2026\/05\/javad-khavari.webp\" alt=\"Mohammad Jawad Khawari\">\n            <\/div>\n            <div class=\"k-member-info\">\n                <h3>M. Jawad Khawari<\/h3>\n                <p class=\"role\">Instructeur<\/p>\n                <p class=\"bio\">Sp\u00e9cialiste de l&rsquo;entra\u00eenement pour enfants (4-10 ans). Apporte une vaste exp\u00e9rience en \u00e9ducation physique et en coaching issue des \u00e9coles priv\u00e9es suisses.<\/p>\n            <\/div>\n        <\/div>\n\n    <\/div>\n\n<\/div>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', () => {\n    const reveals = document.querySelectorAll('.k-reveal');\n    reveals.forEach((el, index) => {\n        el.style.opacity = '0';\n        el.style.transform = 'translateY(40px)';\n        el.style.transition = `all 0.8s cubic-bezier(0.22, 1, 0.36, 1) ${index * 0.15}s`;\n    });\n\n    const observer = new IntersectionObserver((entries) => {\n        entries.forEach(entry => {\n            if (entry.isIntersecting) {\n                entry.target.style.opacity = '1';\n                entry.target.style.transform = 'translateY(0)';\n                observer.unobserve(entry.target);\n            }\n        });\n    }, { threshold: 0.1 });\n\n    reveals.forEach(el => observer.observe(el));\n});\n<\/script>\n\n<?php get_footer(); ?>\n\n\n\n<style>\n  \/* ========================================== *\/\n  \/* FOOTER CSS (Ensures it looks good on ALL pages) *\/\n  \/* ========================================== *\/\n  .koryo-footer {\n    background: #050505;\n    color: #ffffff;\n    padding: 80px 5% 30px;\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n    border-top: 1px solid rgba(255, 255, 255, 0.05);\n  }\n\n  .koryo-footer__container {\n    max-width: 1300px;\n    margin: 0 auto;\n  }\n\n  \/* Grid Layout for Desktop *\/\n  .koryo-footer__grid {\n    display: grid;\n    grid-template-columns: 2fr 1fr 1fr 1fr;\n    gap: 50px;\n    margin-bottom: 60px;\n  }\n\n  \/* Brand Column *\/\n  .koryo-footer__brand-title {\n    font-size: 26px;\n    font-weight: 800;\n    margin: 0 0 15px 0;\n    letter-spacing: 1px;\n  }\n  .koryo-footer__brand-title span {\n    color: #dc2626;\n  }\n  .koryo-footer__tagline {\n    color: #a3a3a3;\n    font-size: 15px;\n    line-height: 1.6;\n    margin-bottom: 25px;\n    max-width: 350px;\n  }\n\n  \/* Social Icons *\/\n  .koryo-footer__socials {\n    display: flex;\n    gap: 12px;\n  }\n  .koryo-footer__social {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    width: 40px;\n    height: 40px;\n    background: rgba(255, 255, 255, 0.05);\n    border-radius: 8px;\n    color: #ffffff;\n    transition: all 0.3s ease;\n  }\n  .koryo-footer__social svg {\n    width: 20px;\n    height: 20px;\n  }\n  .koryo-footer__social:hover {\n    background: #dc2626;\n    transform: translateY(-3px);\n  }\n\n  \/* Columns (Programs, Locations, Club) *\/\n  .koryo-footer__col-title {\n    color: #ffffff;\n    font-size: 16px;\n    font-weight: 700;\n    text-transform: uppercase;\n    letter-spacing: 1px;\n    margin: 0 0 20px 0;\n  }\n  .koryo-footer__links {\n    list-style: none;\n    padding: 0;\n    margin: 0;\n    display: flex;\n    flex-direction: column;\n    gap: 12px;\n  }\n  .koryo-footer__link {\n    color: #a3a3a3;\n    text-decoration: none;\n    font-size: 14px;\n    transition: all 0.3s ease;\n    display: inline-block;\n  }\n  .koryo-footer__link:hover {\n    color: #dc2626;\n    transform: translateX(5px);\n  }\n\n  \/* Bottom Bar *\/\n  .koryo-footer__bottom {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding-top: 25px;\n    border-top: 1px solid rgba(255, 255, 255, 0.08);\n    color: #666666;\n    font-size: 13px;\n  }\n  .koryo-footer__bottom-links {\n    display: flex;\n    gap: 20px;\n    flex-wrap: wrap; \/* Added for Responsive UX *\/\n    justify-content: center; \/* Added for Responsive UX *\/\n  }\n  .koryo-footer__bottom-links a {\n    color: #666666;\n    text-decoration: none;\n    transition: color 0.3s;\n  }\n  .koryo-footer__bottom-links a:hover {\n    color: #ffffff;\n  }\n\n  \/* Responsive Mobile Layout *\/\n  @media (max-width: 900px) {\n    .koryo-footer__grid {\n      grid-template-columns: 1fr 1fr;\n    }\n  }\n  @media (max-width: 600px) {\n    .koryo-footer__grid {\n      grid-template-columns: 1fr;\n      gap: 40px;\n    }\n    .koryo-footer__bottom {\n      flex-direction: column;\n      gap: 15px;\n      text-align: center;\n    }\n  }\n<\/style>\n\n<footer class=\"koryo-footer\" aria-label=\"Footer\">\n  <div class=\"koryo-footer__container\">\n\n    <div class=\"koryo-footer__grid\">\n\n      <div>\n        <h3 class=\"koryo-footer__brand-title\">KORYO <span>TAEKWONDO<\/span><\/h3>\n        <p class=\"koryo-footer__tagline\">\n          Unleash your power. Master your mind. Elite Taekwondo training\n          across Geneva, Vaud, and Pays de Gex.\n        <\/p>\n        <div class=\"koryo-footer__socials\">\n          <a href=\"#\" class=\"koryo-footer__social\" aria-label=\"Instagram\">\n            <svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n              <rect x=\"2\" y=\"2\" width=\"20\" height=\"20\" rx=\"5\"\/>\n              <path d=\"M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37z\"\/>\n              <line x1=\"17.5\" y1=\"6.5\" x2=\"17.51\" y2=\"6.5\"\/>\n            <\/svg>\n          <\/a>\n          <a href=\"#\" class=\"koryo-footer__social\" aria-label=\"Facebook\">\n            <svg viewBox=\"0 0 24 24\" fill=\"currentColor\">\n              <path d=\"M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z\"\/>\n            <\/svg>\n          <\/a>\n          <a href=\"#\" class=\"koryo-footer__social\" aria-label=\"YouTube\">\n            <svg viewBox=\"0 0 24 24\" fill=\"currentColor\">\n              <path d=\"M22.54 6.42a2.78 2.78 0 00-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 00-1.94 2A29 29 0 001 11.75a29 29 0 00.46 5.33A2.78 2.78 0 003.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 001.94-2 29 29 0 00.46-5.25 29 29 0 00-.46-5.33z\"\/>\n              <polygon points=\"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02\" fill=\"#050505\"\/>\n            <\/svg>\n          <\/a>\n          <a href=\"#\" class=\"koryo-footer__social\" aria-label=\"WhatsApp\">\n            <svg viewBox=\"0 0 24 24\" fill=\"currentColor\">\n              <path d=\"M17.5 14c-.3-.1-1.7-.9-2-1-.3-.1-.5-.1-.7.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.4-.7-2.4-1.3-3.4-2.9-.3-.4.3-.4.8-1.3.1-.2.1-.3 0-.5 0-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5-.2 0-.4 0-.6 0s-.5.1-.8.4c-.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.2.2 2.1 3.3 5.2 4.6.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.7-.7 2-1.4.3-.6.3-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2a10 10 0 00-8.5 15.2L2 22l4.9-1.3A10 10 0 1012 2z\"\/>\n            <\/svg>\n          <\/a>\n        <\/div>\n      <\/div>\n\n      <div>\n        <h4 class=\"koryo-footer__col-title\">Programs<\/h4>\n        <ul class=\"koryo-footer__links\">\n          <li><a href=\"https:\/\/koryo.club\/taekfundo-class-for-children-age-4-to-6-years\/\" class=\"koryo-footer__link\">TaekFundo (4\u20136)<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-juniors-for-kids-ages-7-to-10\/\" class=\"koryo-footer__link\">Koryo Junior (7\u201310)<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/senior-taekwondo-class-for-age-10-to-15-years\/\" class=\"koryo-footer__link\">Koryo Seniors (10\u201315)<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-private\/\" class=\"koryo-footer__link\">Private Lessons<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-champs\/\" class=\"koryo-footer__link\">Koryo Champs<\/a><\/li>\n        <\/ul>\n      <\/div>\n\n      <div>\n        <h4 class=\"koryo-footer__col-title\">Locations<\/h4>\n        <ul class=\"koryo-footer__links\">\n          <li><a href=\"https:\/\/koryo.club\/the-best-taekwondo-school-in-versoix\/\" class=\"koryo-footer__link\">Versoix<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-gland-top-taekwondo-school\/\" class=\"koryo-footer__link\">Gland<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/top-taekwondo-instruction-for-all-koryo-taekwondo-club-in-geneva\/\" class=\"koryo-footer__link\">Geneva Champel<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-taekwondo-nations-geneva\/\" class=\"koryo-footer__link\">Geneva Nations<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/taekwondo-classes-gex\/\" class=\"koryo-footer__link\">Gex<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-taekwondo-saint-genis-pouilly\/\" class=\"koryo-footer__link\">Saint-Genis-Pouilly<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/koryo-taekwondo-ornex\/\" class=\"koryo-footer__link\">Ornex<\/a><\/li>\n        <\/ul>\n      <\/div>\n\n      <div>\n        <h4 class=\"koryo-footer__col-title\">Club<\/h4>\n        <ul class=\"koryo-footer__links\">\n          <li><a href=\"https:\/\/koryo.club\/#master\" class=\"koryo-footer__link\">Master Hamed<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/#why\" class=\"koryo-footer__link\">Why Koryo<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/#reviews\" class=\"koryo-footer__link\">Testimonials<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/#trial\" class=\"koryo-footer__link\">Free Trial<\/a><\/li>\n          <li><a href=\"https:\/\/koryo.club\/contact-us\/\" class=\"koryo-footer__link\">Contact<\/a><\/li>\n        <\/ul>\n      <\/div>\n\n    <\/div>\n\n    <div class=\"koryo-footer__bottom\">\n      <div>\u00a9 2026 Koryo Taekwondo Club. All rights reserved.<\/div>\n      <div class=\"koryo-footer__bottom-links\">\n        <a href=\"https:\/\/koryo.club\/privacy-policy\/\">Privacy Policy<\/a>\n        <a href=\"https:\/\/koryo.club\/terms-of-service\/\">Terms of Service<\/a>\n        <a href=\"https:\/\/koryo.club\/cookie-policy\/\">Cookies<\/a>\n        <!-- Added Wise Compliance Links Here -->\n        <a href=\"https:\/\/koryo.club\/refund-policy\/\">Refund Policy<\/a>\n        <a href=\"https:\/\/koryo.club\/delivery-policy\/\">Delivery Policy<\/a>\n      <\/div>\n    <\/div>\n\n  <\/div>\n<\/footer>\n","protected":false},"excerpt":{"rendered":"<p>Les Ma\u00eetres Notre \u00c9quipe d&rsquo;Experts Apprenez des meilleurs. Nos instructeurs apportent des d\u00e9cennies d&rsquo;exp\u00e9rience internationale sur le tatami. Directeur &#038; Fondateur Ma\u00eetre Hamed Instructeur Officiel Kukkiwon 30 ans d&rsquo;excellence en arts martiaux. Ancien membre de l&rsquo;\u00e9quipe nationale d&rsquo;Iran et d\u00e9tenteur de titres internationaux en tant qu&rsquo;entra\u00eeneur et athl\u00e8te. \u00c9levant le Koryo aux standards mondiaux. Voir &#8230; <a title=\"Notre \u00e9quipe\" class=\"read-more\" href=\"https:\/\/koryo.club\/fr\/notre-equipe\/\" aria-label=\"En savoir plus sur Notre \u00e9quipe\">Lire la suite<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-8797","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.6 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Notre \u00c9quipe d&#039;Experts et Ma\u00eetres | Koryo Taekwondo Club<\/title>\n<meta name=\"description\" content=\"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d&#039;exp\u00e9rience internationale.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/koryo.club\/fr\/notre-equipe\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Notre \u00e9quipe\" \/>\n<meta property=\"og:description\" content=\"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d&#039;exp\u00e9rience internationale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/koryo.club\/fr\/notre-equipe\/\" \/>\n<meta property=\"og:site_name\" content=\"Koryo Taekwondo Club\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-01T13:06:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/\",\"url\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/\",\"name\":\"Notre \u00c9quipe d'Experts et Ma\u00eetres | Koryo Taekwondo Club\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/koryo.club\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Master-hamed-konarivand-e1620007110975.jpeg\",\"datePublished\":\"2022-09-13T21:12:00+00:00\",\"dateModified\":\"2026-05-01T13:06:24+00:00\",\"description\":\"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d'exp\u00e9rience internationale.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/#primaryimage\",\"url\":\"https:\\\/\\\/koryo.club\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Master-hamed-konarivand-e1620007110975.jpeg\",\"contentUrl\":\"https:\\\/\\\/koryo.club\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/Master-hamed-konarivand-e1620007110975.jpeg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/notre-equipe\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/koryo.club\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Notre \u00e9quipe\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/koryo.club\\\/fr\\\/\",\"name\":\"Koryo Taekwondo Club\",\"description\":\"Cours de Taekwondo pour tous\",\"publisher\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/koryo.club\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#organization\",\"name\":\"koryo club\",\"url\":\"https:\\\/\\\/koryo.club\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"koryo club\"},\"image\":{\"@id\":\"https:\\\/\\\/koryo.club\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Notre \u00c9quipe d'Experts et Ma\u00eetres | Koryo Taekwondo Club","description":"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d'exp\u00e9rience internationale.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/koryo.club\/fr\/notre-equipe\/","og_locale":"fr_FR","og_type":"article","og_title":"Notre \u00e9quipe","og_description":"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d'exp\u00e9rience internationale.","og_url":"https:\/\/koryo.club\/fr\/notre-equipe\/","og_site_name":"Koryo Taekwondo Club","article_modified_time":"2026-05-01T13:06:24+00:00","og_image":[{"url":"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/koryo.club\/fr\/notre-equipe\/","url":"https:\/\/koryo.club\/fr\/notre-equipe\/","name":"Notre \u00c9quipe d'Experts et Ma\u00eetres | Koryo Taekwondo Club","isPartOf":{"@id":"https:\/\/koryo.club\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/koryo.club\/fr\/notre-equipe\/#primaryimage"},"image":{"@id":"https:\/\/koryo.club\/fr\/notre-equipe\/#primaryimage"},"thumbnailUrl":"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg","datePublished":"2022-09-13T21:12:00+00:00","dateModified":"2026-05-01T13:06:24+00:00","description":"Rencontrez les instructeurs experts du Koryo Taekwondo Club. Dirig\u00e9e par Ma\u00eetre Hamed konarivand et Ma\u00eetre Afarin, notre \u00e9quipe apporte des d\u00e9cennies d'exp\u00e9rience internationale.","breadcrumb":{"@id":"https:\/\/koryo.club\/fr\/notre-equipe\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/koryo.club\/fr\/notre-equipe\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/koryo.club\/fr\/notre-equipe\/#primaryimage","url":"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg","contentUrl":"https:\/\/koryo.club\/wp-content\/uploads\/2021\/05\/Master-hamed-konarivand-e1620007110975.jpeg"},{"@type":"BreadcrumbList","@id":"https:\/\/koryo.club\/fr\/notre-equipe\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/koryo.club\/fr\/"},{"@type":"ListItem","position":2,"name":"Notre \u00e9quipe"}]},{"@type":"WebSite","@id":"https:\/\/koryo.club\/fr\/#website","url":"https:\/\/koryo.club\/fr\/","name":"Koryo Taekwondo Club","description":"Cours de Taekwondo pour tous","publisher":{"@id":"https:\/\/koryo.club\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/koryo.club\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/koryo.club\/fr\/#organization","name":"koryo club","url":"https:\/\/koryo.club\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/koryo.club\/fr\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"koryo club"},"image":{"@id":"https:\/\/koryo.club\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/pages\/8797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/comments?post=8797"}],"version-history":[{"count":1,"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/pages\/8797\/revisions"}],"predecessor-version":[{"id":11010,"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/pages\/8797\/revisions\/11010"}],"wp:attachment":[{"href":"https:\/\/koryo.club\/fr\/wp-json\/wp\/v2\/media?parent=8797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}