:root {
    --wl-ink: #0a0f1a;
    --wl-ink-2: #1a2035;
    --wl-text: #0f172a;
    --wl-text-2: #334155;
    --wl-text-3: #64748b;
    --wl-text-4: #94a3b8;
    --wl-bg: #ffffff;
    --wl-bg-warm: #faf9f7;
    --wl-bg-cool: #f1f5f9;
    --wl-border: #e2e8f0;
    --wl-red: #dc2626;
    --wl-red-dark: #991b1b;
    --wl-serif: 'Instrument Serif', Georgia, serif;
    --wl-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wl { font-family: var(--wl-sans); color: var(--wl-text); -webkit-font-smoothing: antialiased; }
.wl a { text-decoration: none; color: inherit; }

/* ── Reveal animation ────────────────────── */
.wl-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.wl-reveal.visible { opacity: 1; transform: none; }
.wl-d1 { transition-delay: 0.08s; }
.wl-d2 { transition-delay: 0.16s; }
.wl-d3 { transition-delay: 0.24s; }
.wl-d4 { transition-delay: 0.32s; }
.wl-d5 { transition-delay: 0.40s; }

/* ── Buttons ─────────────────────────────── */
.wl-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.8rem 1.6rem; border-radius: 5px;
    font-family: var(--wl-sans); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.01em; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1); border: none;
}
.wl-btn-red { background: var(--wl-red); color: #fff; }
.wl-btn-red:hover { background: var(--wl-red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.25); }
.wl-btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.wl-btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.06); }
.wl-btn-dark { background: var(--wl-ink); color: #fff; }
.wl-btn-dark:hover { background: var(--wl-ink-2); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,15,26,0.3); }
.wl-btn-outline-dark { background: transparent; color: var(--wl-text); border: 1.5px solid var(--wl-border); }
.wl-btn-outline-dark:hover { border-color: var(--wl-text); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.wl-hero {
    position: relative; overflow: hidden;
    background: var(--wl-ink); min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.wl-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.92) 100%),
        linear-gradient(180deg, transparent 60%, var(--wl-ink) 100%);
}

.wl-hero-mosaic {
    position: absolute; inset: 0; z-index: 1;
    display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr 1fr; gap: 4px;
}
.wl-hero-mosaic img {
    width: 100%; height: 100%; object-fit: cover;
    animation: wlDrift 25s ease-in-out infinite alternate;
}
.wl-hero-mosaic img:nth-child(2) { animation-delay: -4s; }
.wl-hero-mosaic img:nth-child(3) { animation-delay: -8s; animation-direction: alternate-reverse; }
.wl-hero-mosaic img:nth-child(4) { animation-delay: -12s; }
@keyframes wlDrift { from { transform: scale(1); } to { transform: scale(1.08); } }

.wl-hero-inner {
    position: relative; z-index: 3;
    text-align: center; padding: 2rem;
    max-width: 780px;
}
.wl-hero-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem; border-radius: 100px;
    background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.25);
    font-size: 0.68rem; font-weight: 700; color: #fca5a5;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 2rem;
    animation: wlFadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.wl-hero-chip-dot { width: 6px; height: 6px; background: var(--wl-red); border-radius: 50%; animation: wlPulse 2s infinite; }
@keyframes wlPulse { 0%,100% { opacity:1; } 50% { opacity:0.25; } }
@keyframes wlFadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

