/* ═══════════════════════════════════════════════════
   v6.css — Scrapbook / Lab aesthetic
   Anna Komarevska | English Teacher
═══════════════════════════════════════════════════ */

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

/* ── Variables ── */
:root {
    --teal:     #5DC8D8;
    --teal-dk:  #40B0C1;
    --yellow:   #F5CE4F;
    --pink:     #FFB6C8;
    --pink-dk:  #F4AABF;
    --blue:     #A0C8F0;
    --green:    #A8DBBF;
    --peach:    #FFCBA4;
    --cream:    #F5EDD8;
    --paper:    #FDFAF0;
    --dark:     #2C1B0E;
    --ink:      #1C1C1C;
    --font-head:'Unbounded', sans-serif;
    --font-hand:'Caveat', cursive;
    --font-body:'Inter', sans-serif;
    --ease:     cubic-bezier(0.23, 1, 0.32, 1);
    --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: #fff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Container ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Canvas (cursor sparkles) ── */
#sparkle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav.menu-open {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.1);
}
.nav-in {
    max-width: 1140px;
    margin: 0 auto;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1rem;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    gap: 28px;
    flex: 1;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: #444; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--teal); }

.nav-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 100px;
    padding: 9px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s var(--spring), background 0.2s;
    flex-shrink: 0;
    font-family: var(--font-body);
}
.nav-cta:hover { transform: scale(1.05); background: var(--yellow); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.2s;
}
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav.menu-open .nav-burger span { background: var(--ink); }

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: #fffdf8;
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    animation: slideDown 0.3s var(--ease);
    min-height: calc(100dvh - 62px);
    overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
}
.nav-mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════
   SECTION COMMON
═══════════════════════════════ */
.sec-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.25);
    margin-bottom: 12px;
    display: block;
}
.sec-tag.light { color: rgba(255,255,255,0.55); }
.sec-tag.dark  { color: rgba(0,0,0,0.4); }

.sec-heading {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 32px;
}
.sec-heading.white { color: #fff; }

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D63B73;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--spring), background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(214, 59, 115, 0.3);
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(214, 59, 115, 0.45);
}
.btn-cta:active { transform: translateY(0) scale(0.98); }
.btn-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta.small { padding: 10px 20px; font-size: 0.85rem; }
.btn-cta.full  { width: 100%; justify-content: center; }
.btn-cta.dark  { background: #1a1a1a; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-cta.dark:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* Ripple */
.btn-cta .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: rippleAnim 0.55s linear;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1.5px solid rgba(255,255,255,0.35);
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 2px;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.8); }

/* Pulse ring on hero CTA */
.btn-cta.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    border: 2px solid rgba(214, 59, 115, 0.5);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.35); }
}

/* ═══════════════════════════════
   WAVE DIVIDERS
═══════════════════════════════ */
.wave-bot {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    line-height: 0;
    pointer-events: none;
}
.wave-bot svg {
    width: 100%;
    display: block;
}

/* ═══════════════════════════════
   FLOATING DECORATIONS
═══════════════════════════════ */
.deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

