/* Thai Charm — Nghi lễ (sáng, animation) */
:root {
    --rl-bg: #faf9f7;
    --rl-bg-2: #ffffff;
    --rl-surface: #ffffff;
    --rl-elevated: #f5f3ef;
    --rl-gold: #a67c1a;
    --rl-gold-deep: #7d5e14;
    --rl-gold-light: #d4b86a;
    --rl-gold-soft: #9a6b12;
    --rl-gold-glow: rgba(166, 124, 26, 0.2);
    --rl-text: #12100e;
    --rl-muted: #524c44;
    --rl-hairline: rgba(26, 24, 20, 0.08);
    --rl-shadow: 0 1px 2px rgba(26, 24, 20, 0.04), 0 8px 24px rgba(26, 24, 20, 0.06);
    --rl-shadow-hover: 0 4px 12px rgba(26, 24, 20, 0.06), 0 16px 40px rgba(26, 24, 20, 0.08);
    --rl-radius-outer: 1.75rem;
    --rl-radius-inner: calc(var(--rl-radius-outer) - 0.4rem);
    --rl-ease: cubic-bezier(0.32, 0.72, 0, 1);
    --rl-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
    --rl-font: 'Outfit', system-ui, sans-serif;
    --rl-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--rl-font);
    background: var(--rl-bg);
    color: var(--rl-text);
    line-height: 1.55;
    overflow-x: hidden;
}

/* Animated ambient background */
.rl-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.rl-ambient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 8% -8%, rgba(212, 184, 106, 0.12), transparent 52%),
        radial-gradient(ellipse 70% 55% at 96% 4%, rgba(245, 240, 230, 0.9), transparent 48%),
        linear-gradient(180deg, var(--rl-bg-2) 0%, var(--rl-bg) 50%, #f0eeea 100%);
    animation: rlMeshShift 18s ease-in-out infinite alternate;
}
@keyframes rlMeshShift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(8deg) brightness(1.03); }
}
.rl-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}
.rl-orb-1 {
    width: 340px; height: 340px;
    background: rgba(245, 200, 100, 0.35);
    top: 8%; right: -5%;
    animation: rlOrbFloat1 14s ease-in-out infinite;
}
.rl-orb-2 {
    width: 260px; height: 260px;
    background: rgba(255, 220, 150, 0.4);
    bottom: 20%; left: -8%;
    animation: rlOrbFloat2 11s ease-in-out infinite;
}
.rl-orb-3 {
    width: 180px; height: 180px;
    background: rgba(201, 148, 26, 0.2);
    top: 45%; left: 40%;
    animation: rlOrbFloat3 16s ease-in-out infinite;
}
@keyframes rlOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 25px) scale(1.08); }
}
@keyframes rlOrbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -20px) scale(1.05); }
}
@keyframes rlOrbFloat3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(-15px, 30px); opacity: 0.65; }
}
.rl-sparkle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--rl-gold);
    box-shadow: 0 0 12px var(--rl-gold-glow);
    animation: rlSparkle 3s ease-in-out infinite;
}
.rl-sparkle:nth-of-type(1) { top: 18%; left: 12%; animation-delay: 0s; }
.rl-sparkle:nth-of-type(2) { top: 32%; right: 18%; animation-delay: 0.8s; }
.rl-sparkle:nth-of-type(3) { bottom: 28%; left: 22%; animation-delay: 1.6s; }
.rl-sparkle:nth-of-type(4) { top: 55%; right: 30%; animation-delay: 2.2s; }
@keyframes rlSparkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.4); }
}

.rl-wrap, .rb-page {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

/* Scroll reveal */
.rl-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--rl-ease), transform 0.85s var(--rl-ease);
}
.rl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.rl-reveal-d1 { transition-delay: 0.08s; }
.rl-reveal-d2 { transition-delay: 0.16s; }
.rl-reveal-d3 { transition-delay: 0.24s; }
.rl-reveal-d4 { transition-delay: 0.32s; }

/* Nav */
.rl-nav {
    position: sticky;
    top: 1rem;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem auto 2.5rem;
    max-width: 720px;
    padding: 0.65rem 1rem 0.65rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(120, 90, 40, 0.08), inset 0 1px 0 rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.4s var(--rl-ease), transform 0.4s var(--rl-ease);
}
.rl-nav.is-scrolled {
    box-shadow: 0 12px 40px rgba(120, 90, 40, 0.12);
    transform: translateY(-2px);
}
.rl-nav a {
    color: var(--rl-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.35s var(--rl-ease), transform 0.3s var(--rl-ease);
}
.rl-nav a:hover { color: var(--rl-gold-deep); transform: translateY(-1px); }
.rl-nav a.is-active { color: var(--rl-gold-deep); font-weight: 600; }
.rl-nav-brand {
    font-family: var(--rl-display);
    font-weight: 600;
    color: var(--rl-text);
    font-size: 1.05rem;
    background: linear-gradient(120deg, var(--rl-gold-deep), var(--rl-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.rl-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0 3.5rem;
    min-height: min(82dvh, 680px);
    align-items: center;
}
@media (min-width: 768px) {
    .rl-hero { grid-template-columns: 1.05fr 0.95fr; padding: 2.5rem 0 4.5rem; }
}
.rl-hero-copy { position: relative; }
.rl-hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rl-gold-deep);
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
    border: 1px solid var(--rl-hairline);
    animation: rlTagPulse 3s ease-in-out infinite;
}
@keyframes rlTagPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(201, 148, 26, 0); }
    50% { box-shadow: 0 0 20px rgba(201, 148, 26, 0.2); }
}
.rl-hero h1 {
    font-family: var(--rl-display);
    font-size: clamp(2.35rem, 5.5vw, 3.6rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.rl-hero h1 .rl-shine {
    background: linear-gradient(110deg, var(--rl-text) 0%, var(--rl-gold-deep) 35%, var(--rl-gold) 50%, var(--rl-gold-deep) 65%, var(--rl-text) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rlTitleShine 5s linear infinite;
}
@keyframes rlTitleShine {
    to { background-position: 220% center; }
}
.rl-hero-lead {
    color: var(--rl-muted);
    font-size: 1.05rem;
    max-width: 44ch;
    margin-bottom: 1.75rem;
}
.rl-hero-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.rl-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--rl-hairline);
    color: var(--rl-text);
    box-shadow: 0 4px 16px rgba(120, 90, 40, 0.06);
    transition: transform 0.4s var(--rl-spring), box-shadow 0.4s var(--rl-ease), border-color 0.3s;
}
.rl-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 90, 40, 0.1);
    border-color: var(--rl-gold);
}
a.rl-pill { text-decoration: none; color: inherit; }
.rl-pill--muted {
    background: rgba(248, 244, 236, 0.65);
    color: var(--rl-muted);
    border-style: dashed;
    box-shadow: none;
}
.rl-pill--muted:hover {
    transform: none;
    border-color: var(--rl-hairline);
    box-shadow: none;
}
.rl-pill--family {
    background: rgba(166, 124, 26, 0.1);
    color: var(--rl-gold-deep, #7d5e14);
    border-color: rgba(166, 124, 26, 0.28);
    font-weight: 600;
}

.rl-hero-visual {
    padding: 0.5rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255, 249, 242, 0.7));
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
    position: relative;
    overflow: hidden;
    animation: rlCardFloat 6s ease-in-out infinite;
}
@keyframes rlCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.rl-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.7) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: rlShineSweep 4s ease-in-out infinite;
}
@keyframes rlShineSweep {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}
.rl-hero-visual-inner {
    position: relative;
    border-radius: var(--rl-radius-inner);
    background: linear-gradient(160deg, #fffefb 0%, #fff5e6 100%);
    padding: 1.75rem;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.rl-countdown-wrap { position: relative; }
.rl-countdown-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--rl-gold);
    border-right-color: rgba(201, 148, 26, 0.3);
    animation: rlRingSpin 8s linear infinite;
    opacity: 0.5;
}
@keyframes rlRingSpin { to { transform: rotate(360deg); } }
.rl-countdown {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--rl-gold-deep);
    font-variant-numeric: tabular-nums;
    animation: rlCountPulse 2.5s ease-in-out infinite;
}
@keyframes rlCountPulse {
    0%, 100% { text-shadow: 0 0 0 rgba(201, 148, 26, 0); }
    50% { text-shadow: 0 0 24px rgba(201, 148, 26, 0.35); }
}
.rl-countdown-label {
    font-size: 0.78rem;
    color: var(--rl-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Flow */
.rl-flow { padding: 2.5rem 0 3.5rem; }
.rl-flow-lead {
    font-size: 0.92rem;
    color: var(--rl-muted);
    line-height: 1.55;
    margin: -0.75rem 0 1.35rem;
    max-width: 42rem;
}
.rl-flow h2, .rl-section h2 {
    font-family: var(--rl-display);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    margin-bottom: 1.5rem;
    color: var(--rl-text);
}
.rl-flow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .rl-flow-grid { grid-template-columns: repeat(4, 1fr); }
}
.rl-flow-card {
    padding: 0.45rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--rl-hairline);
    transition: transform 0.55s var(--rl-spring), box-shadow 0.5s var(--rl-ease), border-color 0.4s;
}
.rl-flow-card:hover {
    transform: perspective(900px) rotateX(var(--rl-tilt-x, 0deg)) rotateY(var(--rl-tilt-y, 0deg)) translateY(-6px) scale(1.02);
    box-shadow: var(--rl-shadow-hover);
    border-color: rgba(201, 148, 26, 0.4);
}
.rl-flow-card-inner {
    padding: 1.2rem 1.15rem;
    border-radius: calc(1.25rem - 0.35rem);
    background: var(--rl-surface);
    min-height: 148px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.rl-flow-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--rl-gold);
    margin-bottom: 0.55rem;
}
.rl-flow-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; }
.rl-flow-card p { font-size: 0.82rem; color: var(--rl-muted); line-height: 1.45; }

