/* =====================================================
   Wei Lai Academy 2026 — landing styles
   ===================================================== */

:root {
    --wl-bg:        #FCF5E5;
    --wl-text:      #1F1F1F;
    --wl-muted:     rgba(31, 31, 31, 0.65);
    --wl-line:      rgba(31, 31, 31, 0.08);

    --wl-peach:     #F5B89E;
    --wl-peach-soft:#FBE0D2;
    --wl-yellow:    #FCE2A0;
    --wl-yellow-soft:#FCEDC2;
    --wl-mint:      #C8E0B6;
    --wl-mint-soft: #DDECCD;
    --wl-pink:      #F4D1C8;

    --wl-error:     #D94A4A;

    --wl-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --wl-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --wl-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);

    --wl-radius:    16px;
    --wl-radius-lg: 24px;
    --wl-radius-pill: 999px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: var(--wl-bg);
    color: var(--wl-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; }

/* ----- Layout ----- */
.wl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.wl-slide {
    padding: 96px 0;
    border-bottom: 1px solid var(--wl-line);
}
.wl-slide:last-of-type { border-bottom: none; }

.wl-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* ----- Cursive (Caveat) ----- */
.wl-cursive {
    font-family: "Caveat", "Marck Script", cursive;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ----- Typography ----- */
.wl-h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}
.wl-h2--center { text-align: center; margin-bottom: 24px; }
/* Мягкий вариант для длинных, разговорных подзаголовков (CTA-форма).
   font-weight: 800 для прозы выглядит «слабоватый шрифт» = жирный кирпич. */
.wl-h2--soft {
    font-family: "Century Gothic", "URW Gothic", "Avant Garde", "ITC Avant Garde Gothic",
                 "Futura", "Apple SD Gothic Neo", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.wl-h2__accent {
    font-size: 56px;
    font-weight: 700;
    color: var(--wl-text);
    margin-right: 6px;
}

.wl-body {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.wl-body:last-child { margin-bottom: 0; }

.wl-quote {
    position: relative;
    font-size: 19px;
    font-weight: 500;
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--wl-mint);
    background: var(--wl-mint-soft);
    border-radius: 0 12px 12px 0;
}

.wl-quote--peach  { border-left-color: var(--wl-peach);  background: var(--wl-peach-soft); }
.wl-quote--mint   { border-left-color: var(--wl-mint);   background: var(--wl-mint-soft); }
.wl-quote--yellow { border-left-color: var(--wl-yellow); background: var(--wl-yellow-soft); }

.wl-note {
    font-size: 15px;
    color: var(--wl-muted);
    margin-top: 12px;
    padding-left: 14px;
    border-left: 3px solid var(--wl-mint);
}

/* ----- Pills (badges) ----- */
.wl-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.wl-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: var(--wl-peach-soft);
}

.wl-pill--peach  { background: var(--wl-peach); }
.wl-pill--yellow { background: var(--wl-yellow); }
.wl-pill--mint   { background: var(--wl-mint); }
.wl-pill--pink   { background: var(--wl-pink); }

/* ----- Buttons ----- */
.wl-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--wl-radius-pill);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wl-btn--primary {
    background: var(--wl-peach);
    color: var(--wl-text);
    box-shadow: 0 4px 16px rgba(245, 184, 158, 0.45);
}
.wl-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 184, 158, 0.55);
}
.wl-btn:active { transform: translateY(0); }
.wl-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* =====================================================
   1. HERO
   ===================================================== */
.wl-hero { padding-top: 56px; padding-bottom: 72px; }
.wl-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 72vh;
}
.wl-hero__media { position: relative; }
.wl-hero__img {
    width: 100%;
    border-radius: var(--wl-radius-lg);
    box-shadow: var(--wl-shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.wl-hero__badge {
    position: absolute;
    top: 28px;
    right: -16px;
    background: var(--wl-peach);
    color: var(--wl-text);
    font-weight: 700;
    font-size: 28px;
    padding: 10px 22px;
    border-radius: 14px;
    transform: rotate(-4deg);
    box-shadow: var(--wl-shadow-md);
}
.wl-hero__eyebrow {
    font-size: 15px;
    color: var(--wl-muted);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.wl-hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 36px;
}
.wl-hero__title-main, .wl-hero__title-sub { display: block; }
.wl-hero__title-sub {
    font-size: 36px;
    font-weight: 600;
    margin-top: 6px;
    color: var(--wl-muted);
}
.wl-hero__title-cursive {
    display: inline-block;
    margin-top: 10px;
    font-size: 60px;
    color: var(--wl-text);
}

/* =====================================================
   2. ABOUT
   ===================================================== */
.wl-about__photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.wl-about__photos img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-sm);
}

