/* GIWT Workshops — Frontend styles (auto-extracted) */


/* ═══════════════════════════════════════════════════════════════
   GIWT — Page Ateliers en présentiel
   Tonalité : chaleureuse, premium, rare (effet exclusivité)
═══════════════════════════════════════════════════════════════ */

:root {
    --gwk-primary: #5c7c5c;
    --gwk-primary-dark: #4a6349;
    --gwk-primary-deep: #2E4032;
    --gwk-accent: #c9a962;
    --gwk-accent-dark: #a88a4a;
    --gwk-cta: #B8543A;
    --gwk-cta-dark: #8B3D26;
    --gwk-cream: #faf8f3;
    --gwk-cream-darker: #f3efe6;
    --gwk-text: #2E4032;
    --gwk-text-light: #5a6d5e;
    --gwk-text-muted: #8a978c;
    --gwk-border: #e5e2d8;
    --gwk-white: #ffffff;
    --gwk-full: #b85e3a;
    --gwk-full-bg: rgba(184, 84, 58, 0.1);

    --gwk-font-display: 'Lora', Georgia, serif;
    --gwk-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --gwk-radius-sm: 8px;
    --gwk-radius-md: 16px;
    --gwk-radius-lg: 24px;
    --gwk-radius-pill: 999px;

    --gwk-shadow-sm: 0 2px 8px rgba(46, 64, 50, 0.06);
    --gwk-shadow-md: 0 8px 32px rgba(46, 64, 50, 0.08);
    --gwk-shadow-lg: 0 20px 60px rgba(46, 64, 50, 0.12);
}

.giwt-wk-wrapper *, .giwt-wk-wrapper *::before, .giwt-wk-wrapper *::after { box-sizing: border-box; }

.giwt-wk-wrapper {
    margin: 0;
    font-family: var(--gwk-font-body);
    color: var(--gwk-text);
    background: var(--gwk-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--gwk-font-display);
    color: var(--gwk-primary-deep);
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}

p { margin: 0 0 1em; }

.giwt-wk-eyebrow {
    display: inline-block;
    font-family: var(--gwk-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gwk-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.giwt-wk-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY NAV (apparaît au scroll)
═══════════════════════════════════════════════════════════════ */

.giwt-wk-sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gwk-border);
    padding: 14px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(46, 64, 50, 0.06);
}

.giwt-wk-sticky-nav.visible {
    transform: translateY(0);
    opacity: 1;
}

.giwt-wk-sticky-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.giwt-wk-sticky-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--gwk-font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gwk-primary-deep);
}

.giwt-wk-sticky-nav-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gwk-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--gwk-font-display);
}

.giwt-wk-sticky-nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.giwt-wk-sticky-nav-brand-main {
    font-size: 15px;
    color: var(--gwk-primary-deep);
    font-weight: 600;
}

.giwt-wk-sticky-nav-brand-sub {
    font-size: 11px;
    color: var(--gwk-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--gwk-font-body);
    font-weight: 600;
}

.giwt-wk-sticky-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gwk-primary);
    color: white;
    padding: 10px 22px;
    border-radius: var(--gwk-radius-pill);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: var(--gwk-font-body);
}

.giwt-wk-sticky-nav-cta:hover {
    background: var(--gwk-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 124, 92, 0.3);
}

.giwt-wk-sticky-nav-cta-arrow {
    transition: transform 0.2s;
}

.giwt-wk-sticky-nav-cta:hover .giwt-wk-sticky-nav-cta-arrow {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .giwt-wk-sticky-nav { padding: 10px 0; }
    .giwt-wk-sticky-nav-inner { gap: 12px; }
    .giwt-wk-sticky-nav-brand-sub { display: none; }
    .giwt-wk-sticky-nav-cta {
        padding: 9px 16px;
        font-size: 13px;
    }
    .giwt-wk-sticky-nav-brand-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .giwt-wk-sticky-nav-brand-main { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════════ */

.giwt-wk-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--gwk-primary-deep);
    color: white;
    overflow: hidden;
}