/* ── Hero decos ── */
.d-star-1 {
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    top: 12%;  left: 4%;
    animation: float 5s ease-in-out infinite;
}
.d-star-2 {
    font-size: 1.2rem;
    color: rgba(245,206,79,0.7);
    top: 35%; left: 8%;
    animation: float 7s ease-in-out infinite 1s;
}
.d-star-3 {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.35);
    top: 60%; right: 6%;
    animation: float 6s ease-in-out infinite 2s;
}
.d-abc {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 5rem;
    color: rgba(255,255,255,0.06);
    top: 20%; right: 3%;
    letter-spacing: -3px;
    animation: float 10s ease-in-out infinite 0.5s;
}
.d-ring-1 {
    width: 80px; height: 80px;
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 10%; right: 15%;
    animation: spin-slow 18s linear infinite;
}
.d-ring-2 {
    width: 45px; height: 45px;
    border: 2px solid rgba(245,206,79,0.3);
    border-radius: 50%;
    bottom: 25%; left: 12%;
    animation: spin-slow 12s linear infinite reverse;
}
.d-squiggle {
    top: 75%; left: 2%;
    width: 90px;
    animation: float 8s ease-in-out infinite 3s;
}
/* Washi tapes — Hero */
.d-tape-1 {
    top: 52px; right: 260px;
    width: 88px; height: 22px;
    background: rgba(255,182,200,0.58);
    border-radius: 3px;
    transform: rotate(-14deg);
    background-image: repeating-linear-gradient(90deg,
        transparent 0, transparent 5px,
        rgba(255,255,255,0.22) 5px, rgba(255,255,255,0.22) 6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.d-tape-2 {
    bottom: 235px; left: 28px;
    width: 106px; height: 21px;
    background: rgba(168,219,191,0.62);
    border-radius: 3px;
    transform: rotate(11deg);
    background-image: repeating-linear-gradient(90deg,
        transparent 0, transparent 7px,
        rgba(255,255,255,0.2) 7px, rgba(255,255,255,0.2) 8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.d-tape-3 {
    top: 42%; right: 28px;
    width: 72px; height: 20px;
    background: rgba(245,206,79,0.52);
    border-radius: 3px;
    transform: rotate(-9deg);
    background-image: repeating-linear-gradient(90deg,
        transparent 0, transparent 8px,
        rgba(255,255,255,0.18) 8px, rgba(255,255,255,0.18) 9px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
/* For-whom section */
.d-star-w1 {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.3);
    top: 10%; right: 8%;
    animation: float 6s ease-in-out infinite 1s;
}
.d-star-w2 {
    font-size: 1rem;
    color: rgba(245,206,79,0.5);
    bottom: 15%; left: 5%;
    animation: float 9s ease-in-out infinite;
}
.d-ring-w {
    width: 100px; height: 100px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%; right: 3%;
    animation: spin-slow 22s linear infinite;
}
/* Program section */
.d-star-p1 {
    font-size: 1.8rem;
    color: rgba(0,0,0,0.06);
    top: 6%; right: 5%;
    animation: float 8s ease-in-out infinite 2s;
}
/* Reviews section */
.d-star-r1 {
    font-size: 3rem;
    color: rgba(255,255,255,0.25);
    top: 8%; left: 3%;
    animation: float 6s ease-in-out infinite;
}
.d-star-r2 {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
    bottom: 15%; right: 5%;
    animation: float 9s ease-in-out infinite 2s;
}
/* FAQ section */
.d-star-f1 {
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
    top: 10%; right: 7%;
    animation: float 7s ease-in-out infinite 1s;
}
.d-star-f2 {
    font-size: 1rem;
    color: rgba(245,206,79,0.4);
    bottom: 20%; left: 4%;
    animation: float 5s ease-in-out infinite 3s;
}
/* Contact section */
.d-star-c1 {
    font-size: 3rem;
    color: rgba(255,255,255,0.08);
    top: 8%; left: 4%;
    animation: float 8s ease-in-out infinite;
}
.d-star-c2 {
    font-size: 1.5rem;
    color: rgba(245,206,79,0.2);
    bottom: 18%; right: 6%;
    animation: float 6s ease-in-out infinite 2s;
}
.d-ring-c {
    width: 120px; height: 120px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    top: 40%; left: 2%;
    animation: spin-slow 25s linear infinite reverse;
}

/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.s-hero {
    background: var(--teal);
    position: relative;
    padding: 110px 0 140px;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    column-gap: 48px;
    align-items: start;
}

.hero-eyebrow,
.hero-h1,
.hero-tagline,
.hero-actions,
.fortune-box {
    grid-column: 1;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.hero-h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.hero-h1 .accent-line { color: var(--yellow); }

.hero-tagline {
    font-family: var(--font-hand);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.55;
    color: rgba(255,255,255,0.86);
    margin-bottom: 20px;
    max-width: 560px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.hero-tagline span {
    color: #ffd457;
    opacity: 1;
}

.fortune-box {
    margin-top: 18px;
    margin-bottom: 0;
    max-width: 520px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
}
.fortune-trigger {
    border: none;
    cursor: pointer;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 14px;
    background: linear-gradient(120deg, #ffdf6f 0%, #ffd04d 48%, #f7b8d2 100%);
    color: #1c1c1c;
    box-shadow: 0 5px 14px rgba(0,0,0,0.14);
    transition: transform 0.22s var(--spring), box-shadow 0.22s var(--spring);
}
.fortune-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}
.fortune-trigger:active { transform: translateY(0); }
.fortune-result {
    display: none;
    margin: 10px 0 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #fff;
    max-width: 440px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.26);
    box-shadow: 0 10px 20px rgba(0,0,0,0.14);
    backdrop-filter: blur(2px);
    align-items: flex-start;
    gap: 10px;
}
.fortune-result span {
    flex: 1;
}
.fortune-close {
    border: 0;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255,255,255,0.84);
    color: #1f1f1f;
    flex-shrink: 0;
    transition: transform 0.2s var(--spring), background 0.2s;
}
.fortune-close:hover {
    background: #fff;
    transform: translateY(-1px);
}
.fortune-box.is-revealed {
    box-shadow: none;
}
.fortune-box.is-shuffling {
    animation: fortune-shake 0.38s var(--spring);
}
.fortune-box.is-shuffling .fortune-trigger {
    filter: saturate(1.1);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.22) inset, 0 12px 26px rgba(0,0,0,0.2);
}
.fortune-result.is-switching {
    opacity: 0.15;
    transform: translateY(6px) scale(0.98);
}
.fortune-result {
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.fortune-result.is-visible {
    display: flex;
    animation: fortune-pop-in 0.35s var(--spring) both;
}
@keyframes fortune-shake {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-1.1deg) scale(1.01); }
    50% { transform: rotate(1.1deg) scale(1.015); }
    75% { transform: rotate(-0.8deg) scale(1.01); }
    100% { transform: rotate(0deg) scale(1); }
}
@keyframes fortune-pop-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-body {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.hero-body .underline-wavy {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,0.45);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 520px;
}

/* Right: photo */
.hero-photo {
    grid-column: 2;
    grid-row: 1 / span 5;
    display: flex;
    justify-content: center;
    align-self: center;
}
.photo-wrap {
    position: relative;
    width: 320px;
    height: 400px;
}

.blob-bg {
    position: absolute;
    inset: -10%;
    background: var(--pink);
    border-radius: 60% 40% 70% 30% / 50% 65% 35% 50%;
    animation: morph 9s ease-in-out infinite;
    z-index: 0;
    opacity: 0.85;
}
.blob-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 60% 40% 70% 30% / 50% 65% 35% 50%;
    animation: morph 9s ease-in-out infinite;
    display: block;
}
@keyframes morph {
    0%,100% { border-radius: 60% 40% 70% 30% / 50% 65% 35% 50%; }
    33%      { border-radius: 40% 60% 35% 65% / 65% 40% 60% 35%; }
    66%      { border-radius: 70% 30% 55% 45% / 35% 70% 30% 65%; }
}

.photo-badge {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    font-size: 0.78rem;
    animation: float 6s ease-in-out infinite;
}
.photo-badge b {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--teal);
}
.photo-badge span { line-height: 1.3; color: #555; }
.pb-1 { bottom: 8%; left: -10%; animation-delay: 0s; }
.pb-2 { top: 10%; right: -8%; animation-delay: 1.5s; }

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 60px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.hstat {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    column-gap: 3px;
    row-gap: 8px;
    align-content: center;
    min-height: 118px;
    padding: 16px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}
.hstat b, .hstat span:first-of-type {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}
.hstat-l {
    width: 100%;
    max-width: 11ch;
    margin: 0 auto;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.35;
    text-align: center;
}
.hstat-countries .hstat-l {
    max-width: 7ch;
}

/* ═══════════════════════════════
   MARQUEE
═══════════════════════════════ */
.marquee-wrap {
    background: var(--yellow);
    overflow: hidden;
    padding: 14px 0;
    border-top: 2px solid rgba(0,0,0,0.06);
    border-bottom: 2px solid rgba(0,0,0,0.06);
}
.marquee-track { overflow: hidden; }
.marquee-items {
    display: inline-flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}
.marquee-items span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--ink);
    padding: 0 18px;
}
.marquee-items .dot {
    padding: 0;
    color: rgba(0,0,0,0.3);
    font-size: 0.6rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   QUOTE SECTION
═══════════════════════════════ */
.s-quote {
    background: #fff;
    padding: 70px 0 0;
}

.jane-quote {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 48px 40px;
    background: #f5efe6;
    border-radius: 18px;
    position: relative;
    font-family: 'Caveat', cursive;
}

.jane-quote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 90px;
    color: #c4a882;
    line-height: 0;
    position: absolute;
    top: 44px;
    left: 28px;
    opacity: .5;
}