.wl-hero h1 {
    font-family: var(--wl-serif); font-size: 4.2rem; font-weight: 400;
    line-height: 1.05; letter-spacing: -1.5px;
    margin: 0 0 1.25rem;
    animation: wlFadeUp 0.8s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.wl-hero h1 em { font-style: italic; color: var(--wl-red); }

.wl-hero-lead {
    font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.6);
    max-width: 520px; margin: 0 auto 2.25rem;
    animation: wlFadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.wl-hero-actions {
    display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
    animation: wlFadeUp 0.8s 0.65s cubic-bezier(0.16,1,0.3,1) both;
}

.wl-hero-numbers {
    display: flex; gap: 3rem; justify-content: center;
    margin-top: 3.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: wlFadeUp 0.8s 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.wl-hero-num { font-family: var(--wl-serif); font-size: 2.2rem; color: #fff; line-height: 1; }
.wl-hero-num-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }

/* ════════════════════════════════════════════
   TOP PICTURES
   ════════════════════════════════════════════ */
.wl-sec { padding: 5rem 2rem; }
.wl-sec-warm { background: var(--wl-bg-warm); }
.wl-sec-dark { background: var(--wl-ink); color: #fff; }
.wl-wrap { max-width: 1160px; margin: 0 auto; }

.wl-sec-eyebrow { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--wl-red); margin-bottom: 0.6rem; }
.wl-sec-dark .wl-sec-eyebrow { color: #fca5a5; }
.wl-sec-h { font-family: var(--wl-serif); font-size: 2.4rem; line-height: 1.1; letter-spacing: -0.5px; margin: 0 0 0.5rem; }
.wl-sec-p { font-size: 0.95rem; color: var(--wl-text-3); line-height: 1.6; max-width: 480px; }
.wl-sec-dark .wl-sec-p { color: rgba(255,255,255,0.5); }

.wl-sec-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }

/* ── Top Pictures — Editorial Grid ────── */
.wl-tp { position: relative; }

.wl-tp-hero {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
    margin-bottom: 0.4rem;
}
.wl-tp-side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }

.wl-tp-card {
    position: relative; border-radius: 4px; overflow: hidden;
    background: #111; cursor: default;
}
.wl-tp-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
}
.wl-tp-card:hover img { transform: scale(1.04); }
.wl-tp-hero .wl-tp-card { min-height: 320px; }
.wl-tp-side .wl-tp-card { min-height: 180px; }
.wl-tp-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 40%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.wl-tp-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.8rem 0.9rem; z-index: 2; color: #fff;
}
.wl-tp-hero .wl-tp-info { padding: 1.1rem 1.2rem; }
.wl-tp-cat {
    display: inline-block; padding: 0.15rem 0.45rem; border-radius: 2px;
    background: var(--wl-red); color: #fff;
    font-size: 0.52rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.7px; margin-bottom: 0.4rem;
}
.wl-tp-title {
    font-family: var(--wl-sans); font-size: 0.78rem; font-weight: 600;
    line-height: 1.3; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wl-tp-hero .wl-tp-title { font-size: 1.05rem; font-weight: 700; }
.wl-tp-time { font-size: 0.58rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

.wl-tp-lock {
    position: absolute; top: 0.55rem; right: 0.55rem; z-index: 3;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(10,15,26,0.5); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.58rem;
    transition: background 0.2s, color 0.2s;
}
.wl-tp-card:hover .wl-tp-lock { background: var(--wl-red); color: #fff; }

/* Subscribe overlay banner across bottom of the grid */
.wl-tp-cta-bar {
    margin-top: 1.25rem;
    background: var(--wl-ink); border-radius: 6px;
    padding: 1.1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.wl-tp-cta-text { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; }
.wl-tp-cta-text strong { color: #fff; font-weight: 700; }
.wl-tp-cta-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ════════════════════════════════════════════
   VALUE PROPS
   ════════════════════════════════════════════ */
.wl-vals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.wl-val {
    padding: 1.75rem 1.5rem; border-radius: 8px;
    border: 1px solid var(--wl-border); background: var(--wl-bg);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.wl-val:hover { border-color: var(--wl-red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(220,38,38,0.07); }
.wl-val-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, rgba(220,38,38,0.03) 100%);
    color: var(--wl-red); display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; margin-bottom: 1.1rem;
}
.wl-val h4 { font-size: 0.88rem; font-weight: 700; margin: 0 0 0.35rem; }
.wl-val p { font-size: 0.8rem; line-height: 1.55; color: var(--wl-text-3); margin: 0; }

/* ════════════════════════════════════════════
   STORIES
   ════════════════════════════════════════════ */
.wl-stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.wl-story {
    border-radius: 6px; overflow: hidden;
    border: 1px solid var(--wl-border); background: var(--wl-bg);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.wl-story:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.07); border-color: #cbd5e1; }
.wl-story-img-wrap { position: relative; overflow: hidden; }
.wl-story-img { width: 100%; height: 175px; object-fit: cover; display: block; transition: transform 0.45s; }
.wl-story:hover .wl-story-img { transform: scale(1.05); }
.wl-story-badge {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 1;
    padding: 0.2rem 0.55rem; border-radius: 3px;
    background: var(--wl-red); color: #fff;
    font-size: 0.55rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}
.wl-story-body { padding: 0.9rem 1rem; }
.wl-story h3 {
    font-size: 0.88rem; font-weight: 700; line-height: 1.35; margin: 0 0 0.35rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wl-story-meta { font-size: 0.68rem; color: var(--wl-text-4); }
.wl-story-gate {
    margin-top: 0.65rem; padding-top: 0.6rem; border-top: 1px solid var(--wl-border);
    font-size: 0.65rem; color: var(--wl-text-4);
    display: flex; align-items: center; gap: 0.3rem;
}

/* ════════════════════════════════════════════
   COVERAGE STRIP
   ════════════════════════════════════════════ */
.wl-coverage-chips {
    display: flex; gap: 0.45rem; flex-wrap: wrap; justify-content: center;
}
.wl-chip {
    padding: 0.45rem 1rem; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 500;
    transition: all 0.2s;
}
.wl-chip:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

/* ════════════════════════════════════════════
   STEPS
   ════════════════════════════════════════════ */
.wl-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.wl-how-step { text-align: center; }
.wl-how-num {
    font-family: var(--wl-serif); font-size: 2.8rem; color: var(--wl-red);
    line-height: 1; margin-bottom: 0.8rem; opacity: 0.8;
}
.wl-how-step h4 { font-size: 0.92rem; font-weight: 700; margin: 0 0 0.4rem; }
.wl-how-step p { font-size: 0.8rem; color: var(--wl-text-3); line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════ */
.wl-closer {
    background: var(--wl-ink); padding: 5rem 2rem;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.wl-closer::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(220,38,38,0.08) 0%, transparent 60%);
}
.wl-closer-inner { position: relative; z-index: 1; }
.wl-closer h2 { font-family: var(--wl-serif); font-size: 2.6rem; letter-spacing: -0.5px; margin: 0 0 0.7rem; }
.wl-closer p { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 440px; margin: 0 auto 2.2rem; line-height: 1.6; }

/* ════════════════════════════════════════════
   CONTACT MODAL
   ════════════════════════════════════════════ */
.wl-modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,15,26,0.7); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 1.5rem;
}
.wl-modal-backdrop.open { display: flex; }
.wl-modal {
    background: var(--wl-bg); border-radius: 10px;
    width: 100%; max-width: 480px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    animation: wlModalIn 0.3s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}
@keyframes wlModalIn { from { opacity:0; transform:translateY(16px) scale(0.97); } to { opacity:1; transform:none; } }
.wl-modal-header {
    padding: 1.5rem 1.5rem 0; display: flex; justify-content: space-between; align-items: flex-start;
}
.wl-modal-header h3 { font-family: var(--wl-serif); font-size: 1.5rem; margin: 0; letter-spacing: -0.3px; }
.wl-modal-header p { font-size: 0.82rem; color: var(--wl-text-3); margin: 0.25rem 0 0; }
.wl-modal-close {
    width: 32px; height: 32px; border-radius: 6px; border: none;
    background: var(--wl-bg-cool); color: var(--wl-text-3);
    cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.wl-modal-close:hover { background: var(--wl-border); }
.wl-modal-body { padding: 1.25rem 1.5rem 1.5rem; }
.wl-modal-field { margin-bottom: 0.85rem; }
.wl-modal-field label {
    display: block; font-size: 0.72rem; font-weight: 600;
    color: var(--wl-text-2); margin-bottom: 0.3rem;
}
.wl-modal-field input, .wl-modal-field select, .wl-modal-field textarea {
    width: 100%; padding: 0.55rem 0.75rem; border: 1px solid var(--wl-border);
    border-radius: 5px; font-family: var(--wl-sans); font-size: 0.82rem;
    color: var(--wl-text); background: var(--wl-bg);
    transition: border-color 0.15s;
}
.wl-modal-field input:focus, .wl-modal-field select:focus, .wl-modal-field textarea:focus {
    outline: none; border-color: var(--wl-red);
}
.wl-modal-field textarea { resize: vertical; min-height: 80px; }
.wl-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.wl-modal-submit {
    width: 100%; padding: 0.75rem; border: none; border-radius: 5px;
    background: var(--wl-red); color: #fff;
    font-family: var(--wl-sans); font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s;
}
.wl-modal-submit:hover { background: var(--wl-red-dark); }
.wl-modal-success {
    display: none; text-align: center; padding: 2rem 1.5rem;
}
.wl-modal-success.show { display: block; }
.wl-modal-success i { font-size: 2rem; color: #16a34a; margin-bottom: 0.75rem; }
.wl-modal-success h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.3rem; }
.wl-modal-success p { font-size: 0.82rem; color: var(--wl-text-3); margin: 0; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .wl-hero h1 { font-size: 3rem; }
    .wl-pics { grid-template-columns: 1fr 1fr; height: auto; }
    .wl-pics .wl-pic:first-child { grid-row: auto; }
    .wl-pics .wl-pic img { min-height: 180px; }
    .wl-vals { grid-template-columns: 1fr 1fr; }
    .wl-stories { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .wl-hero { min-height: 80vh; }
    .wl-hero h1 { font-size: 2.2rem; }
    .wl-hero-lead { font-size: 0.92rem; }
    .wl-hero-numbers { gap: 1.5rem; flex-wrap: wrap; }
    .wl-hero-num { font-size: 1.6rem; }
    .wl-sec { padding: 3rem 1.25rem; }
    .wl-sec-h { font-size: 1.8rem; }
    .wl-pics { grid-template-columns: 1fr 1fr; }
    .wl-vals { grid-template-columns: 1fr; }
    .wl-stories { grid-template-columns: 1fr; }
    .wl-how { grid-template-columns: 1fr; gap: 2rem; }
    .wl-closer h2 { font-size: 1.8rem; }
}