.giwt-wk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--giwt-wk-hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.giwt-wk-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(46, 64, 50, 0.95) 0%,
        rgba(46, 64, 50, 0.85) 50%,
        rgba(46, 64, 50, 0.75) 100%);
    z-index: 2;
}

.giwt-wk-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.giwt-wk-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--gwk-radius-pill);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gwk-accent);
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.giwt-wk-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--gwk-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.giwt-wk-hero h1 {
    color: white;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.giwt-wk-hero h1 em {
    color: var(--gwk-accent);
    font-style: italic;
    font-weight: 500;
}

.giwt-wk-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.giwt-wk-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--gwk-radius-pill);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.giwt-wk-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.giwt-wk-hero-meta-item strong {
    color: white;
    font-weight: 700;
}

.giwt-wk-hero-meta-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   2. UPCOMING WORKSHOPS (Prochains ateliers)
═══════════════════════════════════════════════════════════════ */

.giwt-wk-upcoming {
    padding: 100px 0;
    background: white;
}

.giwt-wk-upcoming-header {
    text-align: center;
    margin-bottom: 64px;
}

.giwt-wk-upcoming-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.giwt-wk-upcoming-header p {
    font-size: 18px;
    color: var(--gwk-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.giwt-wk-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.giwt-wk-workshop-card {
    background: white;
    border-radius: var(--gwk-radius-lg);
    overflow: hidden;
    box-shadow: var(--gwk-shadow-sm);
    border: 1px solid var(--gwk-border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.giwt-wk-workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gwk-shadow-md);
}

.giwt-wk-workshop-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: var(--gwk-full);
    color: white;
    padding: 6px 16px;
    border-radius: var(--gwk-radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(184, 84, 58, 0.3);
}

.giwt-wk-workshop-card-date {
    background: var(--gwk-primary-deep);
    color: white;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.giwt-wk-workshop-card-date-day {
    font-family: var(--gwk-font-display);
    font-size: 56px;
    line-height: 1;
    color: var(--gwk-accent);
    font-weight: 600;
}

.giwt-wk-workshop-card-date-info {
    flex: 1;
}

.giwt-wk-workshop-card-date-month {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 4px;
}

.giwt-wk-workshop-card-date-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.giwt-wk-workshop-card-.giwt-wk-wrapper {
    padding: 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.giwt-wk-workshop-card-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gwk-accent-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.giwt-wk-workshop-card-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 600;
}

.giwt-wk-workshop-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gwk-text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.giwt-wk-workshop-card-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--gwk-primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.giwt-wk-workshop-card-description {
    font-size: 14px;
    color: var(--gwk-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.giwt-wk-workshop-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gwk-border);
    gap: 16px;
    flex-wrap: wrap;
}

.giwt-wk-workshop-card-meta-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.giwt-wk-workshop-card-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.giwt-wk-workshop-card-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gwk-text-muted);
    font-weight: 600;
}

.giwt-wk-workshop-card-meta-value {
    font-size: 16px;
    color: var(--gwk-primary-deep);
    font-weight: 700;
    font-family: var(--gwk-font-display);
}

.giwt-wk-workshop-card-priority {
    background: var(--gwk-cream);
    border-left: 3px solid var(--gwk-accent);
    padding: 14px 18px;
    border-radius: 0 var(--gwk-radius-sm) var(--gwk-radius-sm) 0;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gwk-text);
    line-height: 1.5;
}

.giwt-wk-workshop-card-priority strong {
    color: var(--gwk-primary-deep);
}

/* ═══════════════════════════════════════════════════════════════
   2.5. CTA LISTE D'ATTENTE / AVANT-PREMIÈRE
═══════════════════════════════════════════════════════════════ */

.giwt-wk-waitlist {
    padding: 80px 0;
    background: var(--gwk-primary-deep);
    color: white;
    position: relative;
    overflow: hidden;
}

.giwt-wk-waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 169, 98, 0.18), transparent 60%);
    pointer-events: none;
}

.giwt-wk-waitlist::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom left, rgba(184, 84, 58, 0.12), transparent 60%);
    pointer-events: none;
}