/* Flow journey — đường quanh co + runner */
.rl-flow-path-board {
    position: relative;
    height: clamp(13rem, 40vw, 17rem);
    margin-bottom: 2rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(165deg, rgba(255, 252, 247, 0.98), rgba(248, 242, 230, 0.92));
    border: 1px solid rgba(201, 148, 26, 0.18);
    box-shadow: var(--rl-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}
.rl-flow-path-board::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(232, 184, 74, 0.08), transparent 55%);
    pointer-events: none;
    animation: rlPathGlow 4s ease-in-out infinite alternate;
}
@keyframes rlPathGlow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}
.rl-flow-nodes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
    z-index: 2;
}
.rl-flow-node {
    position: absolute;
    width: 0;
    height: 0;
    list-style: none;
    color: var(--rl-muted);
    font-size: 0.68rem;
    line-height: 1.25;
    z-index: 2;
    transition: color 0.4s var(--rl-ease);
}
.rl-flow-node-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    background: #fff;
    border: 2px solid var(--rl-hairline);
    box-shadow: 0 3px 12px rgba(26, 22, 18, 0.08);
    transform: translate(-50%, -50%);
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.4s var(--rl-spring);
}
.rl-flow-node-label {
    position: absolute;
    left: 50%;
    top: 1.2rem;
    transform: translateX(-50%);
    width: 6.25rem;
    max-width: 24vw;
    font-weight: 600;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.rl-flow-node.is-label-up .rl-flow-node-label {
    top: auto;
    bottom: 1.2rem;
}
.rl-flow-node.is-label-right .rl-flow-node-label {
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    width: 5.5rem;
}
.rl-flow-node.is-label-left .rl-flow-node-label {
    left: auto;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    width: 5.5rem;
}
.rl-flow-node.is-label-right.is-label-up .rl-flow-node-label,
.rl-flow-node.is-label-left.is-label-up .rl-flow-node-label {
    top: 50%;
    bottom: auto;
}
.rl-flow-node.is-current { color: var(--rl-gold-deep); }
.rl-flow-node.is-current .rl-flow-node-dot {
    transform: translate(-50%, -50%) scale(1.08);
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(201, 148, 26, 0.15), 0 6px 18px rgba(201, 148, 26, 0.35);
    animation: rbStepPulse 2s ease-in-out infinite;
}
.rl-flow-node.is-done .rl-flow-node-dot {
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    border-color: transparent;
    color: #fff;
}
.rl-flow-card.is-flow-active {
    border-color: rgba(201, 148, 26, 0.55);
    box-shadow: 0 0 0 1px rgba(201, 148, 26, 0.2), var(--rl-shadow-hover);
}
.rl-flow-card.is-flow-active .rl-flow-num {
    animation: rlTagPulse 1.5s ease-in-out infinite;
}

/* Path runner (chấm vàng chạy trên đường) */
.rl-path-runner {
    position: absolute;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff7e0, #e8b84a 45%, #c9941a);
    box-shadow: 0 0 0 4px rgba(201, 148, 26, 0.2), 0 0 16px rgba(232, 184, 74, 0.65);
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: left 0.55s var(--rl-ease), top 0.55s var(--rl-ease), opacity 0.3s;
}
.rb-path-board.is-path-animated .rl-path-runner {
    animation: rlRunnerPulse 1.8s ease-in-out infinite;
}
@keyframes rlRunnerPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201, 148, 26, 0.2), 0 0 16px rgba(232, 184, 74, 0.65); }
    50% { box-shadow: 0 0 0 7px rgba(201, 148, 26, 0.1), 0 0 22px rgba(232, 184, 74, 0.85); }
}

