/* ===================================================================
   PARABLE CONFERENCE KIDDOS — Landing Page
   Builds on the variables in conference.css (--cream, --gold, etc.)
   =================================================================== */

.k-section-eyebrow {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
}
.k-section-eyebrow--center { text-align: center; }
.k-section-eyebrow--cream { color: var(--yellow); }

.k-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.k-link:hover { color: var(--orange); }

.k-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    box-shadow: 0 6px 0 rgba(0,0,0,0.18);
}
.k-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 0 rgba(0,0,0,0.22);
    background: #f5d75a;
}
.k-btn--large {
    padding: 20px 56px;
    font-size: 17px;
}

/* ---------- HERO ---------- */
.k-hero {
    position: relative;
    min-height: 92vh;
    background: #0a0a14;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
}
.k-hero__bg { position: absolute; inset: 0; z-index: 1; }
.k-hero__bg img,
.k-hero__bg picture {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.k-hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}
.k-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 860px;
    width: 100%;
    text-align: center;
    color: var(--cream);
}
.k-hero__brand {
    display: inline-block;
    margin-bottom: -8px;
    opacity: 0.95;
    transition: opacity 0.2s;
}
.k-hero__brand:hover { opacity: 1; }
.k-hero__brand-logo {
    height: 120px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.k-hero__eyebrow {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0 0 12px;
}
.k-hero__title {
    margin: 0 0 24px;
    line-height: 1;
    text-align: center;
}
.k-hero__title-img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}
@media (max-width: 860px) {
    .k-hero__title-img {
        max-width: 78vw;
    }
}
.k-hero__sub {
    font-family: var(--font);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.55;
    color: var(--cream);
    max-width: 620px;
    margin: 0 auto 32px;
    opacity: 0.95;
}
.k-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    font-family: var(--font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 0 auto 36px;
    opacity: 0.92;
}
.k-hero__meta span {
    display: inline-flex;
    align-items: center;
}
.k-hero__meta span:not(:last-child)::after {
    content: '';
    width: 5px; height: 5px;
    background: var(--yellow);
    border-radius: 50%;
    margin-left: 22px;
}
.k-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.k-hero__days-to-go {
    margin: 0;
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.8;
}
.k-hero__days-to-go:empty { display: none; }
.k-hero__voucher {
    margin: 0;
    max-width: 460px;
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.92;
}
.k-hero__voucher a {
    color: var(--yellow);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.k-hero__voucher a:hover { color: var(--white); }
.k-hero__voucher-sep { opacity: 0.45; margin: 0 6px; }

/* ---------- TICKER ---------- */
/* Override the main conference's -54px overlap — on Kiddos the ticker sits flush */
.k-ticker.ticker--yellow {
    margin-top: 0;
}
.k-ticker .ticker__item--dot { color: var(--orange); padding: 0 4px; }

/* ---------- INTRO ---------- */
.k-intro {
    background: var(--cream);
    color: var(--black);
    padding: 96px 32px;
}
.k-intro__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}
.k-intro__heading {
    font-family: var(--font);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 24px;
    text-transform: none;
}
.k-intro__lead {
    font-family: var(--font);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.65;
    color: var(--black);
    margin: 0 0 22px;
}
.k-intro__note {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.6;
    color: #5a5237;
    padding: 18px 22px;
    background: rgba(213, 178, 96, 0.14);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    margin: 0;
}
.k-intro__mascot {
    text-align: center;
}
.k-intro__mascot img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