.giwt-wk-waitlist-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.giwt-wk-waitlist-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--gwk-radius-pill);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gwk-accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.giwt-wk-waitlist-eyebrow-icon {
    font-size: 14px;
}

.giwt-wk-waitlist h2 {
    color: white;
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 16px;
    line-height: 1.25;
}

.giwt-wk-waitlist h2 em {
    color: var(--gwk-accent);
    font-style: italic;
    font-weight: 500;
}

.giwt-wk-waitlist p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.giwt-wk-waitlist-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
}

.giwt-wk-waitlist-form-row {
    grid-column: span 2;
}

.giwt-wk-waitlist-form-row-half {
    grid-column: span 1;
}

.giwt-wk-waitlist-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.giwt-wk-waitlist-input,
.giwt-wk-waitlist-select,
.giwt-wk-waitlist-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--gwk-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: var(--gwk-font-body);
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.giwt-wk-waitlist-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--gwk-font-body);
}

.giwt-wk-waitlist-input::placeholder,
.giwt-wk-waitlist-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.giwt-wk-waitlist-input:focus,
.giwt-wk-waitlist-select:focus,
.giwt-wk-waitlist-textarea:focus {
    outline: none;
    border-color: var(--gwk-accent);
    background: rgba(255, 255, 255, 0.12);
}

.giwt-wk-waitlist-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a962' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.giwt-wk-waitlist-select option {
    background: var(--gwk-primary-deep);
    color: white;
}

.giwt-wk-waitlist-btn {
    grid-column: span 2;
    background: var(--gwk-accent);
    color: var(--gwk-primary-deep);
    border: none;
    padding: 16px 32px;
    border-radius: var(--gwk-radius-pill);
    font-family: var(--gwk-font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
    margin-top: 8px;
}

.giwt-wk-waitlist-btn:hover {
    background: #e0c280;
    transform: translateY(-2px);
}

.giwt-wk-waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.giwt-wk-waitlist-message {
    grid-column: span 2;
    margin-top: 12px;
    padding: 14px 20px;
    border-radius: var(--gwk-radius-md);
    font-size: 14px;
    display: none;
}

.giwt-wk-waitlist-message.success {
    display: block;
    background: rgba(92, 124, 92, 0.25);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: white;
}

.giwt-wk-waitlist-message.error {
    display: block;
    background: rgba(184, 84, 58, 0.2);
    border: 1px solid rgba(184, 84, 58, 0.5);
    color: #ffd0c0;
}

@media (max-width: 600px) {
    .giwt-wk-waitlist-form {
        grid-template-columns: 1fr;
    }
    .giwt-wk-waitlist-form-row,
    .giwt-wk-waitlist-form-row-half,
    .giwt-wk-waitlist-btn,
    .giwt-wk-waitlist-message {
        grid-column: span 1;
    }
}

.giwt-wk-waitlist-trust {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    justify-content: center;
}

.giwt-wk-waitlist-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   3. ACCESS CTA (Comment être prioritaire)
═══════════════════════════════════════════════════════════════ */

.giwt-wk-access {
    padding: 80px 0;
    background: white;
}

.giwt-wk-access-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.giwt-wk-access h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 20px;
    line-height: 1.25;
}

.giwt-wk-access p {
    font-size: 18px;
    color: var(--gwk-text-light);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.giwt-wk-access-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.giwt-wk-access-step {
    text-align: center;
    padding: 24px 20px;
}

.giwt-wk-access-step-num {
    font-family: var(--gwk-font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--gwk-accent);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 12px;
}

.giwt-wk-access-step h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.giwt-wk-access-step p {
    font-size: 14px;
    color: var(--gwk-text-light);
    margin: 0;
}

.giwt-wk-access-btn {
    display: inline-block;
    background: var(--gwk-cta);
    color: white;
    padding: 18px 40px;
    border-radius: var(--gwk-radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(184, 84, 58, 0.25);
}

.giwt-wk-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 84, 58, 0.35);
    background: var(--gwk-cta-dark);
}

/* ═══════════════════════════════════════════════════════════════
   4. PAST EVENTS (Événements passés)
═══════════════════════════════════════════════════════════════ */