.jane-quote p {
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    line-height: 1.55;
    color: #4a3728;
    font-style: italic;
    margin: 0 0 18px;
}

.jane-quote cite {
    font-size: 1.05rem;
    color: #8b6f5e;
    font-style: normal;
    letter-spacing: .04em;
}

/* ═══════════════════════════════
   ABOUT SECTION
═══════════════════════════════ */
.s-about {
    background: #fff;
    position: relative;
    padding: 90px 0 140px;
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sticky-note {
    border-radius: 4px;
    padding: 18px 20px;
    transform: rotate(-1.5deg);
    box-shadow: 2px 4px 14px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    margin: 20px 0;
    position: relative;
    transition: transform 0.3s var(--spring), box-shadow 0.3s;
}
.sticky-note::before {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: 52px; height: 18px;
    background: rgba(245,206,79,0.65);
    border-radius: 3px;
    background-image: repeating-linear-gradient(90deg,
        transparent 0, transparent 6px,
        rgba(255,255,255,0.25) 6px, rgba(255,255,255,0.25) 7px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.10);
}
.sticky-note:hover {
    transform: rotate(-0.5deg) translateY(-4px);
    box-shadow: 4px 8px 24px rgba(0,0,0,0.14);
}
.sn-pink { background: #FFF0F4; border-left: 4px solid var(--pink); }
.sn-yellow { background: #FFFDE4; border-left: 4px solid var(--yellow); }
.sticky-note p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #444;
}

.body-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #666;
    margin-bottom: 16px;
}

.handwritten-note {
    font-family: var(--font-hand);
    font-size: 1.25rem;
    line-height: 1.5;
    color: #888;
    padding: 16px 20px;
    border-left: 3px solid var(--teal);
    margin-top: 8px;
    background: #F8FCFD;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Right visual */
.about-visual { position: relative; padding-top: 20px; }

.polaroid {
    background: #fff;
    padding: 12px 12px 44px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transform: rotate(2deg);
    display: inline-block;
    transition: transform 0.35s var(--spring), box-shadow 0.35s;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}
.polaroid:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.polaroid-img-clip {
    overflow: hidden;
    position: relative;
}
.polaroid img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Polaroid print animation */
.polaroid-print .polaroid-img-clip {
    clip-path: inset(100% 0 0 0);
}
.polaroid-print.revealed .polaroid-img-clip {
    animation: polaroid-reveal 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.polaroid-print.revealed img {
    animation: polaroid-develop 3s ease-out 0.6s both;
}
@keyframes polaroid-reveal {
    0%   { clip-path: inset(100% 0 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}
@keyframes polaroid-develop {
    0%   { filter: brightness(2.5) contrast(0.4) saturate(0); }
    40%  { filter: brightness(1.4) contrast(0.7) saturate(0.3); }
    100% { filter: brightness(1) contrast(1) saturate(1); }
}

.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 100px;
    margin: 6px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.25s var(--spring);
}
.about-chip:hover { transform: translateY(-3px) scale(1.04); }
.ac-yellow { background: var(--yellow); color: var(--ink); }
.ac-pink   { background: var(--pink-dk); color: var(--ink); }
.ac-blue   { background: var(--blue); color: var(--ink); }
.ac-green  { background: var(--green); color: var(--ink); }

/* ═══════════════════════════════
   FOR WHOM SECTION
═══════════════════════════════ */
.s-whom {
    background: var(--teal);
    position: relative;
    padding: 90px 0 140px;
    overflow: hidden;
}

.whom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.whom-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 28px 24px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.65;
    transition: transform 0.28s var(--spring), background 0.28s, box-shadow 0.28s;
    position: relative;
}
/* Pushpin on each card */
.whom-card::before {
    content: '';
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #fff9c4, var(--yellow) 52%, #c8a000);
    box-shadow:
        0 0 0 2px rgba(0,0,0,0.10),
        0 4px 10px rgba(0,0,0,0.22),
        inset 0 -2px 4px rgba(0,0,0,0.14);
    z-index: 3;
}
.whom-card::after {
    content: '';
    position: absolute;
    top: 4px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 12px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.28), transparent);
    border-radius: 0 0 3px 3px;
    z-index: 2;
}
.whom-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    background: rgba(255,255,255,0.22);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.wc-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}