/* ---------- ACTIVITIES ---------- */
.k-activities {
    background: var(--peach);
    color: var(--black);
    padding: 110px 32px;
    position: relative;
    overflow: hidden;
}
.k-activities__inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.k-activities__heading {
    font-family: var(--font);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 18px;
    text-transform: none;
    text-align: center;
}
.k-activities__lead {
    font-family: var(--font);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: #4a3408;
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}
.k-activities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.k-activity {
    background: var(--cream);
    border-radius: 18px;
    padding: 32px 28px 30px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 0 rgba(0,0,0,0.06);
}
.k-activity:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgba(0,0,0,0.08);
}
.k-activity__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
}
.k-activity__icon svg { width: 32px; height: 32px; }
.k-activity__title {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--black);
    margin: 0 0 10px;
    text-transform: none;
}
.k-activity__text {
    font-family: var(--font);
    font-size: 14.5px;
    line-height: 1.55;
    color: #5a5237;
    margin: 0;
}
.k-activity__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--orange);
    padding: 5px 10px;
    border-radius: 999px;
}
.k-activity--worship .k-activity__icon { background: rgba(46, 80, 18, 0.15); color: var(--green); }
.k-activity--craft .k-activity__icon { background: rgba(202, 88, 5, 0.15); color: var(--orange); }
.k-activity--drama .k-activity__icon { background: rgba(28, 158, 188, 0.15); color: var(--teal); }
.k-activity--games .k-activity__icon { background: rgba(239, 207, 72, 0.3); color: #8a6b1a; }

.k-activity--featured {
    background: var(--cream);
    box-shadow: 0 6px 0 var(--orange), inset 0 0 0 2px var(--orange);
}
.k-activity--featured:hover { box-shadow: 0 9px 0 var(--orange), inset 0 0 0 2px var(--orange); }

.k-activities__poppy {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 320px;
    pointer-events: none;
    z-index: -1;
}
.k-activities__poppy img { width: 100%; display: block; }

/* ---------- SCHEDULE ---------- */
.k-schedule {
    background: var(--cream);
    color: var(--black);
    padding: 110px 32px;
}
.k-schedule__inner {
    max-width: 1180px;
    margin: 0 auto;
}
.k-schedule__heading {
    font-family: var(--font);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 18px;
    text-transform: none;
}
.k-schedule__lead {
    font-family: var(--font);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: #4a4639;
    max-width: 640px;
    margin: 0 0 48px;
}
.k-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.k-day {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    box-shadow: 0 4px 0 rgba(0,0,0,0.06);
}
.k-day__header {
    background: var(--emerald);
    color: var(--cream);
    padding: 18px 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.k-day__dow {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
}
.k-day__date {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
}
.k-session {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}
.k-session:first-of-type { border-top: none; }
.k-session__label {
    font-family: var(--font);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.k-session__time {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 6px;
}
.k-session__sub {
    font-family: var(--font);
    font-size: 13px;
    /* 500 isn't a loaded DM Sans weight - 400 matches what browsers rendered */
    font-weight: 400;
    line-height: 1.4;
    color: #6b6557;
}
.k-session__sub--note {
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(202, 88, 5, 0.12);
    color: var(--orange);
    font-weight: 700;
    border-radius: 4px;
    align-self: flex-start;
    font-size: 12px;
    letter-spacing: 0.02em;
}

/* ---------- SAFETY ---------- */
.k-safety {
    background: var(--emerald);
    color: var(--cream);
    padding: 110px 32px 96px;
    position: relative;
    overflow: hidden;
}
.k-safety__inner {
    max-width: 1180px;
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
}
.k-safety__heading {
    font-family: var(--font);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin: 0 0 22px;
    text-transform: none;
}
.k-safety__lead {
    font-family: var(--font);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.92;
    margin: 0 0 32px;
}
.k-safety__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 22px;
}
.k-safety__list h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    color: var(--yellow);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.k-safety__list h3::before {
    content: '';
    width: 16px; height: 16px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 4px var(--emerald);
}
.k-safety__list p {
    font-family: var(--font);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.9;
    margin: 0 0 0 26px;
}
.k-safety__poppy {
    text-align: center;
}
.k-safety__poppy img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
}

.k-safety__checkin {
    max-width: 1180px;
    margin: 0 auto;
}
.k-checkin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    background: rgba(0,0,0,0.18);
    border-radius: 22px;
    padding: 40px 36px;
}
.k-checkin__step {
    position: relative;
    padding: 0 0 0 56px;
}
.k-checkin__num {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--emerald);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.k-checkin__step h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    color: var(--cream);
    margin: 6px 0 8px;
    text-transform: none;
    letter-spacing: 0;
}
.k-checkin__step p {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.85;
    margin: 0;
}

/* ---------- VENUE ---------- */
.k-venue {
    background: var(--peach);
    color: var(--black);
    padding: 110px 32px;
}
.k-venue__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.k-venue__heading {
    font-family: var(--font);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 24px;
    text-transform: none;
}
.k-venue__address {
    font-family: var(--font);
    font-style: normal;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--black);
    margin: 0 0 18px;
}
.k-venue__note {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: #4a3408;
    margin: 0 0 28px;
    max-width: 420px;
}
.k-venue__cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    padding: 12px 0;
    border-bottom: 2px solid var(--orange);
    transition: gap 0.2s;
    gap: 6px;
}
.k-venue__cta:hover { gap: 12px; }
.k-venue__map {
    position: relative;
}
.k-venue__map a {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
    transition: transform 0.2s;
}
.k-venue__map a:hover { transform: translateY(-2px); }
.k-venue__map img { width: 100%; height: auto; display: block; }
.k-venue__attribution {
    font-family: var(--font);
    font-size: 10.5px;
    color: #6b6557;
    margin: 10px 0 0;
    text-align: right;
}
.k-venue__attribution a {
    color: #6b6557;
    text-decoration: underline;
}

/* ---------- FAQ ---------- */
.k-faq {
    background: var(--yellow);
    color: var(--black);
    padding: 110px 32px;
}
.k-faq__inner {
    max-width: 880px;
    margin: 0 auto;
}
/* Yellow background needs a darker link colour to be readable */
.k-faq .k-link,
.k-faq .faq__answer-inner a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}
.k-faq .k-link:hover,
.k-faq .faq__answer-inner a:hover {
    color: var(--black);
}
.k-faq__heading {
    font-family: var(--font);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--black);
    margin: 0 0 40px;
    text-transform: none;
    text-align: center;
}