/* =====================================================
   3. SPACE
   ===================================================== */
.wl-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}
.wl-feature-list li {
    position: relative;
    padding-left: 30px;
}
.wl-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--wl-peach);
    border-radius: 50%;
}
.wl-feature-list li strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}
.wl-feature-list li span {
    color: var(--wl-muted);
    font-size: 15px;
}
.wl-space__photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.wl-space__photos img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
}

/* =====================================================
   4. SCHEDULE
   ===================================================== */
.wl-schedule__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
}
.wl-schedule__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 36px;
    margin-bottom: 36px;
}
.wl-schedule__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wl-schedule__list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    font-size: 16px;
}
.wl-time {
    background: var(--wl-yellow);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}
.wl-time--accent { background: var(--wl-mint); }

.wl-schedule__totals {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.wl-total { display: flex; align-items: center; gap: 14px; }
.wl-total__num {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}
.wl-total__label { font-size: 15px; line-height: 1.4; }

/* =====================================================
   5. FOOD
   ===================================================== */
.wl-food__head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 36px;
}
.wl-food__pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.wl-food__pills .wl-pill {
    font-size: 20px;
    padding: 14px 28px;
    border-radius: 14px;
}
.wl-food__photo-wrap img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
}

/* =====================================================
   6-9. MASTER-CLASSES
   ===================================================== */
.wl-mc__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
    max-height: 580px;
}
.wl-mc__hanzi {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}
.wl-mc__head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 20px 0 24px;
    flex-wrap: wrap;
}
.wl-mc__head .wl-pill {
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 14px;
}

/* Mirror layout — текст слева, фото справа */
.wl-mc--mirror .wl-mc__text  { order: 1; }
.wl-mc--mirror .wl-mc__photo { order: 2; }

/* =====================================================
   10. TAIJI
   ===================================================== */
.wl-taiji__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
    max-height: 580px;
}

/* =====================================================
   11. TEAM
   ===================================================== */
.wl-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.wl-team__person {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.wl-team__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
    max-height: 460px;
}
.wl-team__name {
    font-size: 22px;
    padding: 8px 22px;
    border-radius: 14px;
}
.wl-team__person a {
    color: var(--wl-text);
    text-decoration: underline;
    text-decoration-color: var(--wl-peach);
    text-underline-offset: 3px;
}

/* =====================================================
   12. TESTIMONIALS
   ===================================================== */
.wl-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wl-testimonials__grid img {
    width: 100%;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
    object-fit: cover;
}

/* =====================================================
   13. PRICING
   ===================================================== */
.wl-pricing__note {
    background: var(--wl-mint-soft);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 28px;
}
.wl-pricing__includes {
    margin-bottom: 36px;
}
.wl-pricing__includes li {
    padding: 8px 0 8px 30px;
    font-size: 17px;
    position: relative;
}
.wl-pricing__includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 12px;
    background: var(--wl-mint);
    border-radius: 50%;
}
.wl-prices {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.wl-price {
    position: relative;
    border: 1.5px solid var(--wl-text);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: white;
}
.wl-price__sum {
    font-size: 28px;
    font-weight: 700;
}
.wl-price__when {
    font-size: 14px;
    color: var(--wl-muted);
}
.wl-price__discount {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--wl-mint);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.wl-pricing__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow-md);
    max-height: 580px;
}

/* =====================================================
   14. CTA + FORM
   ===================================================== */
.wl-cta { padding-bottom: 60px; }
.wl-cta__intro {
    text-align: center;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--wl-muted);
}