/* Tiến trình tra cứu — nâng cấp motion */
.rb-path-board--live {
    box-shadow: var(--rl-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.rb-path-board.is-path-animated .rb-path-fill {
    filter: drop-shadow(0 0 6px rgba(201, 148, 26, 0.35));
}
.rb-path-board.is-path-animated .rb-path-node {
    animation: rbNodePop 0.55s var(--rl-spring) both;
    animation-delay: calc(var(--rl-node-i, 0) * 0.08s + 0.2s);
}
@keyframes rbNodePop {
    from { opacity: 0; }
    to { opacity: 1; }
}
.rb-path-board.is-path-animated .rb-path-dot {
    animation: rbDotPop 0.55s var(--rl-spring) both;
    animation-delay: calc(var(--rl-node-i, 0) * 0.08s + 0.2s);
}
@keyframes rbDotPop {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.rb-path-board.is-path-animated .rb-path-node.is-current .rb-path-dot {
    animation: rbStepPulse 2s ease-in-out infinite, rbDotPop 0.55s var(--rl-spring) both;
}

/* Card tilt + filter motion */
.rl-ritual-card,
.rl-flow-card {
    transform: perspective(900px) rotateX(var(--rl-tilt-x, 0deg)) rotateY(var(--rl-tilt-y, 0deg));
    will-change: transform;
}
.rl-ritual-card.is-filter-out {
    opacity: 0;
    transform: perspective(900px) rotateX(0) rotateY(0) scale(0.94) translateY(8px);
    pointer-events: none;
}
.rl-ritual-card.is-filter-in {
    animation: rlCardFilterIn 0.45s var(--rl-spring) both;
}
@keyframes rlCardFilterIn {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Slot bar shimmer */
.rl-slot-bar__fill.is-animated {
    position: relative;
    overflow: hidden;
}
.rl-slot-bar__fill.is-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: rlSlotShine 1.8s ease-out 1;
}
@keyframes rlSlotShine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* Ripple nút */
.rl-ripple {
    position: absolute;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    animation: rlRipple 0.65s ease-out forwards;
}
@keyframes rlRipple {
    to { transform: scale(18); opacity: 0; }
}

/* Sparkle bổ sung */
.rl-sparkle:nth-of-type(5) { top: 72%; left: 8%; animation-delay: 1.1s; }
.rl-sparkle:nth-of-type(6) { top: 8%; right: 8%; animation-delay: 2.8s; }

/* FAQ mở mượt hơn */
.rl-faq-item.is-open {
    border-color: rgba(201, 148, 26, 0.35);
    box-shadow: 0 8px 24px rgba(201, 148, 26, 0.08);
}
.rl-faq-item.is-open .rl-faq-q { color: var(--rl-gold-deep); }

/* Countdown tick */
.rl-countdown.is-past { color: var(--rl-muted); animation: none; }

/* Copy btn feedback */
.rb-copy-btn.is-copied,
.dpay-copy.is-copied {
    background: rgba(22, 101, 52, 0.12);
    border-color: #15803d;
    color: #15803d;
}

/* Bento rituals */
.rl-section { padding: 2rem 0 3rem; }
.rl-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}
@media (min-width: 768px) {
    .rl-bento { grid-template-columns: repeat(2, 1fr); }
    .rl-bento .rl-ritual-card:first-child { grid-column: span 2; }
    .rl-bento .rl-ritual-card:first-child .rl-ritual-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.25rem;
    }
    .rl-bento .rl-ritual-card:first-child .rl-ritual-title { flex: 1 1 200px; }
    .rl-bento .rl-ritual-card:first-child .rl-open-book { flex: 0 0 auto; min-width: 180px; }
}
.rl-ritual-card {
    padding: 0.5rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255, 248, 238, 0.8));
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
    transition: transform 0.55s var(--rl-spring), box-shadow 0.5s var(--rl-ease), border-color 0.4s;
    position: relative;
    overflow: hidden;
}
.rl-ritual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--rl-ease);
    pointer-events: none;
}
.rl-ritual-card:hover {
    transform: perspective(900px) rotateX(var(--rl-tilt-x, 0deg)) rotateY(var(--rl-tilt-y, 0deg)) translateY(-5px);
    box-shadow: var(--rl-shadow-hover);
    border-color: rgba(201, 148, 26, 0.45);
}
.rl-ritual-card:hover::after { transform: translateX(120%); }
.rl-ritual-inner {
    position: relative;
    border-radius: var(--rl-radius-inner);
    background: var(--rl-surface);
    padding: 1.4rem 1.45rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.rl-ritual-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.rl-ritual-stt {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--rl-gold-deep);
    letter-spacing: 0.1em;
    padding: 0.25rem 0.55rem;
    border-radius: 8px;
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
}
.rl-ritual-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    white-space: nowrap;
}
.rl-ritual-title {
    font-family: var(--rl-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
}
.rl-ritual-desc { font-size: 0.9rem; color: var(--rl-muted); flex: 1; }
.rl-ritual-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
    width: fit-content;
}
.rl-ritual-badge-muted {
    color: #524c44;
    background: #ebe6dc;
}
.rb-transfer-err { color: #b91c1c; font-size: 0.85rem; margin-top: 0.5rem; }
.rl-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Buttons */
.rl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-surface);
    color: var(--rl-text);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--rl-spring), box-shadow 0.4s var(--rl-ease), border-color 0.3s;
}
.rl-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--rl-ease);
}
.rl-btn:hover::before { transform: translateX(100%); }
.rl-btn:active { transform: scale(0.97); }
.rl-btn-primary {
    background: linear-gradient(135deg, #e8b84a 0%, #c9941a 45%, #b07d14 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(176, 125, 20, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.rl-btn-primary:hover {
    box-shadow: 0 12px 32px rgba(176, 125, 20, 0.45);
    transform: translateY(-2px);
}
.rl-btn-block { width: 100%; }

/* Modal */
.rl-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(42, 34, 24, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s var(--rl-ease);
}
.rl-modal-backdrop.is-open {
    display: flex;
    opacity: 1;
}
@media (min-width: 640px) {
    .rl-modal-backdrop { align-items: center; }
}
.rl-modal {
    width: 100%;
    max-width: 520px;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 0.5rem;
    border-radius: var(--rl-radius-outer);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 32px 80px rgba(120, 90, 40, 0.2);
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    transition: transform 0.55s var(--rl-spring), opacity 0.45s var(--rl-ease);
}
.rl-modal-backdrop.is-open .rl-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.rl-modal-inner {
    background: var(--rl-surface);
    border-radius: var(--rl-radius-inner);
    padding: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.rl-modal h3 {
    font-family: var(--rl-display);
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}
.rl-form { display: grid; gap: 0.85rem; margin-top: 1rem; }
.rl-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--rl-muted);
}
.rl-form input, .rl-form select, .rl-form textarea {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-elevated);
    color: var(--rl-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.rl-form input:focus, .rl-form textarea:focus {
    outline: none;
    border-color: var(--rl-gold);
    box-shadow: 0 0 0 3px var(--rl-gold-soft);
}
.rl-pay-options { display: grid; gap: 0.5rem; border: none; }
.rl-pay-opt {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.8rem;
    border-radius: 14px;
    border: 1px solid var(--rl-hairline);
    cursor: pointer;
    background: var(--rl-elevated);
    transition: border-color 0.35s, background 0.35s, transform 0.3s var(--rl-spring);
}
.rl-pay-opt:hover { transform: translateX(3px); }
.rl-pay-opt:has(input:checked) {
    border-color: var(--rl-gold);
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
    box-shadow: 0 4px 16px rgba(201, 148, 26, 0.12);
}
.rl-pay-opt input { margin-top: 0.2rem; accent-color: var(--rl-gold); flex-shrink: 0; }
.rl-pay-opt strong { display: block; font-size: 0.9rem; }
.rl-pay-opt span { font-size: 0.78rem; color: var(--rl-muted); }
.rl-pay-opt.is-recommended,
.rl-pay-single.is-recommended {
    border-color: rgba(166, 124, 26, 0.45);
    background: linear-gradient(135deg, rgba(255, 252, 245, 0.95), rgba(250, 244, 228, 0.9));
    box-shadow: 0 0 0 1px rgba(166, 124, 26, 0.12);
}
.rl-pay-hints {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}
.rl-pay-hint {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--rl-muted);
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(241, 245, 249, 0.85);
}
.rl-pay-hint--wallet_ok {
    color: #166534;
    background: rgba(22, 163, 74, 0.1);
}
.rl-pay-hint--installment,
.rl-pay-hint--wallet_installment {
    color: #92400e;
    background: rgba(245, 158, 11, 0.1);
}
.rl-modal-hold {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(166, 124, 26, 0.22);
    background: linear-gradient(135deg, rgba(255, 252, 245, 0.95), rgba(250, 244, 228, 0.88));
    font-size: 0.84rem;
    color: var(--rl-text);
}
.rl-modal-hold.is-expired {
    border-color: rgba(185, 28, 28, 0.25);
    background: rgba(254, 242, 242, 0.9);
    color: #991b1b;
}
.rl-modal-hold__icon { font-size: 1rem; }
.rl-modal-hold strong {
    font-variant-numeric: tabular-nums;
    color: var(--rl-gold-deep, #a67c1a);
}
.rl-family-section { margin-bottom: 0.75rem; }
.rl-family-intro {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--rl-radius-inner, 0.75rem);
    border: 1px solid rgba(166, 124, 26, 0.22);
    background: linear-gradient(135deg, rgba(166, 124, 26, 0.07), rgba(255, 255, 255, 0.95));
}
.rl-family-intro__eyebrow {
    margin: 0 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-gold-deep, #7d5e14);
}
.rl-family-intro__title {
    margin: 0 0 0.55rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--rl-text, #12100e);
}
.rl-family-intro__steps {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--rl-muted, #524c44);
}
.rl-family-intro__steps li + li { margin-top: 0.35rem; }
.rl-family-intro__steps strong { color: var(--rl-text, #12100e); font-weight: 600; }
.rl-family-count {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--rl-radius-inner, 0.75rem);
    border: 1px solid var(--rl-hairline, rgba(14, 17, 23, 0.08));
    background: var(--rl-elevated, #fff);
}
.rl-family-count__label {
    margin: 0 0 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rl-text, #12100e);
}
.rl-family-count__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.rl-family-count__btn {
    flex: 1 1 auto;
    min-width: 4.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(166, 124, 26, 0.35);
    background: rgba(166, 124, 26, 0.04);
    color: var(--rl-gold-deep, #7d5e14);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.rl-family-count__btn:hover {
    background: rgba(166, 124, 26, 0.1);
    border-color: rgba(166, 124, 26, 0.5);
}
.rl-family-count__btn.is-active {
    background: var(--rl-gold-deep, #7d5e14);
    border-color: var(--rl-gold-deep, #7d5e14);
    color: #fff;
}
.rl-family-count__hint {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--rl-muted, #524c44);
}
.rl-family-count__hint strong { color: var(--rl-text, #12100e); font-weight: 600; }
.rl-family-members {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.rl-family-member {
    padding: 0.9rem 1rem;
    border-radius: var(--rl-radius-inner, 0.75rem);
    border: 1px solid var(--rl-hairline, rgba(14, 17, 23, 0.08));
    background: var(--rl-bg-2, #fafbfc);
}
.rl-family-member__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}
.rl-family-member__title {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rl-gold-deep, #6b4f0f);
}
.rl-family-remove {
    border: none;
    background: transparent;
    color: var(--rl-muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    border-radius: 0.35rem;
}
.rl-family-remove:hover { background: rgba(185, 28, 28, 0.08); color: #b91c1c; }
.rl-family-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.65rem;
}
.rl-family-hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--rl-muted);
}
.rl-pay-single {
    padding: 0.65rem 0;
    color: var(--rl-text);
}
.rl-pay-single strong { display: block; font-size: 0.9rem; }
.rl-pay-single span { display: block; font-size: 0.78rem; color: var(--rl-muted); margin-top: 0.15rem; }
.rl-pay-options.is-single legend {
    font-size: 0.78rem;
    color: var(--rl-muted);
    font-weight: 500;
    margin-bottom: 0.15rem;
}
.rl-pay-summary { margin-top: 0.25rem; }
.rl-pay-summary-title {
    font-size: 0.82rem;
    color: var(--rl-muted);
    margin-bottom: 0.45rem;
}
.rl-pay-summary-card {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-elevated);
    display: grid;
    gap: 0.65rem;
}
.rl-pay-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.88rem;
}
.rl-pay-summary-k { font-weight: 600; color: var(--rl-text); }
.rl-pay-summary-v { color: var(--rl-muted); text-align: right; }
.rl-pay-installment-hint {
    margin-top: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--rl-muted);
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
}
.rl-pay-note { color: var(--rl-gold-deep); font-weight: 500; }
.rl-modal-close {
    float: right;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--rl-elevated);
    border: 1px solid var(--rl-hairline);
    color: var(--rl-muted);
    font-size: 1.35rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s var(--rl-spring), background 0.3s;
}
.rl-modal-close:hover { transform: rotate(90deg); background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08)); }
.rl-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--rl-muted);
    background: rgba(255,255,255,0.7);
    border-radius: 1.25rem;
    border: 1px dashed var(--rl-hairline);
}
.rl-footer {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--rl-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--rl-hairline);
}
.rl-footer a { color: var(--rl-gold-deep); text-decoration: none; font-weight: 500; }