/* ---------- BOTTOM CTA ---------- */
.k-cta {
    background: var(--black);
    color: var(--cream);
    padding: 110px 32px;
    text-align: center;
}
.k-cta__inner { max-width: 720px; margin: 0 auto; }
.k-cta__heading {
    font-family: var(--font);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--cream);
    margin: 0 0 14px;
    text-transform: none;
}
.k-cta__sub {
    font-family: var(--font);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.85;
    margin: 0 0 36px;
}
.k-cta__back {
    margin: 28px 0 0;
    font-family: var(--font);
    font-size: 13px;
    color: var(--cream);
    opacity: 0.7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
    .k-intro,
    .k-activities,
    .k-schedule,
    .k-safety,
    .k-venue,
    .k-faq,
    .k-cta { padding-left: 22px; padding-right: 22px; padding-top: 80px; padding-bottom: 80px; }
    .k-intro__inner,
    .k-safety__inner,
    .k-venue__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .k-intro__mascot img { max-width: 240px; }
    .k-safety__poppy img { max-width: 220px; }
    .k-hero__brand-logo { height: 88px; }
    .k-hero { min-height: auto; padding: 56px 22px 72px; }
    .k-activities__poppy { width: 150px; top: -20px; right: -30px; opacity: 0.6; }
    .k-checkin { padding: 28px 22px; }
}

@media (max-width: 540px) {
    .k-hero__meta span:not(:last-child)::after { display: none; }
    .k-hero__meta { gap: 8px 16px; }
    .k-activities__poppy { display: none; }
}


/* ===================================================================
   ANIMATIONS
   =================================================================== */

/* Fade-up scroll reveal — base hidden state */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger fade-up for children of a grid/list */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
[data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 60ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 260ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 360ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 460ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 560ms; }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 660ms; }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 760ms; }

/* Word-by-word reveal — spans injected by JS */
[data-reveal-words] .k-word {
    opacity: 0;
    display: inline-block;
    transform: translateY(14px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
    will-change: opacity, transform;
}
[data-reveal-words].is-visible .k-word {
    opacity: 1;
    transform: none;
}

/* Register button pulse glow — very subtle, barely there */
@keyframes k-btn-pulse {
    0%, 100% {
        box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18),
                    0 0 0 0 rgba(239, 207, 72, 0);
    }
    50% {
        box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18),
                    0 0 12px 1px rgba(239, 207, 72, 0.18);
    }
}
.k-btn {
    animation: k-btn-pulse 4.2s ease-in-out infinite;
}
/* On hover, pause the pulse so the lift state reads clearly */
.k-btn:hover { animation-play-state: paused; }

/* Confetti particles — created by JS on .k-btn click */
.k-confetti {
    position: fixed;
    width: 10px;
    height: 14px;
    pointer-events: none;
    z-index: 9999;
    border-radius: 2px;
    opacity: 1;
}

/* Reduced-motion: turn animations off respectfully */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-stagger] > *,
    [data-reveal-words] .k-word {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .k-btn { animation: none; }
}

/* ===================================================================
   ACTIVE & CREATIVE KIDS VOUCHERS
   =================================================================== */
.k-vouchers {
    background: var(--emerald);
    color: var(--cream);
    padding: 96px 24px;
}

.k-vouchers__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.k-vouchers__intro {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 32px;
}

.k-vouchers__intro > div {
    flex: 1;
    min-width: 0;
}

.k-vouchers__badge {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.k-vouchers .k-section-eyebrow {
    color: var(--yellow);
}

.k-vouchers__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--cream);
    margin: 4px 0 16px;
}

.k-vouchers__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--cream);
}

.k-vouchers__about p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(250, 249, 232, 0.85);
    margin: 0 0 48px;
}

.k-vouchers__steps-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--yellow);
    margin: 0 0 20px;
}

.k-vouchers__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.k-vouchers__step {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    padding: 28px 24px;
}

.k-vouchers__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--emerald);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 16px;
}

.k-vouchers__step h4 {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--cream);
    margin: 0 0 10px;
}

.k-vouchers__step p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(250, 249, 232, 0.82);
    margin: 0;
}

.k-vouchers__step .k-link {
    color: var(--yellow);
}

.k-vouchers__step .k-link:hover {
    color: var(--white);
}

.k-vouchers__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.k-vouchers__note {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250, 249, 232, 0.72);
    margin: 0;
}

.k-vouchers__note .faq-email-link {
    color: var(--yellow);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .k-vouchers {
        padding: 72px 20px;
    }

    .k-vouchers__intro {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 28px;
    }

    .k-vouchers__steps {
        grid-template-columns: 1fr;
    }
}