/* ═══════════════════════════════
   PROGRAM / TABS
═══════════════════════════════ */
.s-program {
    background: var(--cream);
    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
}

.tabs-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,0.10);
    min-height: 360px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0,0,0,0.07);
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 20px 22px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    line-height: 1.4;
    position: relative;
}
.tab-btn::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--col, var(--teal));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.18s;
}
.tab-btn.active,
.tab-btn:hover {
    background: rgba(0,0,0,0.025);
    color: var(--ink);
    padding-left: 28px;
}
.tab-btn.active::before,
.tab-btn:hover::before { opacity: 1; }
.tab-btn.active {
    background: var(--col, var(--teal));
    color: var(--ink);
    opacity: 0.9;
}

.tabs-body { position: relative; }

.tab-panel {
    display: none;
    padding: 36px 40px;
    animation: fadeIn 0.35s var(--ease);
}
.tab-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.prog-n {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    display: block;
    margin-bottom: 10px;
}
.tab-panel h3 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.tab-panel p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}
.tab-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}
.tab-panel ul li {
    font-size: 0.88rem;
    color: #555;
    padding-left: 20px;
    position: relative;
}
.tab-panel ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ═══════════════════════════════
   PRICING SECTION
═══════════════════════════════ */
.s-pricing {
    background: #fff;
    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.price-card {
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.28s var(--spring), box-shadow 0.28s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.pc-white { background: #F8F8F8; }
.pc-yellow { background: var(--yellow); }
.pc-pink   { background: var(--pink); }
.pc-blue   { background: var(--blue); }
.pc-green  { background: var(--green); }

.pc-badge {
    position: absolute;
    top: -10px; right: 16px;
    background: #D63B73;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.pc-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}
.pc-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
}
.pc-price {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1;
}
.pc-dur {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.45);
    font-weight: 500;
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 24px;
}
.pc-list li {
    font-size: 0.84rem;
    color: #555;
    padding-left: 18px;
    position: relative;
}
.pc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ═══════════════════════════════
   REVIEWS SECTION
═══════════════════════════════ */
.s-reviews {
    background: var(--pink-dk);
    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.review-card {
    background: var(--paper);
    border-radius: 4px;
    padding: 32px 24px 24px;
    box-shadow: 3px 6px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.35s var(--spring), box-shadow 0.35s;
}
.rc-1 { transform: rotate(-1.5deg); }
.rc-2 { transform: rotate(1deg); }
.rc-3 { transform: rotate(-0.5deg); }
.rc-4 { transform: rotate(1.5deg); }
.review-card:hover {
    transform: rotate(0deg) translateY(-8px) !important;
    box-shadow: 6px 16px 40px rgba(0,0,0,0.14);
}
.rc-tape {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 24px;
    background: rgba(245,206,79,0.55);
    border-radius: 3px;
}
.rc-stars {
    font-size: 1rem;
    color: var(--yellow);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.review-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}
.rc-author {
    font-size: 0.78rem;
    font-weight: 700;
    color: #aaa;
}

/* ═══════════════════════════════
   CONSULT SECTION
═══════════════════════════════ */
.s-consult {
    background: var(--cream);
    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
}

.d-star-cs1 {
    font-size: 2.5rem;
    color: rgba(255,150,170,0.3);
    top: 6%; left: 4%;
    animation: float 7s ease-in-out infinite;
}
.d-star-cs2 {
    font-size: 1.3rem;
    color: rgba(93,200,216,0.35);
    bottom: 18%; right: 5%;
    animation: float 9s ease-in-out infinite 2s;
}

.consult-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.consult-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    padding: 24px 28px;
    background: var(--pink);
    border-radius: 16px;
}
.consult-questions p {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.55;
}

.consult-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 32px;
}

.consult-what-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.consult-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.consult-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}
.consult-list li::before {
    content: '✦';
    color: var(--yellow);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.consult-card {
    background: var(--dark);
    border-radius: 22px;
    padding: 36px 32px 32px;
    color: #fff;
    position: relative;
    box-shadow: 8px 16px 48px rgba(44,27,14,0.22);
    transform: rotate(1.2deg);
    transition: transform 0.35s var(--spring), box-shadow 0.35s;
}
.consult-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 12px 24px 60px rgba(44,27,14,0.3);
}