/* Booking track (ritual_booking.php) */
.rb-page { max-width: 720px; }
.rb-nav-links { display: flex; gap: 1.25rem; align-items: center; }
.rb-footer { margin-top: 2rem; }
.rb-lookup {
    display: grid;
    gap: 2rem;
    padding: 1rem 0 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .rb-lookup { grid-template-columns: 1fr 0.95fr; gap: 2.5rem; padding: 2rem 0 3rem; }
}
.rb-lookup-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rl-gold-deep);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
}
.rb-lookup-title {
    font-family: var(--rl-display);
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.rb-lookup-lead {
    color: var(--rl-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.rb-lookup-tips {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--rl-muted);
}
.rb-lookup-tips li {
    padding-left: 1.15rem;
    position: relative;
}
.rb-lookup-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rl-gold);
}
.rb-lookup-tips a { color: var(--rl-gold-deep); font-weight: 600; text-decoration: none; }
.rb-lookup-tips a:hover { text-decoration: underline; }
.rb-lookup-card { margin: 0; }
.rb-form {
    display: grid;
    gap: 1rem;
}
.rb-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-muted);
}
.rb-form input,
.rb-form textarea {
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-elevated);
    color: var(--rl-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.rb-form input:focus,
.rb-form textarea:focus {
    outline: none;
    border-color: var(--rl-gold);
    box-shadow: 0 0 0 3px var(--rl-gold-soft);
}
.rb-field label { font-size: 0.82rem; font-weight: 600; color: var(--rl-muted); margin-bottom: 0.35rem; display: block; }
.rb-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-elevated);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.rb-input-wrap:focus-within {
    border-color: var(--rl-gold);
    box-shadow: 0 0 0 3px var(--rl-gold-soft);
}
.rb-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-family: inherit;
    color: var(--rl-text);
}
.rb-input-wrap input:focus { outline: none; box-shadow: none; }
.rb-input-icon {
    font-size: 0.95rem;
    color: var(--rl-gold-deep);
    opacity: 0.75;
    flex-shrink: 0;
}
.rb-error-panel {
    text-align: center;
    padding: 3rem 1.5rem;
    margin: 2rem 0;
    border-radius: var(--rl-radius-outer);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(185, 28, 28, 0.15);
    box-shadow: var(--rl-shadow);
}
.rb-error-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
}
.rb-error-title {
    font-family: var(--rl-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.rb-error-msg { color: #b91c1c; margin-bottom: 1.25rem; }
.rb-error-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.rb-toast {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid rgba(21, 128, 61, 0.2);
    color: #166534;
    font-size: 0.9rem;
}
.rb-toast-icon {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: #15803d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.rb-card { margin-bottom: 1rem; }
.rb-shell {
    padding: 0.45rem;
    border-radius: var(--rl-radius-outer);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.rb-card-inner {
    padding: 1.35rem;
    border-radius: var(--rl-radius-inner);
    background: var(--rl-surface);
}
.rb-h1 {
    font-family: var(--rl-display);
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.rb-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rl-gold-deep);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.rb-summary { margin-bottom: 1.5rem; }
.rb-summary-inner { padding: 1.5rem; }
.rb-summary-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.rb-summary-main { flex: 1; min-width: 0; }
.rb-status-pill {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    line-height: 1.35;
}
.rb-status-pill--completed,
.rb-status-pill--ritual_done {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}
.rb-status-pill--cancelled {
    background: rgba(185, 28, 28, 0.08);
    color: #b91c1c;
}
.rb-status-pill--pending_payment,
.rb-status-pill--partial_paid {
    background: rgba(234, 179, 8, 0.12);
    color: #a16207;
}
.rb-status-pill--shipping_ready,
.rb-status-pill--inbound_received {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}
.rb-progress-ring {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
}
.rb-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.rb-progress-bg {
    fill: none;
    stroke: #ebe6dc;
    stroke-width: 3;
}
.rb-progress-fill {
    fill: none;
    stroke: var(--rl-gold);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s var(--rl-ease);
}
.rb-progress-label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
}
.rb-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}
.rb-meta-chip {
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    background: var(--rl-elevated);
    border: 1px solid var(--rl-hairline);
    min-width: 7rem;
}
.rb-meta-chip--highlight {
    background: linear-gradient(135deg, rgba(255,249,242,0.95), rgba(232,184,74,0.12));
    border-color: rgba(201, 148, 26, 0.35);
}
.rb-meta-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rl-muted);
    margin-bottom: 0.15rem;
}
.rb-meta-chip strong {
    font-size: 0.92rem;
    color: var(--rl-text);
}
.rb-summary-note {
    font-size: 0.88rem;
    color: var(--rl-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--rl-hairline);
    line-height: 1.5;
}
.rb-tabs {
    display: flex;
    gap: 0.45rem;
    margin: 0 0 1.25rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
}
.rb-tab {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rl-muted);
    cursor: pointer;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.rb-tab:hover { color: var(--rl-text); background: rgba(201, 148, 26, 0.06); }
.rb-tab.is-active {
    color: var(--rl-gold-deep);
    background: linear-gradient(180deg, #fff9f2, #fffdf8);
    box-shadow: 0 4px 14px rgba(120, 90, 40, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.rb-tab-badge {
    display: inline-block;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(201, 148, 26, 0.14);
    color: var(--rl-gold-deep);
}
.rb-tab-panel { display: none; }
.rb-tab-panel.is-active { display: block; }
.rb-transfer-teaser {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
    margin-top: 0.5rem;
    padding: 1rem 1.15rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(135deg, rgba(201, 148, 26, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px dashed rgba(201, 148, 26, 0.35);
}
.rb-transfer-teaser-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    background: rgba(201, 148, 26, 0.12);
    flex-shrink: 0;
}
.rb-transfer-teaser-title {
    font-weight: 700;
    color: var(--rl-text);
    margin-bottom: 0.15rem;
}
.rb-transfer-teaser-btn {
    margin-left: auto;
    white-space: nowrap;
}
.rb-transfer-intro {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.rb-transfer-intro-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    background: rgba(201, 148, 26, 0.12);
    flex-shrink: 0;
}
.rb-transfer-notes {
    margin: 0.25rem 0 1rem;
    padding-left: 1.1rem;
    color: var(--rl-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}
.rb-transfer-notes li + li { margin-top: 0.35rem; }
.rb-info-card--queue {
    flex-direction: column;
    gap: 0.85rem;
    border-color: rgba(201, 148, 26, 0.32);
    background: linear-gradient(165deg, rgba(255, 252, 247, 0.98), rgba(255, 255, 255, 0.92));
}
.rb-info-card--queue-pending { border-style: dashed; }
.rb-queue-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem 1rem;
}
.rb-queue-head h2 {
    font-family: var(--rl-display);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}
.rb-queue-hero {
    font-size: 0.92rem;
    color: var(--rl-text);
    line-height: 1.5;
}
.rb-queue-hero strong { color: var(--rl-gold-deep); }
.rb-queue-now {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(201, 148, 26, 0.12);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    white-space: nowrap;
}
.rb-queue-hint {
    font-size: 0.86rem;
    color: var(--rl-muted);
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: var(--rl-elevated);
    border: 1px solid var(--rl-hairline);
}
.rb-queue-stages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}
.rb-queue-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--rl-hairline);
    font-size: 0.84rem;
}
.rb-queue-stage-label { color: var(--rl-text); font-weight: 500; }
.rb-queue-stage-ahead {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rl-muted);
    text-align: right;
    white-space: nowrap;
}
.rb-queue-stage.is-current {
    border-color: rgba(201, 148, 26, 0.45);
    box-shadow: 0 0 0 2px rgba(201, 148, 26, 0.1);
    background: #fff9f2;
}
.rb-queue-stage.is-current .rb-queue-stage-ahead { color: var(--rl-gold-deep); }
.rb-queue-stage--solo { margin-top: 0.15rem; }
.rb-queue-stage.is-done { opacity: 0.72; }
.rb-queue-stage.is-done .rb-queue-stage-ahead { color: #15803d; font-weight: 600; }
.rb-timeline-wrap { margin: 1.25rem 0 1.75rem; }
.rb-path-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 1rem;
    margin-bottom: 0.75rem;
}
.rb-section-title {
    font-family: var(--rl-display);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.rb-section-sub {
    font-size: 0.82rem;
    color: var(--rl-muted);
    margin-bottom: 0;
}
.rb-path-board {
    position: relative;
    height: clamp(9.5rem, 28vw, 11.5rem);
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(248, 244, 236, 0.88));
    border: 1px solid var(--rl-hairline);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
}
.rb-path-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.rb-path-track,
.rb-path-fill {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.rb-path-track {
    stroke: rgba(201, 148, 26, 0.14);
    stroke-dasharray: 6 5;
}
.rb-path-fill {
    stroke: #c9941a;
    stroke-dasharray: 100;
    stroke-dashoffset: calc(100 - var(--rb-path-progress, 0));
    transition: stroke-dashoffset 0.85s var(--rl-ease);
    filter: drop-shadow(0 0 4px rgba(201, 148, 26, 0.25));
}
.rb-path-nodes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
}
.rb-path-node {
    position: absolute;
    width: 0;
    height: 0;
    color: var(--rl-muted);
    font-size: 0.68rem;
    line-height: 1.25;
    z-index: 1;
}
.rb-path-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    background: #fff;
    border: 2px solid var(--rl-hairline);
    box-shadow: 0 2px 8px rgba(26, 22, 18, 0.06);
    transform: translate(-50%, -50%);
    transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--rl-spring);
}
.rb-path-label {
    position: absolute;
    left: 50%;
    top: 1.05rem;
    transform: translateX(-50%);
    width: 5.75rem;
    max-width: 22vw;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.rb-path-node.is-label-up .rb-path-label {
    top: auto;
    bottom: 1.05rem;
}
.rb-path-node.is-done { color: var(--rl-text); }
.rb-path-node.is-done .rb-path-dot {
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 148, 26, 0.35);
}
.rb-path-node.is-current { color: var(--rl-gold-deep); font-weight: 600; }
.rb-path-node.is-current .rb-path-dot {
    transform: translate(-50%, -50%) scale(1.08);
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(201, 148, 26, 0.18), 0 4px 14px rgba(201, 148, 26, 0.35);
    animation: rbStepPulse 2s ease-in-out infinite;
}
@keyframes rbStepPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201, 148, 26, 0.18), 0 4px 14px rgba(201, 148, 26, 0.35); }
    50% { box-shadow: 0 0 0 7px rgba(201, 148, 26, 0.08), 0 4px 14px rgba(201, 148, 26, 0.35); }
}
/* legacy timeline (unused) */
.rb-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rb-timeline--steps {
    display: grid;
    gap: 0;
    position: relative;
}
.rb-timeline--steps::before {
    content: '';
    position: absolute;
    left: 1.15rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--rl-gold) 0%, #ebe6dc 100%);
    opacity: 0.5;
}
.rb-timeline-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.5rem 0.75rem 0;
    position: relative;
    color: var(--rl-muted);
    font-size: 0.9rem;
    transition: transform 0.45s var(--rl-spring), color 0.35s;
}
.rb-timeline-item.is-done { color: var(--rl-text); }
.rb-timeline-item.is-current {
    color: var(--rl-gold-deep);
    font-weight: 600;
}
.rb-timeline-item.is-current .rb-timeline-num {
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(201, 148, 26, 0.2);
    animation: rbStepPulse 2s ease-in-out infinite;
}
.rb-timeline-num {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--rl-elevated);
    border: 2px solid var(--rl-hairline);
    flex-shrink: 0;
    z-index: 1;
    transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.rb-timeline-item.is-done .rb-timeline-num {
    background: linear-gradient(135deg, #e8b84a, #c9941a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 148, 26, 0.35);
}
.rb-timeline-label { flex: 1; }
.rb-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--rl-radius-outer);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
}
.rb-info-card h2 {
    font-family: var(--rl-display);
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}
.rb-info-card p { font-size: 0.9rem; color: var(--rl-muted); line-height: 1.55; }
.rb-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--rl-elevated);
}
.rb-info-card--wait .rb-info-icon { background: rgba(234, 179, 8, 0.12); }
.rb-info-card--pay .rb-info-icon { background: rgba(59, 130, 246, 0.1); }
.rb-info-card--appt .rb-info-icon { background: rgba(201, 148, 26, 0.12); }
.rb-info-card--done .rb-info-icon { background: rgba(21, 128, 61, 0.1); }
.rb-info-card--online .rb-info-icon { background: rgba(168, 85, 247, 0.1); }
.rb-info-card--received .rb-info-icon { background: rgba(21, 128, 61, 0.1); }
.rb-info-card--ship {
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.rb-info-card--ship .rb-ship-block {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid var(--rl-hairline);
}
.rb-info-card--ship .rb-ship-block:last-child { border-bottom: none; }
.rb-info-card--transfer {
    flex-direction: column;
    gap: 0.75rem;
}
.rb-pay-body { flex: 1; }
.rb-pay-amount {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    margin: 0.35rem 0 0.5rem;
    font-variant-numeric: tabular-nums;
}
.rb-shell.rl-reveal.is-visible {
    animation: rbCardIn 0.65s var(--rl-ease) both;
}
@keyframes rbCardIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.rb-code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0.5rem 0;
}
.rb-code {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--rl-gold-deep);
    font-variant-numeric: tabular-nums;
    margin: 0;
}
.rb-code--stt {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    color: var(--rl-text);
    letter-spacing: 0.02em;
}
.rb-transfer-code {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    word-break: break-all;
}
.rb-copy-btn {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-surface);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}
.rb-copy-btn:hover { border-color: var(--rl-gold); background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08)); }
.rb-copy-btn.is-copied { background: #15803d; border-color: #15803d; color: #fff; }
.rb-muted { color: var(--rl-muted); font-size: 0.88rem; }
.rb-qr-wrap { margin-top: 1.25rem; text-align: center; }
.rb-qr-wrap img {
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    box-shadow: var(--rl-shadow);
    transition: transform 0.4s var(--rl-spring), box-shadow 0.4s;
}
.rb-qr-wrap img:hover {
    transform: scale(1.02);
    box-shadow: var(--rl-shadow-hover);
}
.rb-bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.88rem;
}
.rb-bank-grid dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rl-muted);
    margin-bottom: 0.15rem;
}
.rb-bank-grid dd { font-weight: 600; color: var(--rl-text); margin: 0; }
.rb-bank-full { grid-column: 1 / -1; }
.rb-appt {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    margin: 0.25rem 0;
}
.rb-appt--address { font-size: 1rem; line-height: 1.55; }
.rb-transfer-err { color: #b91c1c; font-size: 0.85rem; margin-top: 0.5rem; }
.rb-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rl-hairline);
}
.rb-photo-item { text-align: center; max-width: 120px; }
.rb-photo-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--rl-hairline);
    background: #fff;
    transition: transform 0.35s var(--rl-spring);
}
.rb-photo-item a:hover img { transform: scale(1.04); }
.rb-photo-item span { display: block; font-size: 0.72rem; color: var(--rl-muted); margin-top: 0.35rem; line-height: 1.3; }
@media (max-width: 520px) {
    .rb-summary-top { flex-direction: column-reverse; align-items: stretch; }
    .rb-progress-ring { align-self: center; }
    .rb-bank-grid { grid-template-columns: 1fr; }
    .rb-info-card { flex-direction: column; }
    .rb-transfer-teaser { flex-direction: column; align-items: stretch; }
    .rb-transfer-teaser-btn { margin-left: 0; width: 100%; }
    .rb-tabs { border-radius: 16px; }
    .rb-tab { font-size: 0.82rem; padding-inline: 0.55rem; }
    .rb-path-board { height: 12rem; }
    .rb-path-label,
    .rl-flow-node-label {
        width: 4.25rem;
        max-width: 26vw;
        font-size: 0.6rem;
    }
    .rl-flow-node.is-label-left .rl-flow-node-label,
    .rl-flow-node.is-label-right .rl-flow-node-label {
        width: 4rem;
    }
    .rb-path-dot {
        width: 1.65rem;
        height: 1.65rem;
        font-size: 0.62rem;
    }
    .rl-flow-node-dot {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.65rem;
    }
}