.wl-form {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wl-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wl-label {
    font-size: 14px;
    font-weight: 600;
}
.wl-req { color: var(--wl-peach); }
.wl-optional {
    font-weight: 400;
    color: rgba(31, 31, 31, 0.55);
}
.wl-input {
    padding: 14px 18px;
    font-size: 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: white;
    font-family: inherit;
    color: var(--wl-text);
    transition: border-color 0.15s, background-color 0.15s;
    width: 100%;
}
.wl-input:focus {
    outline: none;
    border-color: var(--wl-peach);
    background: #fffaf6;
}
.wl-textarea {
    resize: vertical;
    min-height: 88px;
    line-height: 1.5;
    font-family: inherit;
}
.wl-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231F1F1F' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.wl-input.is-invalid {
    border-color: var(--wl-error);
    background: rgba(217, 74, 74, 0.04);
}
.wl-error {
    font-size: 13px;
    color: var(--wl-error);
    min-height: 4px;
    line-height: 1.4;
}
.wl-error--global {
    text-align: center;
    margin: 4px 0;
    min-height: 0;
}

.wl-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.wl-form__submit {
    margin-top: 0;
    width: 100%;
    padding: 24px 36px;
    font-size: 19px;
    border-radius: 14px;
}

.wl-form-success {
    max-width: 480px;
    margin: 0 auto;
    padding: 28px;
    background: var(--wl-mint-soft);
    border: 1.5px solid var(--wl-mint);
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
}

.wl-cta__alt {
    text-align: center;
    margin-top: 36px;
    color: var(--wl-muted);
    font-size: 15px;
}
.wl-cta__alt a {
    color: var(--wl-text);
    text-decoration: underline;
    text-decoration-color: var(--wl-peach);
    text-underline-offset: 3px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.wl-footer {
    text-align: center;
    padding: 36px 0;
    color: var(--wl-muted);
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE — Tablet
   ===================================================== */
@media (max-width: 1024px) {
    .wl { padding: 0 24px; }
    .wl-slide { padding: 72px 0; }
    .wl-grid-2 { gap: 36px; }
    .wl-h2 { font-size: 36px; }
    .wl-h2--soft { font-size: 26px; }
    .wl-h2__accent { font-size: 46px; }
    .wl-hero__title { font-size: 44px; }
    .wl-hero__title-sub { font-size: 28px; }
    .wl-hero__title-cursive { font-size: 48px; }
    .wl-mc__hanzi { font-size: 56px; }
    .wl-total__num { font-size: 52px; }
}

/* =====================================================
   RESPONSIVE — Mobile
   ===================================================== */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .wl { padding: 0 18px; }
    .wl-slide { padding: 56px 0; }

    .wl-grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wl-h2 { font-size: 28px; }
    .wl-h2--soft { font-size: 22px; }
    .wl-h2__accent { font-size: 36px; }
    .wl-h2--center { margin-bottom: 18px; }

    /* Hero */
    .wl-hero__inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
    .wl-hero__title { font-size: 32px; }
    .wl-hero__title-sub { font-size: 22px; }
    .wl-hero__title-cursive { font-size: 36px; }
    .wl-hero__badge { top: 16px; right: 16px; font-size: 22px; padding: 6px 14px; }
    .wl-btn { padding: 14px 28px; font-size: 16px; }

    /* About — фото в 2 столбца на мобиле */
    .wl-about__photos { grid-template-columns: 1fr 1fr; }
    .wl-about__photos img { height: 120px; }

    /* Schedule */
    .wl-schedule__columns { grid-template-columns: 1fr; gap: 4px; }
    .wl-schedule__totals { flex-direction: column; gap: 16px; }
    .wl-total__num { font-size: 48px; }

    /* Food */
    .wl-food__head { grid-template-columns: 1fr; gap: 24px; }
    .wl-food__pills { flex-direction: row; flex-wrap: wrap; }
    .wl-food__pills .wl-pill { font-size: 16px; padding: 10px 18px; }
    .wl-food__photo-wrap img { aspect-ratio: 4 / 3; }

    /* Master classes — текст всегда после фото на мобиле */
    .wl-mc--mirror .wl-mc__text  { order: 2; }
    .wl-mc--mirror .wl-mc__photo { order: 1; }
    .wl-mc__hanzi { font-size: 44px; }
    .wl-mc__head .wl-pill { font-size: 16px; padding: 8px 18px; }
    .wl-mc__photo img,
    .wl-taiji__photo img,
    .wl-pricing__photo img,
    .wl-team__photo {
        max-height: 420px;
    }

    /* Team */
    .wl-team__grid { grid-template-columns: 1fr; gap: 32px; }

    /* Testimonials — 2x2 на мобиле */
    .wl-testimonials__grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Pricing */
    .wl-prices { flex-direction: column; }
    .wl-price { width: 100%; }

    /* Form */
    .wl-form { max-width: 100%; }
    .wl-form__submit { padding: 18px 28px; font-size: 17px; border-radius: 12px; }
}

/* =====================================================
   RESPONSIVE — small phones
   ===================================================== */
@media (max-width: 380px) {
    .wl { padding: 0 14px; }
    .wl-h2 { font-size: 24px; }
    .wl-h2__accent { font-size: 30px; }
    .wl-hero__title { font-size: 28px; }
    .wl-mc__hanzi { font-size: 36px; }
    .wl-testimonials__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   STICKY CTA (плавающая кнопка к форме поверх слайдов)
   ===================================================== */
.wl-sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    padding: 14px 28px;
    background: var(--wl-peach);
    color: var(--wl-text);
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wl-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.wl-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 640px) {
    .wl-sticky-cta {
        left: 50%;
        right: auto;
        bottom: 16px;
        padding: 10px 22px;
        font-size: 14px;
        white-space: nowrap;
        /* translateX(-50%) центрирует по горизонтали; translateY — slide-up анимация */
        transform: translateX(-50%) translateY(8px);
    }
    .wl-sticky-cta.is-visible {
        transform: translateX(-50%) translateY(0);
    }
    .wl-sticky-cta:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* =====================================================
   COUNTDOWN TIMER (slide-блок между картинками презентации)
   ===================================================== */
.wl-timer-slide {
    background: var(--wl-bg);
    padding: 72px 24px;
    text-align: center;
    color: var(--wl-text);
}
.wl-timer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.wl-timer__title {
    font-family: "Caveat", "Marck Script", cursive;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
}
.wl-timer__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
}
.wl-timer__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wl-timer__num {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1;
    padding: 18px 22px;
    background: var(--wl-mint);
    border-radius: 16px;
    min-width: 120px;
    box-shadow: var(--wl-shadow-sm);
    font-variant-numeric: tabular-nums;
}
.wl-timer__label {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--wl-muted);
    letter-spacing: 0.02em;
}
.wl-timer__sep {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    padding: 22px 0 0;
    color: rgba(31, 31, 31, 0.45);
}