.cc-tape {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 24px;
    background: rgba(245,206,79,0.55);
    border-radius: 3px;
}

.cc-badge {
    display: inline-block;
    background: var(--pink);
    color: var(--dark);
    font-family: var(--font-head);
    font-size: 0.58rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: .06em;
}

.cc-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 6px;
}
.cc-price {
    font-family: var(--font-head);
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.cc-currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--yellow);
    padding-bottom: 8px;
}
.cc-dur {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    letter-spacing: .05em;
}

.cc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.cc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.cc-features li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
}

.cc-actions {
    position: relative;
    z-index: 5;
}
.cc-actions .btn-cta {
    position: relative;
    z-index: 5;
}
.cc-actions .tc-reviews-btn {
    position: relative;
    z-index: 5;
}

.consult-tg-feed {
    max-width: 680px;
    margin: 28px auto 0;
    background: #DAE7F0;
    border-radius: 16px;
    padding: 20px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.consult-tg-feed .rpm-tg-msg {
    animation: none;
}
.consult-tg-feed .rpm-tg-bubble {
    max-width: 92%;
}

@media (max-width: 900px) {
    .consult-layout {
        grid-template-columns: 1fr;
    }
    .consult-card {
        transform: rotate(0deg);
    }
}

/* ═══════════════════════════════
   FAQ SECTION
═══════════════════════════════ */
.s-faq {
    background: var(--teal);
    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
}

.faq-item {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s;
}
.faq-item.open {
    background: rgba(255,255,255,0.18);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-q span:first-child {
    color: var(--yellow);
    font-weight: 900;
    flex-shrink: 0;
}
.faq-q span:not(.faq-arrow):nth-child(2) {
    flex: 1;
}
.faq-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.6);
    transition: transform 0.3s var(--ease), color 0.2s;
    margin-left: auto;
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--yellow);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
    padding: 0 20px;
    background: rgba(0,0,0,0.05);
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 14px 20px 18px;
}
.faq-a p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

/* ═══════════════════════════════
   CONTACT SECTION
═══════════════════════════════ */
.s-contact {
    background: var(--dark);
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}

.contact-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin-bottom: 40px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 40px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cf-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}
.cf-label input,
.cf-label select,
.cf-label textarea {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}
.cf-label input::placeholder,
.cf-label textarea::placeholder { color: rgba(255,255,255,0.3); }
.cf-label select option { background: #2C1B0E; color: #fff; }
.cf-label input:focus,
.cf-label select:focus,
.cf-label textarea:focus {
    border-color: var(--yellow);
    background: rgba(255,255,255,0.1);
}
.submit-btn { align-self: flex-start; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
    background: #1C1008;
    padding: 24px;
}
.footer-in {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    justify-content: center;
}
.footer-logo {
    font-family: var(--font-head);
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.footer-sep { color: rgba(255,255,255,0.15); }
.footer-link {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.62);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.35);
    text-underline-offset: 3px;
    cursor: pointer;
    font-size: 0.82rem;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 12, 10, 0.62);
    backdrop-filter: blur(2px);
}
.privacy-modal.open { display: flex; }
.privacy-box {
    position: relative;
    width: min(760px, 100%);
    max-height: 82vh;
    overflow: auto;
    padding: 26px 22px;
    border-radius: 20px;
    background: #fffdf8;
    box-shadow: 0 24px 55px rgba(0,0,0,0.22);
}
.privacy-box h3 {
    margin: 0 0 12px;
    font-family: var(--font-head);
    font-size: 1.2rem;
}
.privacy-box p {
    margin: 0 0 10px;
    color: #39312a;
    line-height: 1.5;
    font-size: 0.96rem;
}
.privacy-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1990;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(28, 16, 8, 0.94);
    color: rgba(255,255,255,0.95);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.35;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.cookie-btn-secondary:hover { background: rgba(255,255,255,0.12); }