.rl-photo-fields { margin: 0.5rem 0 0.75rem; padding: 0.85rem; border-radius: 12px; background: var(--rl-elevated); border: 1px solid var(--rl-hairline); }
.rl-photo-fields.is-kuman { border-color: rgba(166, 124, 26, 0.28); background: linear-gradient(135deg, rgba(166, 124, 26, 0.04), var(--rl-elevated)); }
.rl-photo-head { font-size: 0.82rem; font-weight: 600; color: var(--rl-gold-deep); margin-bottom: 0.65rem; }
.rl-photo-head--pending { color: var(--rl-muted); font-weight: 500; }
.rl-photo-grid { display: grid; gap: 0.75rem; }
.rl-member-photos.is-kuman .rl-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 520px) {
    .rl-member-photos.is-kuman .rl-photo-grid { grid-template-columns: 1fr; }
}
.rl-photo-upload { margin-bottom: 0; }
.rl-photo-upload:last-child { margin-bottom: 0; }
.rl-photo-label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.35rem; }
.rl-photo-label span { color: #b91c1c; }
.rl-photo-file { width: 100%; font-size: 0.85rem; padding: 0.35rem 0; border: none; background: transparent; }
.rl-photo-status { font-size: 0.78rem; color: var(--rl-muted); min-height: 1.1em; }
.rl-photo-preview { margin-top: 0.45rem; }
.rl-photo-preview img { width: 88px; height: 88px; object-fit: cover; border-radius: 10px; border: 1px solid var(--rl-hairline); }
.rb-admin-photos { display: flex; gap: 6px; flex-wrap: wrap; }
.rb-admin-photos a { display: block; }
.rb-admin-photos img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid var(--rl-hairline); }

/* Filter bar */
.rl-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
}
.rl-filter-btn {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-surface);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-muted);
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.rl-filter-btn.is-active,
.rl-filter-btn:hover {
    border-color: var(--rl-gold);
    color: var(--rl-gold-deep);
    background: var(--rl-gold-tint, rgba(166, 124, 26, 0.08));
}
.rl-filter-sort { margin-left: auto; }
.rl-filter-sort select {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--rl-hairline);
    background: var(--rl-surface);
    font-family: inherit;
    font-size: 0.82rem;
    color: var(--rl-text);
}
.rl-filter-empty {
    text-align: center;
    color: var(--rl-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Slot progress */
.rl-slot-bar-wrap { margin-top: 0.15rem; }
.rl-slot-bar {
    height: 6px;
    border-radius: 999px;
    background: #ebe6dc;
    overflow: hidden;
}
.rl-slot-bar__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rl-gold-light), var(--rl-gold));
    transition: width 0.5s var(--rl-ease);
}
.rl-slot-bar-wrap.is-full .rl-slot-bar__fill {
    background: #9ca3af;
}
.rl-slot-bar__text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rl-gold-deep);
    margin-top: 0.35rem;
}
.rl-slot-bar-wrap.is-full .rl-slot-bar__text { color: #6b7280; }

/* Card cover + actions */
.rl-ritual-cover {
    display: block;
    margin: -0.5rem -0.5rem 0;
    border-radius: var(--rl-radius-outer) var(--rl-radius-outer) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.rl-ritual-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rl-ritual-title a {
    color: inherit;
    text-decoration: none;
}
.rl-ritual-title a:hover { color: var(--rl-gold-deep); }
.rl-ritual-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.rl-ritual-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}
.rl-ritual-actions .rl-btn { flex: 1 1 auto; min-width: 7rem; }

/* FAQ */
.rl-faq-section { padding-top: 1rem; }
.rl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 720px;
}
.rl-faq-item {
    border: 1px solid var(--rl-hairline);
    border-radius: 1rem;
    background: var(--rl-surface);
    overflow: hidden;
}
.rl-faq-q {
    width: 100%;
    text-align: left;
    padding: 1rem 1.15rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rl-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.rl-faq-q::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--rl-gold);
    flex-shrink: 0;
}
.rl-faq-item.is-open .rl-faq-q::after { content: '−'; }
.rl-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--rl-ease);
}
.rl-faq-item.is-open .rl-faq-a { max-height: 12rem; }
.rl-faq-a p {
    padding: 0 1.15rem 1rem;
    font-size: 0.88rem;
    color: var(--rl-muted);
    line-height: 1.5;
}