.giwt-wk-past {
    padding: 100px 0;
    background: var(--gwk-cream);
}

.giwt-wk-past-header {
    text-align: center;
    margin-bottom: 64px;
}

.giwt-wk-past-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.giwt-wk-past-header p {
    font-size: 18px;
    color: var(--gwk-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.giwt-wk-past-events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.giwt-wk-past-event {
    background: white;
    border-radius: var(--gwk-radius-lg);
    overflow: hidden;
    box-shadow: var(--gwk-shadow-sm);
    border: 1px solid var(--gwk-border);
    display: grid;
    grid-template-columns: 480px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

.giwt-wk-past-event:hover {
    transform: translateY(-4px);
    box-shadow: var(--gwk-shadow-md);
}

.giwt-wk-past-event:nth-child(even) {
    grid-template-columns: 1fr 480px;
}

.giwt-wk-past-event:nth-child(even) .giwt-wk-past-event-photo {
    order: 2;
}

.giwt-wk-past-event-photo {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.giwt-wk-past-event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.giwt-wk-past-event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--gwk-radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--gwk-primary-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--gwk-shadow-sm);
}

.giwt-wk-past-event-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giwt-wk-past-event-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gwk-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    flex-wrap: wrap;
}

.giwt-wk-past-event-meta-divider {
    width: 4px;
    height: 4px;
    background: var(--gwk-accent);
    border-radius: 50%;
}

.giwt-wk-past-event-location {
    color: var(--gwk-primary);
    font-weight: 700;
}

.giwt-wk-past-event h3 {
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.giwt-wk-past-event-description {
    font-size: 15px;
    color: var(--gwk-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.giwt-wk-past-event-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--gwk-border);
}

.giwt-wk-past-event-stat {
    font-size: 13px;
    color: var(--gwk-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.giwt-wk-past-event-stat strong {
    color: var(--gwk-primary-deep);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   5. THANKS MESSAGE
═══════════════════════════════════════════════════════════════ */

.giwt-wk-thanks {
    padding: 100px 0;
    background: var(--gwk-cream);
    text-align: center;
}

.giwt-wk-thanks-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.giwt-wk-thanks-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.giwt-wk-thanks h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin-bottom: 24px;
    line-height: 1.3;
}

.giwt-wk-thanks p {
    font-size: 18px;
    color: var(--gwk-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.giwt-wk-thanks-signature {
    font-family: var(--gwk-font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--gwk-primary);
    margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   6. CTA FINAL
═══════════════════════════════════════════════════════════════ */

.giwt-wk-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gwk-cta) 0%, var(--gwk-cta-dark) 100%);
    color: white;
    text-align: center;
}

.giwt-wk-cta-final h2 {
    color: white;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.giwt-wk-cta-final p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.giwt-wk-cta-button {
    display: inline-block;
    background: white;
    color: var(--gwk-cta);
    padding: 18px 44px;
    border-radius: var(--gwk-radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.giwt-wk-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.giwt-wk-cta-trust {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .giwt-wk-upcoming-grid {
        grid-template-columns: 1fr;
    }
    .giwt-wk-past-event,
    .giwt-wk-past-event:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .giwt-wk-past-event:nth-child(even) .giwt-wk-past-event-photo {
        order: 0;
    }
    .giwt-wk-past-event-photo {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .giwt-wk-hero { padding: 70px 0 60px; }
    .giwt-wk-upcoming, .giwt-wk-access, .giwt-wk-past, .giwt-wk-thanks, .giwt-wk-cta-final {
        padding: 60px 0;
    }
    .giwt-wk-hero-meta {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .giwt-wk-hero-meta-divider { display: none; }
    .giwt-wk-access-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .giwt-wk-workshop-card-date-day { font-size: 44px; }
    .giwt-wk-past-event-content { padding: 24px 20px; }
    .giwt-wk-workshop-card-.giwt-wk-wrapper { padding: 24px; }
    .giwt-wk-workshop-card-date { padding: 20px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   HONEYPOT (anti-spam, caché aux humains, visible aux bots)
═══════════════════════════════════════════════════════════════ */
.giwt-wk-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