.cookie-link {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.82);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}
.cookie-link:hover { color: #fff; }

/* ═══════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════ */
.reveal {
    opacity: 0;
    transition:
        opacity 0.75s var(--ease),
        transform 0.75s var(--ease);
}
.reveal.from-bottom  { transform: translateY(48px); }
.reveal.from-left    { transform: translateX(-48px); }
.reveal.from-right   { transform: translateX(48px); }
.reveal.scale-up     { transform: scale(0.88); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.26s; }
.reveal[data-delay="4"] { transition-delay: 0.34s; }
.reveal[data-delay="5"] { transition-delay: 0.42s; }
.reveal[data-delay="6"] { transition-delay: 0.50s; }
.reveal[data-delay="7"] { transition-delay: 0.60s; }

/* ═══════════════════════════════
   KEYFRAMES
═══════════════════════════════ */
/* ── Mini sticky note ── */
.mini-sticky {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    background: #FFFDE4;
    border-radius: 4px;
    padding: 8px 18px 8px 14px;
    margin-bottom: 28px;
    transform: rotate(-1.8deg);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.09);
    position: relative;
}
.mini-sticky::before {
    content: '';
    position: absolute;
    top: -9px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 16px;
    background: rgba(245,206,79,0.68);
    border-radius: 3px;
    background-image: repeating-linear-gradient(90deg,
        transparent 0, transparent 6px,
        rgba(255,255,255,0.24) 6px, rgba(255,255,255,0.24) 7px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════
   TEACHERS
═══════════════════════════════ */
.s-teachers {
    padding: 80px 0 100px;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}
.s-teachers .sec-heading { color: var(--dark); }

.d-star-t1 { top: 60px; right: 120px; font-size: 2rem; color: var(--teal); opacity: 0.5; }
.d-star-t2 { bottom: 140px; left: 80px; font-size: 1.4rem; color: var(--pink); opacity: 0.5; }

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.teacher-card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s var(--spring), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
.tc-1 { border-top: 4px solid var(--pink); }
.tc-2 { border-top: 4px solid var(--teal); }
.tc-3 { border-top: 4px solid var(--yellow); }

.tc-polaroid {
    position: relative;
    background: #fff;
    padding: 9px 9px 52px;
    box-shadow: 2px 5px 22px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 2px;
    margin: -20px 14px 0;
    transform: rotate(-1.8deg);
    transform-origin: center bottom;
    z-index: 2;
}
.tc-2 .tc-polaroid { transform: rotate(1.4deg); }
.tc-3 .tc-polaroid { transform: rotate(-0.7deg); }
.tc-photo {
    width: 100%; height: 280px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.4s var(--ease);
}
.teacher-card:hover .tc-photo { transform: scale(1.03); }

.tc-avatar {
    width: 100%; height: 280px;
    background: linear-gradient(135deg, var(--yellow), var(--peach));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 3rem; font-weight: 700;
    color: var(--dark);
}

.tc-langs {
    position: absolute;
    bottom: 10px; left: 10px;
    display: flex; gap: 6px;
}
.tc-langs span {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink);
}

.tc-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tc-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.tc-spec {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}
.tc-stars {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 2px rgba(245,206,79,0.4));
}
.tc-stars span {
    color: var(--dark);
    font-weight: 600;
    margin-left: 4px;
    filter: none;
}
.tc-bio {
    font-size: 0.83rem;
    line-height: 1.55;
    color: #555;
    margin-bottom: 14px;
}
.tc-quotes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    flex: 1;
}
.tc-quote {
    background: var(--cream);
    border-radius: 10px;
    padding: 10px 13px;
}
.tc-quote p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--dark);
    font-style: italic;
}
.tc-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    align-items: center;
    flex-wrap: wrap;
}
.tc-btn {
    flex: 1;
    justify-content: center;
}
.tc-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}
.tc-reviews-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(93,200,216,0.08);
}

/* Teacher Modal */
.teacher-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 27, 14, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.teacher-modal.open { display: flex; }