/* Subscribe */
.rl-subscribe-section { padding-bottom: 2rem; }
.rl-subscribe-card {
    padding: 1.5rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(145deg, #fffefb, #fff5e6);
    border: 1px solid var(--rl-hairline);
    box-shadow: var(--rl-shadow);
    max-width: 520px;
    position: relative;
    overflow: hidden;
}
.rl-subscribe-card::before {
    content: '';
    position: absolute;
    inset: -50% -30%;
    background: conic-gradient(from 120deg, transparent, rgba(232, 184, 74, 0.12), transparent 40%);
    animation: rlSubscribeGlow 8s linear infinite;
    pointer-events: none;
}
@keyframes rlSubscribeGlow {
    to { transform: rotate(360deg); }
}
.rl-subscribe-card h2 {
    font-family: var(--rl-display);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.rl-subscribe-lead {
    font-size: 0.9rem;
    color: var(--rl-muted);
    margin-bottom: 1rem;
}
.rl-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rl-subscribe-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rl-muted);
}
.rl-subscribe-form input {
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--rl-hairline);
    font-family: inherit;
    font-size: 0.95rem;
}
.rl-subscribe-msg {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
}
.rl-subscribe-msg.is-ok { color: #15803d; }
.rl-subscribe-msg.is-err { color: #b91c1c; }

/* Booking gate — làm mờ trang trước ngày mở đặt lễ */
body.rl-gated {
    overflow-y: auto;
    overflow-x: hidden;
}
.rl-wrap--gated {
    filter: blur(8px) saturate(0.92);
    pointer-events: none;
    user-select: none;
    transition: filter 1.2s ease, transform 1.2s ease, opacity 1s ease;
}
.rl-wrap--gated-plain {
    pointer-events: none;
    user-select: none;
    opacity: 0.55;
    transition: opacity 1s ease, transform 1.2s ease;
}
.rl-wrap--gated-teaser {
    transform: scale(1);
    opacity: 1;
}
.rl-wrap--gated.is-unlocking {
    filter: blur(0) saturate(1);
    transform: scale(1);
    opacity: 1;
}
.rl-wrap--gated-plain.is-unlocking {
    opacity: 1;
}
.rl-early-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: #78580a;
    background: linear-gradient(90deg, #fff8e6, #ffefc4, #fff8e6);
    border-bottom: 1px solid rgba(201, 148, 26, 0.35);
}
.rl-booking-gate {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
    background: rgba(248, 244, 236, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.9s ease, backdrop-filter 0.9s ease;
    opacity: 0;
}
.rl-booking-gate.is-ready {
    animation: rlGateOverlayIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rl-booking-gate-ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.rl-booking-gate-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    animation: rlGateOrbFloat 9s ease-in-out infinite;
}
.rl-booking-gate.is-ready .rl-booking-gate-orb {
    opacity: 1;
    transition: opacity 1.2s ease;
}
.rl-booking-gate-orb--a {
    width: min(42vw, 280px);
    height: min(42vw, 280px);
    top: 12%;
    left: 8%;
    background: radial-gradient(circle, rgba(232, 184, 74, 0.38) 0%, transparent 70%);
    animation-delay: 0s;
}
.rl-booking-gate-orb--b {
    width: min(36vw, 220px);
    height: min(36vw, 220px);
    bottom: 14%;
    right: 6%;
    background: radial-gradient(circle, rgba(255, 220, 140, 0.32) 0%, transparent 68%);
    animation-delay: -3s;
}
.rl-booking-gate-orb--c {
    width: min(28vw, 180px);
    height: min(28vw, 180px);
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201, 148, 26, 0.22) 0%, transparent 72%);
    animation-delay: -5.5s;
}
.rl-booking-gate.is-unlocking {
    opacity: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    pointer-events: none;
}
.rl-booking-gate.is-gone {
    display: none;
}
.rl-booking-gate-card {
    position: relative;
    width: min(100%, 460px);
    max-height: min(92vh, 720px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.75rem 1.5rem;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(160deg, #fffefb 0%, #fff8eb 100%);
    border: 1px solid var(--rl-hairline);
    box-shadow: 0 24px 64px rgba(45, 36, 24, 0.18);
    text-align: center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
}
.rl-booking-gate.is-ready .rl-booking-gate-card {
    animation: rlGateCardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}
.rl-booking-gate-card__shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    overflow: hidden;
}
.rl-booking-gate-card__shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
    transform: skewX(-18deg);
    animation: rlGateCardShine 5.5s ease-in-out infinite;
}
.rl-booking-gate.is-ready .rl-gate-item {
    animation: rlGateItemIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(0.18s + (var(--gate-i, 0) * 0.07s));
}
.rl-gate-title {
    background: linear-gradient(120deg, #3a2a10 0%, #7a5c00 45%, #3a2a10 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rlGateItemIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards, rlGateTitleShimmer 6s ease-in-out infinite;
    animation-delay: calc(0.18s + (var(--gate-i, 1) * 0.07s)), 1.2s;
}
.rl-gate-teaser::before {
    content: '↓';
    display: inline-block;
    margin-right: 0.35rem;
    animation: rlGateTeaserBounce 2s ease-in-out infinite;
}
.rl-booking-gate.is-unlocking .rl-booking-gate-card {
    transform: translateY(24px) scale(0.96);
    opacity: 0;
}
@keyframes rlGateOverlayIn {
    from { opacity: 0; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
}
@keyframes rlGateCardIn {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rlGateItemIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rlGateOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -16px) scale(1.06); }
    66% { transform: translate(-10px, 10px) scale(0.94); }
}
@keyframes rlGateCardShine {
    0%, 78% { left: -60%; opacity: 0; }
    82% { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}
@keyframes rlGateTitleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
@keyframes rlGateTeaserBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(4px); opacity: 1; }
}
.rl-gate-social,
.rl-gate-queue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--rl-muted);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(201, 148, 26, 0.2);
}
.rl-gate-social-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: rlGatePulse 2s ease infinite;
}
@keyframes rlGatePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.rl-gate-teaser-hint {
    font-size: 0.78rem;
    color: var(--rl-muted);
    margin: 0 0 0.75rem;
    opacity: 0.85;
}
.rl-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}
.rl-gate-action-btn {
    font-size: 0.82rem !important;
    padding: 0.5rem 0.85rem !important;
}
.rl-booking-gate-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a6b1f;
    background: rgba(232, 184, 74, 0.18);
    animation: rlGateTagPulse 3s ease-in-out infinite;
}
@keyframes rlGateTagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 184, 74, 0); }
    50% { box-shadow: 0 0 0 6px rgba(232, 184, 74, 0.12); }
}
.rl-booking-gate-card h2 {
    font-family: var(--rl-display);
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--rl-ink);
}
.rl-booking-gate-card h2.rl-gate-title {
    color: transparent;
}
.rl-booking-gate-lead {
    font-size: 0.92rem;
    color: var(--rl-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}
.rl-gate-timer {
    margin: 0 0 1.25rem;
    padding: 1rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(201, 148, 26, 0.22);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.rl-gate-timer.is-urgent {
    border-color: rgba(201, 148, 26, 0.45);
    box-shadow: 0 0 0 0 rgba(232, 184, 74, 0.35);
    animation: rlGateTimerUrgent 2.4s ease-in-out infinite;
}
.rl-gate-timer.is-critical {
    border-color: rgba(220, 100, 40, 0.5);
    animation: rlGateTimerCritical 1.2s ease-in-out infinite;
}
@keyframes rlGateTimerUrgent {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 184, 74, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(232, 184, 74, 0); }
}
@keyframes rlGateTimerCritical {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 100, 40, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(220, 100, 40, 0); }
}
.rl-gate-timer-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-muted);
    margin-bottom: 0.65rem;
}
.rl-gate-timer-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.rl-gate-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.1rem;
    perspective: 320px;
}
.rl-gate-timer-val {
    display: block;
    min-width: 2.6rem;
    padding: 0.45rem 0.35rem;
    border-radius: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: #9a6b00;
    background: linear-gradient(180deg, #fffefb 0%, #fff4dc 100%);
    border: 1px solid rgba(201, 148, 26, 0.28);
    box-shadow: 0 2px 8px rgba(201, 148, 26, 0.12);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}
.rl-gate-timer-val.is-tick {
    animation: rlGateTick 0.35s ease;
}
.rl-gate-timer-val.is-flip {
    animation: rlGateFlip 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes rlGateTick {
    0% { transform: scale(1); }
    40% { transform: scale(1.06); }
    100% { transform: scale(1); }
}
@keyframes rlGateFlip {
    0% { transform: rotateX(0deg); opacity: 1; }
    45% { transform: rotateX(-90deg); opacity: 0.35; }
    100% { transform: rotateX(0deg); opacity: 1; }
}
.rl-gate-timer-sep {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(154, 107, 0, 0.45);
    margin-top: -1rem;
    user-select: none;
    animation: rlGateSepBlink 1.4s ease-in-out infinite;
}
@keyframes rlGateSepBlink {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}
.rl-gate-timer.is-open .rl-gate-timer-sep {
    animation: none;
}
.rl-gate-timer-key {
    margin-top: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rl-muted);
}
.rl-gate-timer.is-open .rl-gate-timer-grid {
    display: none;
}
.rl-gate-timer.is-open .rl-gate-timer-label {
    color: #15803d;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
}
.rl-booking-gate-form {
    text-align: left;
    margin-top: 0.25rem;
}
.rl-booking-gate-fallback {
    font-size: 0.9rem;
    color: var(--rl-muted);
    margin: 0.5rem 0 0;
}
.rl-booking-gate-foot {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--rl-muted);
}
.rl-booking-gate-foot a {
    color: #9a6b00;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Promo countdown banner (landing / shop) */
.rl-promo-banner {
    position: sticky;
    top: 0;
    z-index: 800;
    background: linear-gradient(90deg, #2a2218 0%, #4a3820 50%, #2a2218 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.rl-promo-banner__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.55rem 1rem;
    color: #f8f4ec;
    text-decoration: none;
    font-size: 0.88rem;
}
.rl-promo-banner__link:hover { color: #fff; }
.rl-promo-banner__tag {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.25);
    color: #e8c547;
}
.rl-promo-banner__text strong { color: #e8c547; }
.rl-promo-banner__cd {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #ffd966;
}
.rl-promo-banner__cta {
    font-weight: 700;
    color: #e8c547;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .rl-promo-banner__link {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
        font-size: 0.82rem;
    }
}

/* Waitlist modal */
.rl-waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.rl-waitlist-modal[hidden] { display: none; }
.rl-waitlist-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 10, 0.45);
    backdrop-filter: blur(4px);
}
.rl-waitlist-card {
    position: relative;
    width: min(100%, 400px);
    padding: 1.5rem;
    border-radius: var(--rl-radius-outer);
    background: #fffefb;
    border: 1px solid var(--rl-hairline);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.rl-waitlist-close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--rl-muted);
}
.rl-waitlist-card h3 {
    font-family: var(--rl-display);
    margin-bottom: 0.35rem;
}
.rl-waitlist-lead {
    font-size: 0.9rem;
    color: var(--rl-muted);
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .rl-booking-gate {
        align-items: flex-end;
        padding: 0;
    }
    .rl-booking-gate-card {
        width: 100%;
        max-height: 94vh;
        border-radius: 20px 20px 0 0;
        padding: 1.25rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom));
    }
    .rl-gate-timer-val {
        min-width: 2.35rem;
        font-size: 1.45rem;
        padding: 0.5rem 0.25rem;
    }
    .rl-gate-timer-unit { min-width: 2.75rem; }
    .rl-booking-gate-form {
        position: sticky;
        bottom: 0;
        background: linear-gradient(180deg, transparent, #fff8eb 12%);
        padding-top: 0.5rem;
    }
    .rl-gate-actions {
        flex-direction: column;
    }
    .rl-gate-action-btn { width: 100%; }
}