@media (max-width: 1024px) {
    .wl-timer-slide { padding: 56px 20px; }
    .wl-timer__title { font-size: 52px; margin-bottom: 32px; }
    .wl-timer__num { font-size: 56px; padding: 14px 16px; min-width: 96px; }
    .wl-timer__sep { font-size: 52px; padding-top: 18px; }
}

@media (max-width: 640px) {
    .wl-timer-slide { padding: 40px 12px; }
    .wl-timer__title { font-size: 40px; margin-bottom: 24px; }
    .wl-timer__grid { gap: 6px; }
    .wl-timer__num {
        font-size: 38px;
        padding: 10px 8px;
        min-width: 62px;
        border-radius: 12px;
    }
    .wl-timer__label { font-size: 12px; margin-top: 8px; }
    .wl-timer__sep { font-size: 32px; padding-top: 14px; }
}

@media (max-width: 380px) {
    .wl-timer__num { font-size: 30px; min-width: 52px; padding: 8px 6px; }
    .wl-timer__sep { font-size: 26px; padding-top: 12px; }
    .wl-timer__label { font-size: 11px; }
}

/* =====================================================
   Print
   ===================================================== */
@media print {
    .wl-btn, .wl-form, .wl-form-success { display: none; }
    .wl-slide { padding: 32px 0; page-break-inside: avoid; }
}

/* =====================================================
   Reduce motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .wl-btn { transition: none; }
}