.tm-box {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.2);
    animation: tmIn 0.35s var(--spring) both;
}
@keyframes tmIn {
    from { opacity: 0; transform: scale(0.9) translateY(24px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.tm-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none; border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.tm-close:hover { color: var(--dark); transform: rotate(90deg); }
.tm-title {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 22px;
    color: var(--dark);
}
.tm-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.tm-form .cf-label {
    color: var(--dark);
}
.tm-form .cf-label input,
.tm-form .cf-label select,
.tm-form .cf-label textarea {
    background: #f8f8f8;
    border: 1.5px solid #e0e0e0;
    color: var(--dark);
}
.tm-form .cf-label input::placeholder,
.tm-form .cf-label textarea::placeholder { color: #bbb; }
.tm-form .cf-label select option { background: #fff; color: var(--dark); }
.tm-form .cf-label input:focus,
.tm-form .cf-label select:focus,
.tm-form .cf-label textarea:focus {
    border-color: var(--teal);
    background: #fff;
}

/* Reviews Photo Modal */
.reviews-photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,27,14,0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.reviews-photo-modal.open { display: flex; }
.rpm-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 580px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.25);
    animation: tmIn 0.35s var(--spring) both;
    transition: max-width 0.3s ease, background 0.3s ease;
}
/* Chat mode — wider, dark bg like Telegram dark theme */
.rpm-box.rpm-chat-mode {
    max-width: 520px;
    background: #DAE7F0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.rpm-box.rpm-chat-mode .rpm-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #1C1C1C;
    background: #FFFFFF;
    margin: 0;
    padding: 14px 52px 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}
.rpm-box.rpm-chat-mode .rpm-title::before {
    content: '';
    display: inline-block;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    flex-shrink: 0;
}
.rpm-box.rpm-chat-mode .rpm-close {
    color: rgba(0,0,0,0.35);
    top: 12px;
}
.rpm-box.rpm-chat-mode .rpm-close:hover { color: #1C1C1C; }

.rpm-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none; border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
}
.rpm-close:hover { color: var(--dark); transform: rotate(90deg); }

.rpm-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Photo grid (existing teachers) */
.rpm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.rpm-box:not(.rpm-chat-mode) .rpm-grid {
    padding: 0;
}
.rpm-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.rpm-grid img:hover { transform: scale(1.03); }

/* ── Telegram chat bubbles — light theme ── */
.rpm-box.rpm-chat-mode .rpm-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    padding: 14px 14px 20px;
    max-height: calc(85vh - 63px);
    background: #DAE7F0;
    position: relative;
    z-index: 1;
}

.rpm-tg-msg {
    display: flex;
    justify-content: flex-end;
    animation: tg-slide-in 0.35s var(--spring) both;
}
.rpm-tg-msg:nth-child(1) { animation-delay: 0.05s; }
.rpm-tg-msg:nth-child(2) { animation-delay: 0.15s; }
.rpm-tg-msg:nth-child(3) { animation-delay: 0.25s; }
.rpm-tg-msg:nth-child(4) { animation-delay: 0.35s; }

@keyframes tg-slide-in {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: none; }
}

/* Light outgoing bubble */
.rpm-tg-bubble {
    background: #EAFDE8;
    border-radius: 16px 4px 16px 16px;
    padding: 10px 14px 8px;
    max-width: 88%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.rpm-tg-bubble::after {
    content: '';
    position: absolute;
    top: 0; right: -7px;
    width: 10px; height: 16px;
    background: #EAFDE8;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-radius: 0 4px 0 0;
}

/* Forwarded header bar */
.rpm-tg-fwd {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--teal-dk);
    font-weight: 600;
    padding: 0 0 7px 8px;
    margin: 0 0 7px -4px;
    border-bottom: 1px solid rgba(64,176,193,0.2);
    border-left: 3px solid var(--teal);
    border-radius: 1px;
    line-height: 1.3;
}
.rpm-tg-fwd svg {
    width: 13px; height: 11px;
    flex-shrink: 0;
    color: var(--teal-dk);
}
.rpm-tg-fwd b { font-weight: 700; }
.has-fwd { padding-top: 8px; }

.rpm-tg-text {
    font-family: var(--font-body);
    font-size: 0.87rem;
    line-height: 1.6;
    color: #1C1C1C;
    word-break: break-word;
}
.rpm-tg-text p { margin: 0 0 7px; }
.rpm-tg-text p:last-child { margin-bottom: 0; }

.rpm-tg-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
    min-height: 18px;
}

.rpm-tg-react {
    font-size: 1rem;
    margin-right: auto;
}