/* Seal break — mở phong ấn */
.rl-seal-break {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.rl-seal-break.is-active {
    opacity: 1;
    visibility: visible;
}
.rl-seal-break__veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(20, 14, 6, 0.72) 0%, rgba(8, 6, 3, 0.92) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.rl-seal-break.is-active .rl-seal-break__veil { opacity: 1; }
.rl-seal-break__particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(232, 184, 74, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 48% 50%, rgba(255, 220, 120, 0.2) 0%, transparent 55%);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.rl-seal-break.is-breaking .rl-seal-break__particles {
    opacity: 1;
    transform: scale(1.4);
}
.rl-seal-break__seal {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.rl-seal-break.is-active .rl-seal-break__seal {
    transform: scale(1);
    opacity: 1;
}
.rl-seal-break.is-breaking .rl-seal-break__seal {
    animation: rlSealShake 0.55s ease-in-out;
}
.rl-seal-break.is-done .rl-seal-break__seal {
    transform: scale(1.15);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.45s ease;
}
.rl-seal-break__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(201, 148, 26, 0.85);
    box-shadow: 0 0 0 8px rgba(201, 148, 26, 0.12), inset 0 0 24px rgba(232, 184, 74, 0.25);
    background: radial-gradient(circle at 35% 30%, #8b1a1a 0%, #5c0f0f 55%, #3d0808 100%);
}
.rl-seal-break__glyph {
    position: relative;
    font-family: "Noto Serif SC", "Songti SC", serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 220, 160, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.rl-seal-break__crack {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 230, 150, 0.9), transparent);
    transform-origin: top center;
    opacity: 0;
    z-index: 3;
}
.rl-seal-break__crack--a { left: 42%; top: 18%; transform: rotate(-18deg); }
.rl-seal-break__crack--b { left: 54%; top: 22%; transform: rotate(24deg); }
.rl-seal-break__crack--c { left: 48%; top: 12%; transform: rotate(6deg); }
.rl-seal-break.is-breaking .rl-seal-break__crack {
    height: 70px;
    opacity: 1;
    transition: height 0.35s ease 0.1s, opacity 0.2s ease;
}
.rl-seal-break__title,
.rl-seal-break__sub {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.rl-seal-break__title {
    font-family: var(--rl-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff8eb;
    margin: 1.25rem 0 0.35rem;
    text-shadow: 0 2px 16px rgba(232, 184, 74, 0.45);
}
.rl-seal-break__sub {
    font-size: 0.92rem;
    color: rgba(255, 248, 235, 0.78);
    margin: 0;
}
.rl-seal-break.is-breaking .rl-seal-break__title,
.rl-seal-break.is-breaking .rl-seal-break__sub {
    opacity: 1;
    transform: translateY(0);
}
@keyframes rlSealShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.04) rotate(-3deg); }
    40% { transform: scale(0.98) rotate(3deg); }
    60% { transform: scale(1.06) rotate(-2deg); }
    80% { transform: scale(0.96) rotate(2deg); }
}

/* Khối thống kê cổng chờ */
.rl-gate-stats {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 148, 26, 0.18);
}
.rl-gate-stats__title {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-muted);
    text-align: center;
}
.rl-gate-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
    gap: 0.65rem;
}
.rl-gate-stats__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 0.4rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(255, 243, 220, 0.55));
    border: 1px solid rgba(201, 148, 26, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rl-gate-stats__value.is-bump {
    animation: rlGateStatBump 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes rlGateStatBump {
    0% { transform: scale(1); color: var(--rl-text, #3a2a10); }
    40% { transform: scale(1.14); color: #9a6b00; }
    100% { transform: scale(1); }
}
.rl-gate-stats__value {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--rl-text, #3a2a10);
    font-variant-numeric: tabular-nums;
}
.rl-gate-stats__label {
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    color: var(--rl-muted);
}

/* Ticker đặt hàng ảo FOMO */
.rl-fomo-feed {
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    z-index: 9000;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.45rem;
    max-width: min(340px, calc(100vw - 1.5rem));
    pointer-events: none;
}
.rl-fomo-feed__item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 254, 251, 0.96);
    border: 1px solid rgba(201, 148, 26, 0.28);
    box-shadow: 0 8px 28px rgba(45, 36, 24, 0.14);
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--rl-ink);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.rl-fomo-feed__item.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.rl-fomo-feed__item.is-out {
    opacity: 0;
    transform: translateX(-12px);
}
.rl-fomo-feed__icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.2;
}
.rl-fomo-feed__text strong {
    color: var(--rl-gold-deep);
    font-weight: 600;
}
.rl-fomo-feed__item.is-real {
    border-color: rgba(34, 197, 94, 0.35);
}
.rl-fomo-feed__item.is-booking {
    border-color: rgba(201, 148, 26, 0.42);
    box-shadow: 0 8px 28px rgba(201, 148, 26, 0.12);
}
.rl-fomo-feed__item.is-booking.is-visible {
    animation: rl-fomo-booking-pulse 2.4s ease-out 1;
}
@keyframes rl-fomo-booking-pulse {
    0% { box-shadow: 0 8px 28px rgba(201, 148, 26, 0.28); }
    100% { box-shadow: 0 8px 28px rgba(45, 36, 24, 0.14); }
}
.rl-fomo-feed__disclaimer {
    margin: 0;
    padding: 0.35rem 0.55rem;
    font-size: 0.68rem;
    line-height: 1.4;
    color: var(--rl-muted);
    opacity: 0.85;
    order: 99;
}
.rl-hold-banner {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff8eb, #fff3dc);
    border: 1px solid rgba(201, 148, 26, 0.35);
    font-size: 0.88rem;
    color: var(--rl-ink);
}
.rl-hold-banner.is-expired {
    background: #fef2f2;
    border-color: rgba(220, 38, 38, 0.35);
    color: #991b1b;
}
.rl-hold-banner__icon { font-size: 1.1rem; }
.rl-hold-banner strong {
    color: var(--rl-gold-deep);
    font-variant-numeric: tabular-nums;
}
.rb-pay-body .rl-hold-banner {
    margin: 0 0 0.85rem;
}
.rl-gate-pay {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(160deg, #fffdf8, #fff6e8);
    border: 1px solid rgba(201, 148, 26, 0.28);
    text-align: center;
}
.rl-gate-pay.is-revealing {
    animation: rlGatePayReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes rlGatePayReveal {
    from { transform: translateY(12px) scale(0.98); opacity: 0.6; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.rl-booking-gate-form .rl-btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rl-booking-gate-form .rl-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: rlGateBtnShine 3.5s ease-in-out infinite;
}
.rl-booking-gate-form .rl-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(201, 148, 26, 0.28);
}
@keyframes rlGateBtnShine {
    0%, 72% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}
.rl-gate-pay-qr.is-revealed img {
    animation: rlGateQrPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes rlGateQrPop {
    from { transform: scale(0.88); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .rl-booking-gate,
    .rl-booking-gate-card,
    .rl-booking-gate.is-ready .rl-gate-item,
    .rl-gate-title,
    .rl-booking-gate-tag,
    .rl-booking-gate-orb,
    .rl-booking-gate-card__shine::after,
    .rl-gate-teaser::before,
    .rl-gate-timer-sep,
    .rl-gate-timer.is-urgent,
    .rl-gate-timer.is-critical,
    .rl-booking-gate-form .rl-btn-primary::after {
        animation: none !important;
        transition: none !important;
    }
    .rl-booking-gate,
    .rl-booking-gate-card {
        opacity: 1;
        transform: none;
    }
}
.rl-gate-pay-badge {
    font-size: 0.95rem;
    margin: 0 0 0.65rem;
    color: var(--rl-ink);
}
.rl-gate-pay-badge strong {
    color: var(--rl-gold-deep);
    font-size: 1.15rem;
}
.rl-gate-pay-lead {
    font-size: 0.88rem;
    color: var(--rl-muted);
    margin: 0 0 0.75rem;
    line-height: 1.45;
}
.rl-gate-pay-amount {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--rl-gold-deep);
    margin: 0 0 0.85rem;
    font-variant-numeric: tabular-nums;
}
.rl-gate-pay-qr img {
    border-radius: 12px;
    border: 1px solid var(--rl-hairline);
    background: #fff;
}
.rl-gate-pay-bank {
    text-align: left;
    margin: 0.75rem 0 0;
}
.rl-gate-pay-code {
    justify-content: center;
    margin: 0.65rem auto 0;
    max-width: 100%;
}
.rl-gate-pay-qr-hint {
    margin: 0 0 0.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    font-size: 0.84rem;
    color: var(--rl-muted);
    background: rgba(255, 255, 255, 0.75);
    border: 1px dashed rgba(201, 148, 26, 0.35);
}
.rl-gate-pay.is-active .rl-gate-pay-amount {
    animation: rlGatePulse 2s ease infinite;
}
.rl-gate-migration-hint {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #b45309;
}
    font-size: 0.8rem;
    color: var(--rl-muted);
    margin: 0.75rem 0 0;
}
@media (max-width: 640px) {
    .rl-fomo-feed {
        left: 0.65rem;
        right: 0.65rem;
        max-width: none;
    }
    .rl-seal-break__seal { width: 100px; height: 100px; }
    .rl-seal-break__glyph { font-size: 2.5rem; }
}

/* Detail page */
.rl-detail-wrap { padding-top: 1rem; }
.rl-detail {
    max-width: 720px;
    margin: 0 auto;
}
.rl-detail-cover {
    border-radius: var(--rl-radius-outer);
    overflow: hidden;
    margin-bottom: 1.25rem;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--rl-hairline);
}
.rl-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rl-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.rl-detail-title {
    font-family: var(--rl-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 0.65rem;
}
.rl-detail-lead {
    color: var(--rl-muted);
    font-size: 1.02rem;
    margin-bottom: 1rem;
}
.rl-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.rl-pill--price {
    font-weight: 700;
    color: var(--rl-gold-deep);
}
.rl-detail-body {
    margin: 1.5rem 0;
}
.rl-detail-body h2 {
    font-family: var(--rl-display);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}
.rl-detail-prose {
    font-size: 0.95rem;
    color: var(--rl-muted);
    line-height: 1.65;
}
.rl-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.rl-detail-faq-mini {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rl-hairline);
}
.rl-detail-faq-mini h2 {
    font-family: var(--rl-display);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}
.rl-detail-faq-more {
    margin-top: 0.85rem;
    font-size: 0.88rem;
}
.rl-detail-faq-more a { color: var(--rl-gold-deep); font-weight: 600; }
.rl-modal-price {
    color: var(--rl-gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem 0.65rem;
}
.rl-modal-price__now {
    font-size: 1.15rem;
    color: var(--rl-gold-deep);
}
.rl-modal-price__was {
    font-size: 0.88rem;
    color: var(--rl-muted);
    text-decoration: line-through;
    font-weight: 500;
}
.rl-modal-price__sub {
    font-size: 0.82rem;
    color: var(--rl-muted);
    font-weight: 500;
}
.rl-price-breakdown {
    margin: 0 0 0.85rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 251, 242, 0.9);
    border: 1px solid rgba(201, 148, 26, 0.18);
}
.rl-price-breakdown__line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    padding: 0.18rem 0;
    color: var(--rl-ink);
}
.rl-price-breakdown__line strong {
    color: var(--rl-gold-deep);
    font-weight: 600;
}
.rl-price-breakdown__line.is-discount strong { color: #15803d; }
.rl-price-breakdown__line.is-total {
    margin-top: 0.25rem;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(201, 148, 26, 0.25);
    font-weight: 600;
}
.rl-discount-row {
    margin: 0 0 0.85rem;
}
.rl-discount-label {
    display: block;
    font-size: 0.82rem;
    color: var(--rl-muted);
    margin-bottom: 0.35rem;
}
.rl-discount-input {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.rl-discount-input input {
    flex: 1 1 140px;
    min-width: 0;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid var(--rl-hairline);
    font: inherit;
}
.rl-discount-msg {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
}
.rl-discount-msg.is-ok { color: #15803d; }
.rl-discount-msg.is-fail { color: #b91c1c; }
.rl-pay-summary-line.is-discount { color: #15803d; }
.rl-pay-summary-line.is-total { font-weight: 600; }
.rl-form-error {
    color: #b91c1c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.rl-pay-options legend {
    font-size: 0.82rem;
    color: var(--rl-muted);
    margin-bottom: 0.35rem;
}

.rb-info-card--notify .rb-notify-body { flex: 1; min-width: 0; }
.rb-notify-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
    flex-wrap: wrap;
}
.rb-notify-tab {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--rl-hairline);
    background: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    cursor: pointer;
}
.rb-notify-tab.is-active {
    border-color: var(--rl-gold);
    background: rgba(201, 148, 26, 0.1);
    font-weight: 600;
}
.rb-notify-form { margin-top: 0.5rem; }
.rb-notify-form label { display: block; margin-bottom: 0.65rem; font-size: 0.88rem; }
.rb-notify-form input {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--rl-hairline);
    border-radius: 8px;
}
.rb-notify-status--ok {
    margin-top: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
}
.rb-notify-msg {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
}
.rb-notify-msg.is-ok { background: rgba(21, 128, 61, 0.08); color: #166534; }
.rb-notify-msg.is-error { background: rgba(185, 28, 28, 0.08); color: #b91c1c; }
.rb-notify-sms-pay { margin-top: 0.75rem; }

/* Màn hình thành công sau đặt lễ */
.rb-success {
    position: relative;
    margin: 0 auto 1.25rem;
    max-width: 640px;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: var(--rl-radius-outer, 1.1rem);
    border: 1px solid rgba(166, 124, 26, 0.28);
    background: linear-gradient(165deg, #fffefb 0%, #fff6e8 100%);
    box-shadow: 0 18px 48px rgba(45, 36, 24, 0.1);
    text-align: center;
    overflow: hidden;
}
.rb-success__glow {
    position: absolute;
    inset: -40% auto auto 50%;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 148, 26, 0.18), transparent 70%);
    pointer-events: none;
}
.rb-success__icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.65rem;
    border-radius: 999px;
    background: #15803d;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(21, 128, 61, 0.28);
}
.rb-success__eyebrow {
    position: relative;
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-gold-deep, #7d5e14);
}
.rb-success__title {
    position: relative;
    margin: 0 0 0.45rem;
    font-family: var(--rl-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.35rem, 4vw, 1.65rem);
    line-height: 1.2;
    color: var(--rl-text, #12100e);
}
.rb-success__lead {
    position: relative;
    margin: 0 auto 1rem;
    max-width: 34rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--rl-muted, #524c44);
}
.rb-success__codes { position: relative; text-align: left; }
.rb-success-code {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--rl-hairline, rgba(14, 17, 23, 0.08));
}
.rb-success-code--group {
    border-color: rgba(166, 124, 26, 0.32);
    background: linear-gradient(135deg, rgba(166, 124, 26, 0.06), rgba(255, 255, 255, 0.92));
}
.rb-success-code__label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rl-muted);
    margin-bottom: 0.35rem;
}
.rb-success-code__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.rb-success-code__value {
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    color: var(--rl-gold-deep, #7d5e14);
}
.rb-success-code__hint {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    color: var(--rl-muted);
}
.rb-success-members {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.rb-success-members__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--rl-hairline);
}
.rb-success-members__seq {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rl-muted);
}
.rb-success-members__ref {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.rb-success-members__ref code {
    font-size: 0.82rem;
    font-weight: 600;
}
.rb-success-copy--sm {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--rl-gold-deep);
    font-size: 0.95rem;
    padding: 0.15rem 0.25rem;
}
.rb-success__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Chia sẻ đặt lễ */
.rb-share-strip {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8eb, #fff3dc);
    border: 1px solid rgba(201, 148, 26, 0.28);
    text-align: center;
}
.rb-share-strip__lead {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: var(--rl-muted);
}
.rb-share-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}
.rb-share-card {
    margin-top: 1.5rem;
    padding: 0;
    border-radius: var(--rl-radius-outer);
    background: linear-gradient(165deg, #fffefb 0%, #fff8eb 100%);
    border: 1px solid var(--rl-hairline);
    box-shadow: 0 16px 48px rgba(45, 36, 24, 0.1);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.rb-share-hero {
    height: 200px;
    background:
        linear-gradient(180deg, rgba(18, 14, 10, 0.05) 0%, rgba(18, 14, 10, 0.72) 100%),
        var(--rb-share-bg, url('../images/ritual-share-og-bg.png')) center / cover no-repeat;
}
.rb-share-body {
    padding: 1.25rem 1.5rem 1.5rem;
    position: relative;
}
.rb-share-body .rb-share-cover {
    margin-top: -2.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 12px 32px rgba(45, 36, 24, 0.18);
}
.rb-share-cover {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(201, 148, 26, 0.2);
}
.rb-share-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rb-share-eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rl-gold-deep);
}
.rb-share-title {
    font-family: var(--rl-display);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    margin: 0.5rem 0;
    line-height: 1.3;
}
.rb-share-ritual {
    font-size: 1.05rem;
    color: var(--rl-gold-deep);
    font-weight: 600;
    margin: 0 0 0.35rem;
}
.rb-share-meta, .rb-share-note {
    font-size: 0.88rem;
    color: var(--rl-muted);
    margin: 0.35rem 0;
}
.rb-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.15rem;
}
.rb-auto-transfer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.65rem 0 0;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #166534;
    background: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.18);
}
.rb-pay-poll-note {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: var(--rl-muted);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .rl-reveal { opacity: 1; transform: none; }
}