.rpm-tg-time {
    font-size: 0.67rem;
    color: rgba(0,0,0,0.36);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rpm-tg-read {
    width: 14px; height: 10px;
    color: var(--teal-dk);
    flex-shrink: 0;
}

.rpm-empty {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    padding: 20px 0;
    display: none;
}

@media (max-width: 820px) {
    .s-hero { padding: 92px 0 118px; }
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-eyebrow,
    .hero-h1,
    .hero-photo,
    .hero-tagline,
    .hero-actions,
    .fortune-box {
        grid-column: 1;
        grid-row: auto;
    }
    .hero-h1 { align-items: center; font-size: clamp(2.2rem, 8.2vw, 3.55rem); margin-bottom: 14px; }
    .hero-photo { justify-content: center; align-self: auto; margin: 4px auto 14px; }
    .photo-wrap { width: min(66vw, 252px); height: min(86vw, 320px); }
    .blob-bg { inset: -4%; }
    .photo-badge { padding: 7px 10px; font-size: 0.72rem; }
    .photo-badge b { font-size: 0.95rem; }
    .pb-1 { display: none; }
    .pb-2 { right: 4px; top: 8px; }
    .hero-tagline {
        width: min(100%, 22rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        font-size: 1.16rem;
        line-height: 1.5;
    }
    .hero-tagline br { display: none; }
    .hero-tagline span { display: block; margin-top: 0.15em; }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }
    .hero-actions .btn-cta {
        width: min(100%, 420px);
        justify-content: center;
    }
    .fortune-box {
        max-width: min(100%, 360px);
        margin: 8px auto 0;
    }
    .fortune-trigger {
        width: 100%;
        min-height: 58px;
        padding: 12px 16px;
        line-height: 1.28;
        white-space: normal;
    }
    .fortune-result { max-width: none; text-align: left; }
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
        gap: 10px;
        max-width: 560px;
        margin-top: 34px;
    }
    .hstat {
        min-height: 96px;
        padding: 12px 10px;
    }
    .d-abc,
    .d-ring-1,
    .d-squiggle,
    .d-tape-1,
    .d-tape-2,
    .d-tape-3 { display: none; }
    .d-ring-2 {
        left: auto;
        right: 10%;
        bottom: 22%;
    }

    .about-layout { grid-template-columns: 1fr; }
    .about-visual { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .polaroid { transform: none !important; margin-bottom: 10px; }

    .whom-cards        { grid-template-columns: 1fr; }
    .reviews-grid      { grid-template-columns: 1fr; }
    .teachers-grid     { grid-template-columns: 1fr; }
    .pricing-grid      { grid-template-columns: 1fr 1fr; }
    .tabs-wrap         { grid-template-columns: 1fr; }
    .tabs-nav          { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
    .tab-btn {
        border-bottom: none;
        border-right: 1px solid rgba(0,0,0,0.06);
        flex: 1 1 calc(50% - 6px);
        min-height: 72px;
        padding: 16px 14px;
        text-align: center;
        justify-content: center;
    }
    .tab-btn.active,
    .tab-btn:hover { padding-left: 14px; }
    .tab-btn::before {
        left: 14px;
        right: 14px;
        top: auto;
        bottom: 0;
        width: auto;
        height: 4px;
        border-radius: 999px 999px 0 0;
    }
    .tab-btn.active    { background: var(--teal); color: #fff; }
    .tab-panel         { padding: 24px 20px; }
    .contact-form      { padding: 24px 20px; }
    .cf-row            { grid-template-columns: 1fr; }

    .nav-links { display: none; }
    .nav-cta.desktop { display: none; }
    .nav-burger { display: flex; }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions { width: 100%; }
}

@media (max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .sec-heading  { font-size: 2rem; }
    .s-hero       { padding: 84px 0 104px; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 2px; }
    .hero-h1      { font-size: clamp(2rem, 10.6vw, 2.75rem); letter-spacing: -1.5px; line-height: 0.96; }
    .photo-wrap   { width: min(72vw, 228px); height: min(96vw, 288px); }
    .photo-badge  { font-size: 0.68rem; padding: 6px 8px; }
    .photo-badge b { font-size: 0.82rem; }
    .pb-2         { right: 0; top: 6px; }
    .hero-tagline { width: min(100%, 18.5rem); font-size: 1.05rem; line-height: 1.44; }
    .hero-actions .btn-cta { padding: 13px 20px; }
    .fortune-trigger { min-height: 54px; font-size: 0.72rem; }
    .hero-stats   { padding: 10px; gap: 8px; }
    .hstat        { min-height: 84px; padding: 10px 8px; }
    .hstat b,
    .hstat span:first-of-type { font-size: 1.5rem; }
    .hstat-l      { max-width: 9ch; font-size: 0.67rem; line-height: 1.3; }
    .tabs-nav     { flex-direction: column; }
    .tab-btn {
        flex-basis: 100%;
        width: 100%;
        min-height: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .contact-form { padding: 22px 16px; }
    .tc-actions   { flex-direction: column; align-items: stretch; }
    .tc-btn,
    .tc-reviews-btn {
        width: 100%;
        justify-content: center;
    }
    .teacher-modal,
    .reviews-photo-modal { padding: 14px; }
    .tm-box,
    .rpm-box {
        max-width: 100%;
        padding: 24px 18px;
    }
    .rpm-box.rpm-chat-mode { padding: 0; }
    .fortune-result.is-visible {
        flex-direction: column;
        gap: 8px;
    }
    .fortune-close { align-self: flex-start; }
}
