/* ═══════════════════════════════════════════════════════
   Journey to Find Friends — Stylesheet
   Background matched to teapot GIF (#D5E1CF)
   ═══════════════════════════════════════════════════════ */

:root {
    /* Background matched to teapot.gif */
    --bg:              #d9e5d4;
    --bg-warm:         #EDE8E1;
    --bg-section:      #C8D5BF;
    --tea-green:       #B8CAAC;
    --deep-green:      #3A4A3F;
    --text:            #4A524D;
    --text-light:      #7A8580;
    --terracotta:      #C8745E;
    --terracotta-soft: #D9917D;
    --cream:           #FDF8F3;
    --white:           #FFFFFF;
    --slate:           #5B6C6D;
    --border-soft:     rgba(58, 74, 63, 0.08);
    --shadow-sm:       0 2px 8px rgba(0,0,0,0.04);
    --shadow-md:       0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg:       0 20px 60px rgba(0,0,0,0.08);
    --radius:          20px;
    --radius-sm:       12px;
    --font-display:    'Shippori Mincho', 'Georgia', serif;
    --font-body:       'Noto Sans JP', 'Helvetica Neue', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─── AMBIENT BACKGROUND ─────────────────────────────── */
.ambient-bg {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0; overflow: hidden;
}
.ambient-bg .orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: 0.25;
    animation: float-orb 22s ease-in-out infinite;
}
.orb:nth-child(1) { width:420px;height:420px;background:var(--tea-green);top:-120px;left:-100px; }
.orb:nth-child(2) { width:320px;height:320px;background:var(--terracotta-soft);bottom:15%;right:-100px;animation-delay:-8s;animation-duration:28s; }
.orb:nth-child(3) { width:260px;height:260px;background:var(--tea-green);top:45%;left:25%;animation-delay:-15s;animation-duration:32s; }
@keyframes float-orb {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(35px,-45px) scale(1.06); }
    66%     { transform: translate(-25px,30px) scale(0.94); }
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.page-content { position: relative; z-index: 1; }
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.text-center { text-align: center; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
                transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ─── LANGUAGE BAR ───────────────────────────────────── */
.lang-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: center; padding: 16px 20px;
    transition: background .3s, box-shadow .3s;
}
.lang-bar.scrolled {
    background: rgba(213,225,207,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}
.lang-pills {
    display: flex; gap: 3px;
    background: var(--white); padding: 5px 6px;
    border-radius: 50px; box-shadow: var(--shadow-sm);
}
.lang-pills a {
    text-decoration: none; color: var(--text-light);
    font-size: .82rem; font-weight: 500;
    padding: 7px 16px; border-radius: 50px;
    transition: all .3s; cursor: pointer;
}
.lang-pills a.active {
    background: var(--deep-green); color: var(--white);
}
.lang-pills a:hover:not(.active) {
    color: var(--terracotta); background: rgba(200,116,94,0.08);
}

/* ─── SECTION TITLES ─────────────────────────────────── */
.section-accent {
    width: 40px; height: 3px;
    background: var(--terracotta); border-radius: 3px;
    margin-bottom: 24px;
}
.text-center .section-accent { margin-left: auto; margin-right: auto; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 800;
    color: var(--deep-green); margin-bottom: 12px; letter-spacing: -.01em;
}
.section-subtitle {
    font-size: 1rem; color: var(--text-light); max-width: 500px; margin-bottom: 40px;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    text-align: center; padding: 110px 20px 60px;
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.teapot-logo {
    width: 340px; margin-bottom: 10px;
    animation: teapot-in 1.2s cubic-bezier(.22,1,.36,1) forwards; opacity: 0;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.22,1,.36,1), filter .4s;
	border-radius: 50%;
}
.teapot-logo:hover {
    transform: rotate(-6deg) scale(1.08);
}
@keyframes teapot-in {
    from { opacity:0; transform: translateY(-30px) scale(.9); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.hero-badge {
    display: inline-block; background: var(--white); color: var(--slate);
    font-size: .78rem; font-weight: 500; padding: 6px 18px;
    border-radius: 50px; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 24px; box-shadow: var(--shadow-sm);
    opacity: 0; animation: fade-up .8s .3s cubic-bezier(.22,1,.36,1) forwards;
}
.hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.1rem,5vw,3.4rem); color: var(--deep-green);
    line-height: 1.15; margin-bottom: 20px; letter-spacing: -.02em;
    opacity: 0; animation: fade-up .8s .5s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-subtitle {
    font-size: 1.12rem; color: var(--text-light);
    max-width: 530px; margin: 0 auto 40px; line-height: 1.7;
    opacity: 0; animation: fade-up .8s .7s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fade-up {
    from { opacity:0; transform: translateY(22px); }
    to   { opacity:1; transform: translateY(0); }
}

/* ─── CONNECT CARD (QR+LINE) ─────────────────────────── */
.connect-card {
    background: var(--white); border-radius: var(--radius);
    padding: 36px; display: flex; align-items: center; gap: 32px;
    max-width: 560px; margin: 0 auto;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft);
    opacity: 0; animation: card-in 1s .9s cubic-bezier(.22,1,.36,1) forwards;
    position: relative; overflow: hidden;
}
.connect-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg,var(--tea-green),var(--terracotta-soft),var(--tea-green));
    background-size: 200% 100%;
    animation: grad-slide 4s ease infinite;
}
@keyframes grad-slide { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes card-in {
    from { opacity:0; transform: translateY(30px) scale(.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.qr-frame {
    flex-shrink: 0; width: 160px; height: 160px;
    border-radius: var(--radius-sm); overflow: hidden;
    border: 3px solid var(--bg); box-shadow: var(--shadow-sm);
    position: relative; cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}
.qr-frame:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.qr-frame img { width: 100%; height: 100%; object-fit: cover; }
.qr-pulse {
    position: absolute; inset: -4px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--terracotta-soft);
    opacity: 0; animation: qr-p 2.5s ease-out infinite;
}
@keyframes qr-p { 0%{opacity:.6;transform:scale(1)} 100%{opacity:0;transform:scale(1.08)} }
.connect-info { text-align: left; flex: 1; }
.connect-info h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--deep-green); margin-bottom: 6px; }
.connect-info p  { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }

.btn-line {
    display: inline-flex; align-items: center; gap: 10px;
    background: #06C755; color: var(--white);
    font-weight: 700; font-size: 1rem; padding: 14px 32px;
    border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 15px rgba(6,199,85,.3);
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(6,199,85,.35); }
.btn-line svg { width: 22px; height: 22px; }

/* Alternative contact button (alongside LINE) */
.btn-contact-alt {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--slate); color: var(--white);
    font-weight: 700; font-size: .92rem; font-family: var(--font-body);
    padding: 14px 26px; border-radius: 50px;
    border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(91,108,109,.25);
    transition: transform .2s, box-shadow .2s;
}
.btn-contact-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91,108,109,.3);
}
.btn-contact-alt svg { width: 18px; height: 18px; }

@media (max-width: 560px) {
    .connect-card { flex-direction: column; text-align: center; padding: 28px 22px; gap: 20px; }
    .connect-info { text-align: center; }
}

/* ─── PROFILE STRIP ──────────────────────────────────── */
.profile-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 36px;
    opacity: 0; animation: fade-up .8s 1.2s cubic-bezier(.22,1,.36,1) forwards;
}
.profile-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    object-fit: cover; border: 4px solid var(--white);
    box-shadow: var(--shadow-md); cursor: pointer;
}
.profile-strip-text { font-size: .92rem; color: var(--text-light); }
.profile-strip-text strong { color: var(--deep-green); }

/* ═══════════════════════════════════════════════════════
   LONELINESS BANNER
   ═══════════════════════════════════════════════════════ */
.loneliness-banner {
    background: var(--deep-green); color: var(--white);
    padding: 80px 20px; text-align: center;
    position: relative; overflow: hidden;
}
.loneliness-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%,rgba(200,213,192,.15) 0%,transparent 60%),
                radial-gradient(circle at 70% 80%,rgba(200,116,94,.1) 0%,transparent 50%);
}
.loneliness-banner .container { position: relative; z-index: 1; }
.loneliness-quote {
    font-family: var(--font-display); font-size: clamp(1.3rem,3vw,2rem);
    font-weight: 600; line-height: 1.5; max-width: 600px;
    margin: 0 auto 20px; opacity: .95;
}
.loneliness-sub { font-size: .95rem; opacity: .6; max-width: 480px; margin: 0 auto; }
.pattern-dots { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.pattern-dot {
    width: 6px; height: 6px; background: var(--terracotta-soft);
    border-radius: 50%; opacity: .5;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about-section { background: var(--bg-warm); }
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: start; }
.about-photo-col { position: relative; }
.about-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    cursor: pointer;
}
.about-photo-accent {
    position: absolute; bottom: -12px; right: -12px;
    width: 80px; height: 80px; background: var(--tea-green);
    border-radius: var(--radius-sm); z-index: -1;
}
.about-text h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--deep-green); margin-bottom: 20px; }
.about-text p  { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.85; }
@media (max-width: 700px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-photo-col { max-width: 240px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════
   STATS — ANIMATED COUNTER CARDS
   ═══════════════════════════════════════════════════════ */
.stats-row {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}
.stat-card {
    background: var(--white); padding: 28px 24px;
    border-radius: var(--radius-sm); text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg,var(--terracotta),var(--terracotta-soft));
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.stat-card.counted::after { transform: scaleX(1); }
.stat-icon {
    font-size: 2rem; margin-bottom: 10px; opacity: .7;
}
.stat-number {
    display: block; font-family: var(--font-display);
    font-weight: 800; font-size: 2.6rem; color: var(--terracotta);
    line-height: 1.1; margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.stat-suffix { font-size: 1.4rem; }
.stat-label {
    font-size: .82rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .1em; line-height: 1.3;
}
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════════════
   PERSONAL / HONEST SECTION
   ═══════════════════════════════════════════════════════ */
.personal-section {
    padding: 60px 0;
}
.personal-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 44px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}
.personal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--terracotta), var(--terracotta-soft), var(--tea-green));
}
.personal-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.personal-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800;
    color: var(--deep-green);
    margin-bottom: 20px;
}
.personal-card p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
    color: var(--text);
}
.personal-card p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   WHAT I OFFER — CARDS
   ═══════════════════════════════════════════════════════ */
.offer-section {
    padding: 80px 0;
    background: var(--bg-warm);
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}
.offer-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.offer-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
    display: inline-block;
    animation: none;
    transition: transform .3s;
}
.offer-card:hover .offer-emoji {
    transform: scale(1.15) rotate(-5deg);
}
.offer-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 8px;
}
.offer-card p {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 560px) {
    .offer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MEET IN PERSON
   ═══════════════════════════════════════════════════════ */
.meet-section {
    padding: 80px 0;
}
.meet-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
}
.meet-visual {
    text-align: center;
    position: relative;
}
.meet-flag {
    font-size: 2.8rem;
    letter-spacing: .3em;
    line-height: 1.5;
}
.meet-route-line {
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--terracotta-soft), var(--tea-green));
    margin: 16px auto 0;
    border-radius: 3px;
    transition: height 1.2s cubic-bezier(.22,1,.36,1);
}
.meet-visual.visible .meet-route-line {
    height: 60px;
}
.meet-text h2 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800;
    color: var(--deep-green);
    margin-bottom: 18px;
}
.meet-text p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
    color: var(--text);
}
@media (max-width: 600px) {
    .meet-grid { grid-template-columns: 1fr; gap: 30px; }
    .meet-visual { order: -1; }
    .meet-flag { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════════════
   VIDEOS
   ═══════════════════════════════════════════════════════ */
.videos-section { padding: 80px 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 24px; }
.video-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-md);
    background: var(--white); text-decoration: none; color: inherit;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.video-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 56px; height: 56px; background: rgba(255,255,255,.95);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.15);
    transition: transform .3s;
}
.play-btn svg { width: 20px; height: 20px; fill: var(--terracotta); margin-left: 3px; }
.video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.12); }
.video-card-body { padding: 16px 20px; }
.video-card-ep {
    font-size: .73rem; color: var(--terracotta); font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.video-card-title { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--deep-green); }
.yt-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--terracotta); text-decoration: none;
    font-weight: 600; font-size: .95rem; transition: gap .3s;
}
.yt-link:hover { gap: 14px; }
.yt-link svg { width: 20px; height: 20px; fill: currentColor; }

/* Video view count badge */
.video-views {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,.7); color: #fff;
    font-size: .7rem; font-weight: 600;
    padding: 3px 8px; border-radius: 4px;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   SHORTS GRID
   ═══════════════════════════════════════════════════════ */
.shorts-section { padding: 60px 0 80px; background: var(--bg-warm); }
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.short-card {
    text-decoration: none; color: inherit;
    border-radius: var(--radius-sm); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.short-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.short-thumb {
    position: relative; aspect-ratio: 9/16; overflow: hidden;
    background: #f0f0f0;
}
.short-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.short-card:hover .short-thumb img { transform: scale(1.06); }
.play-btn-sm {
    width: 40px; height: 40px;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.play-btn-sm svg { width: 16px; height: 16px; }
.short-badge {
    position: absolute; top: 8px; left: 8px;
    background: #ff0033; color: #fff;
    font-size: .6rem; font-weight: 800;
    padding: 2px 6px; border-radius: 3px;
    letter-spacing: .08em;
}
.short-title {
    padding: 10px 12px; font-size: .82rem; font-weight: 600;
    color: var(--deep-green); line-height: 1.3;
    font-family: var(--font-display);
}
@media (max-width: 500px) {
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   TIMELINE — ANIMATED
   ═══════════════════════════════════════════════════════ */
.timeline-section { background: var(--bg-warm); }
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: var(--bg);
}
/* Animated fill line */
.timeline-fill {
    position: absolute; left: 28px; top: 0; width: 2px; height: 0;
    background: linear-gradient(to bottom,var(--tea-green),var(--terracotta-soft),var(--tea-green));
    transition: height 1.2s cubic-bezier(.22,1,.36,1);
    z-index: 1;
}

.tl-item {
    position: relative; padding-left: 72px; margin-bottom: 44px;
    opacity: 0; transform: translateX(-20px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1),
                transform .7s cubic-bezier(.22,1,.36,1);
}
.tl-item:last-child { margin-bottom: 0; }
.tl-item.visible { opacity: 1; transform: translateX(0); }
.tl-item:nth-child(2).visible { transition-delay: .08s; }
.tl-item:nth-child(3).visible { transition-delay: .16s; }
.tl-item:nth-child(4).visible { transition-delay: .24s; }
.tl-item:nth-child(5).visible { transition-delay: .32s; }
.tl-item:nth-child(6).visible { transition-delay: .4s; }

.tl-dot {
    position: absolute; left: 20px; top: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--bg);
    box-shadow: 0 0 0 4px var(--bg-warm); z-index: 2;
    transition: background .5s, border-color .5s, transform .4s;
}
.tl-item.visible .tl-dot {
    border-color: var(--terracotta-soft);
    animation: dot-pop .5s cubic-bezier(.22,1,.36,1);
}
@keyframes dot-pop {
    0%   { transform: scale(0.5); }
    60%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.tl-item:hover .tl-dot { background: var(--terracotta-soft); transform: scale(1.2); }
.tl-date {
    font-size: .78rem; color: var(--terracotta); font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
}
.tl-title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--deep-green); margin-bottom: 6px;
}
.tl-desc { font-size: .92rem; color: var(--text-light); line-height: 1.6; }
.tl-tag {
    display: inline-block; font-size: .7rem; padding: 3px 10px;
    border-radius: 50px; background: var(--tea-green);
    color: var(--deep-green); font-weight: 600; margin-top: 8px;
    letter-spacing: .03em;
}
@media (max-width: 500px) {
    .timeline::before, .timeline-fill { left: 16px; }
    .tl-item { padding-left: 50px; }
    .tl-dot { left: 8px; }
}

/* ═══════════════════════════════════════════════════════
   YUI TEA ROOM
   ═══════════════════════════════════════════════════════ */
.yui-section { text-align: center; }
.yui-card {
    background: var(--white); border-radius: var(--radius);
    padding: 48px 40px; max-width: 560px; margin: 0 auto;
    box-shadow: var(--shadow-md); border: 1px solid var(--border-soft);
}
.yui-icon { font-size: 2.5rem; margin-bottom: 16px; }
.yui-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--deep-green); margin-bottom: 12px; }
.yui-card p  { font-size: .95rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--slate); color: var(--white);
    font-weight: 700; font-size: .95rem; padding: 13px 30px;
    border-radius: 50px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 15px rgba(91,108,109,.25);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(91,108,109,.3); }

/* ═══════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════ */
.bottom-cta { text-align: center; padding: 80px 20px; }
.bottom-cta .connect-card { opacity: 1; animation: none; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer { text-align: center; padding: 40px 20px 60px; color: var(--text-light); }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.footer-social a {
    width: 44px; height: 44px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%;
    background: var(--white); color: var(--text-light);
    transition: all .3s; box-shadow: var(--shadow-sm); text-decoration: none;
}
.footer-social a:hover { color: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 20px; }
.footer-links a {
    color: var(--text-light); text-decoration: none;
    font-size: .82rem; text-transform: uppercase;
    letter-spacing: .08em; transition: color .3s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-copy { font-size: .78rem; opacity: .5; }

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════ */
.lightbox-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(58,74,63,.92); backdrop-filter: blur(8px);
    z-index: 200; align-items: center; justify-content: center;
    cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 90%; max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}

/* ─── SCROLL TOP ─────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; z-index: 90;
    opacity: 0; transform: translateY(20px);
    transition: opacity .3s, transform .3s, box-shadow .3s;
    color: var(--deep-green);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { box-shadow: var(--shadow-lg); color: var(--terracotta); }
.scroll-top svg { width: 20px; height: 20px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════ */
.legal-page {
    padding: 120px 20px 80px;
    min-height: 80vh;
}
.legal-page .container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
}
.legal-page h1 {
    font-family: var(--font-display); font-size: 2rem;
    color: var(--deep-green); margin-bottom: 32px;
}
.legal-page h2 { font-family: var(--font-display); font-size: 1.2rem; color: var(--deep-green); margin: 28px 0 12px; }
.legal-page p  { margin-bottom: 14px; font-size: .95rem; line-height: 1.7; }
.legal-page a  { color: var(--terracotta); }
.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--terracotta); text-decoration: none;
    font-weight: 600; font-size: .9rem;
    margin-bottom: 24px; transition: gap .3s;
}
.back-link:hover { gap: 10px; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    section { padding: 60px 0; }
    .video-grid { grid-template-columns: 1fr; }
    .legal-page .container { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════
   FLOATING CONTACT BUTTON (FAB)
   ═══════════════════════════════════════════════════════ */
.contact-fab {
    position: fixed; bottom: 28px; left: 28px; z-index: 90;
    display: flex; align-items: center; gap: 10px;
    background: var(--terracotta); color: var(--white);
    border: none; border-radius: 50px; padding: 16px 24px;
    font-family: var(--font-body); font-weight: 700; font-size: .92rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(200,116,94,.4);
    transition: transform .3s cubic-bezier(.22,1,.36,1),
                box-shadow .3s, background .3s, border-radius .3s;
    animation: fab-entrance 1s 1.5s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fab-entrance {
    from { opacity: 0; transform: translateY(40px) scale(.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(200,116,94,.45);
    background: #b8634d;
}
.contact-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.fab-label { white-space: nowrap; }

@media (max-width: 500px) {
    .contact-fab { padding: 14px; border-radius: 50%; }
    .fab-label { display: none; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT MODAL — ANIMATED
   ═══════════════════════════════════════════════════════ */
.contact-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(58,74,63,.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .4s, visibility .4s;
}
.contact-overlay.active {
    opacity: 1; visibility: visible;
}

.contact-modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    max-width: 480px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(40px) scale(.95);
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.contact-overlay.active .contact-modal {
    transform: translateY(0) scale(1);
}

.contact-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 28px;
    color: var(--text-light); cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
}
.contact-close:hover {
    background: rgba(0,0,0,.05); color: var(--text);
}

/* ─── ENVELOPE ANIMATION ─────────────────────────────── */
.contact-header { text-align: center; margin-bottom: 28px; }
.contact-header h3 {
    font-family: var(--font-display); font-size: 1.4rem;
    color: var(--deep-green); margin-bottom: 8px;
}
.contact-note {
    font-size: .88rem; color: var(--text-light);
    line-height: 1.5; max-width: 360px; margin: 0 auto;
}

.envelope-anim {
    position: relative; width: 80px; height: 60px;
    margin: 0 auto 20px; color: var(--terracotta);
}
.envelope-svg { width: 100%; height: 100%; }
.env-body {
    stroke-dasharray: 260; stroke-dashoffset: 260;
    animation: draw-env .8s .2s cubic-bezier(.22,1,.36,1) forwards;
}
.env-flap {
    stroke-dasharray: 120; stroke-dashoffset: 120;
    animation: draw-env .6s .6s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes draw-env {
    to { stroke-dashoffset: 0; }
}

.envelope-heart {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    font-size: 20px; color: var(--terracotta);
    animation: heart-pop .5s 1s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes heart-pop {
    0%   { transform: translate(-50%,-50%) scale(0) rotate(-20deg); }
    60%  { transform: translate(-50%,-50%) scale(1.3) rotate(5deg); }
    100% { transform: translate(-50%,-50%) scale(1) rotate(0deg); }
}

/* ─── FORM FIELDS ────────────────────────────────────── */
.contact-field {
    margin-bottom: 18px;
    opacity: 0; transform: translateY(15px);
    animation: field-in .5s calc(var(--delay, 0s) + .3s) cubic-bezier(.22,1,.36,1) forwards;
}
.contact-overlay:not(.active) .contact-field {
    animation: none; opacity: 0; transform: translateY(15px);
}
@keyframes field-in {
    to { opacity: 1; transform: translateY(0); }
}

.contact-field label {
    display: block; font-size: .8rem; font-weight: 600;
    color: var(--text-light); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: .95rem;
    color: var(--text); background: #fafbfa;
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--terracotta-soft);
    box-shadow: 0 0 0 3px rgba(200,116,94,.12);
    background: var(--white);
}
.contact-field textarea { resize: vertical; min-height: 100px; }

/* ─── PRIVACY CHECKBOX ───────────────────────────────── */
.contact-privacy-field { margin-top: 4px; }
.privacy-check {
    display: flex; align-items: flex-start; gap: 12px;
    cursor: pointer; font-size: .85rem; line-height: 1.5;
    color: var(--text); user-select: none;
}
.privacy-check input[type="checkbox"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}
.checkmark {
    flex-shrink: 0; width: 22px; height: 22px;
    border: 2px solid var(--border-soft);
    border-radius: 6px; background: #fafbfa;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s; margin-top: 1px;
    position: relative;
}
.checkmark::after {
    content: ''; display: block;
    width: 6px; height: 11px;
    border: solid var(--white); border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .25s cubic-bezier(.22,1,.36,1);
    margin-top: -2px;
}
.privacy-check input:checked ~ .checkmark {
    background: var(--terracotta); border-color: var(--terracotta);
    box-shadow: 0 2px 8px rgba(200,116,94,.3);
}
.privacy-check input:checked ~ .checkmark::after {
    transform: rotate(45deg) scale(1);
}
.privacy-check input:focus-visible ~ .checkmark {
    box-shadow: 0 0 0 3px rgba(200,116,94,.2);
}
.privacy-text { flex: 1; }
.privacy-text a { color: var(--terracotta); text-decoration: underline; }

/* ─── SEND BUTTON ────────────────────────────────────── */
.btn-send {
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
    background: var(--terracotta); color: var(--white);
    font-weight: 700; font-size: 1rem; font-family: var(--font-body);
    padding: 16px 32px; border-radius: 50px;
    border: none; cursor: pointer;
    box-shadow: 0 4px 18px rgba(200,116,94,.35);
    transition: transform .25s, box-shadow .25s, opacity .25s, background .25s;
    position: relative; overflow: hidden;
}
.btn-send:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,116,94,.4);
    background: #b8634d;
}
.btn-send:disabled {
    opacity: .5; cursor: not-allowed;
}
.btn-send svg { width: 18px; height: 18px; }
.btn-send.sending {
    pointer-events: none;
}
.btn-send.sending span { opacity: 0; }
.btn-send.sending::after {
    content: ''; position: absolute;
    width: 22px; height: 22px;
    border: 3px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SUCCESS STATE ──────────────────────────────────── */
.contact-success {
    text-align: center; padding: 20px 0;
    animation: fade-up .6s cubic-bezier(.22,1,.36,1);
}
.success-checkmark {
    width: 64px; height: 64px; margin: 0 auto 20px;
    color: #4caf50;
}
.success-checkmark svg { width: 100%; height: 100%; }
.success-checkmark circle {
    stroke-dasharray: 166; stroke-dashoffset: 166;
    animation: stroke-draw .6s .2s cubic-bezier(.65,0,.45,1) forwards;
}
.success-checkmark path {
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: stroke-draw .4s .6s cubic-bezier(.65,0,.45,1) forwards;
}
@keyframes stroke-draw { to { stroke-dashoffset: 0; } }
.contact-success p {
    font-size: 1rem; color: var(--text); line-height: 1.6;
    max-width: 340px; margin: 0 auto;
}

/* ─── SHAKE ──────────────────────────────────────────── */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}

/* ─── RESPONSIVE ADJUSTMENTS ─────────────────────────── */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    section { padding: 60px 0; }
    .video-grid { grid-template-columns: 1fr; }
    .legal-page .container { padding: 32px 24px; }
    .contact-modal { padding: 30px 24px; }
    .teapot-logo { width: 240px; }
}

/* ═══════════════════════════════════════════════════════
   GAMIFICATION — SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 200;
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--terracotta), #f0a890, var(--terracotta-soft), var(--tea-green));
    background-size: 300% 100%;
    animation: progress-shimmer 3s ease infinite;
    transition: width .1s linear;
    box-shadow: 0 0 8px rgba(200,116,94,.4);
}
@keyframes progress-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════════════════════
   GAMIFICATION — TILT / WOBBLE ON HOVER
   ═══════════════════════════════════════════════════════ */
.tilt-hover {
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}

/* Jelly bounce on stat cards */
.stat-card:hover {
    animation: jelly .5s;
}
@keyframes jelly {
    0%   { transform: scale(1,1); }
    25%  { transform: scale(.95,1.05); }
    50%  { transform: scale(1.05,.95); }
    75%  { transform: scale(.98,1.02); }
    100% { transform: scale(1,1); }
}

/* Wobble on offer cards */
.offer-card:hover {
    animation: wiggle .4s ease;
}
@keyframes wiggle {
    0%,100% { transform: translateY(-4px) rotate(0); }
    25%     { transform: translateY(-4px) rotate(-1.5deg); }
    75%     { transform: translateY(-4px) rotate(1.5deg); }
}

/* Video cards perspective tilt */
.video-card { transform-style: preserve-3d; perspective: 800px; }

/* Timeline items bounce-in dot */
.tl-item:hover .tl-dot {
    animation: dot-bounce .4s;
}
@keyframes dot-bounce {
    0%,100% { transform: scale(1.2); }
    50%     { transform: scale(1.5); }
}

/* QR code wiggle reminder */
.qr-frame { animation: qr-nudge 6s 3s infinite; }
@keyframes qr-nudge {
    0%,90%,100% { transform: rotate(0); }
    92% { transform: rotate(-3deg); }
    94% { transform: rotate(3deg); }
    96% { transform: rotate(-2deg); }
    98% { transform: rotate(2deg); }
}
.qr-frame:hover { animation: none; transform: scale(1.05); }

/* Connect card glow pulse */
.connect-card:hover {
    box-shadow: 0 20px 60px rgba(200,116,94,.12), 0 0 0 2px rgba(200,116,94,.1);
}

/* Personal card hover lift */
.personal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    transition: transform .35s, box-shadow .35s;
}

/* Yui card hover */
.yui-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
    transition: transform .35s, box-shadow .35s;
}
.yui-card:hover .yui-icon {
    animation: steam 1s ease infinite;
}
@keyframes steam {
    0%,100% { transform: translateY(0) rotate(0); }
    25%     { transform: translateY(-4px) rotate(-5deg); }
    75%     { transform: translateY(-2px) rotate(5deg); }
}

/* Meet flags hover */
.meet-flag { transition: transform .4s cubic-bezier(.22,1,.36,1); cursor: default; }
.meet-visual:hover .meet-flag {
    transform: scale(1.15);
    animation: flag-wave .6s ease;
}
@keyframes flag-wave {
    0%,100% { transform: scale(1.15) rotate(0); }
    25% { transform: scale(1.15) rotate(-3deg); }
    75% { transform: scale(1.15) rotate(3deg); }
}

/* ═══════════════════════════════════════════════════════
   GAMIFICATION — KAWAII BALLOON CHARACTER
   ═══════════════════════════════════════════════════════ */
.balloon-container {
    position: fixed;
    bottom: -200px;
    right: 30px;
    z-index: 80;
    pointer-events: none;
    transition: bottom 1s cubic-bezier(.22,1,.36,1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.balloon-container.visible {
    bottom: 100px;
    pointer-events: auto;
}
.balloon-container.bye {
    bottom: -200px;
    transition: bottom 1.5s cubic-bezier(.55,0,.45,1);
}

.balloon-body {
    position: relative;
    animation: balloon-float 3s ease-in-out infinite;
}
@keyframes balloon-float {
    0%,100% { transform: translateY(0) rotate(-2deg); }
    50%     { transform: translateY(-12px) rotate(2deg); }
}

.balloon-face {
    width: 100px; height: 120px;
    background: #ff9eb1;
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    position: relative;
    box-shadow: inset -8px -8px 0 rgba(0,0,0,.06),
                0 8px 25px rgba(255,158,177,.4);
    cursor: pointer;
    transition: transform .3s;
}
.balloon-face:hover {
    transform: scale(1.1);
}
/* Kawaii eyes - child elements side by side */
.balloon-eye {
    position: absolute; top: 36%;
    width: 12px; height: 12px;
    background: #3a2a2a; border-radius: 50%;
}
.balloon-eye.left  { left: 28px; }
.balloon-eye.right { right: 28px; }
/* Kawaii mouth */
.balloon-face::after {
    content: '◡'; position: absolute;
    top: 54%; left: 50%; transform: translateX(-50%);
    font-size: 24px; color: #3a2a2a;
}
/* Blush */
.balloon-blush {
    position: absolute; top: 52%;
    width: 18px; height: 11px;
    background: rgba(255,120,120,.35); border-radius: 50%;
}
.balloon-blush.left  { left: 12px; }
.balloon-blush.right { right: 12px; }

/* String */
.balloon-string {
    width: 2px; height: 40px;
    background: #d4a0a0;
    margin: 0 auto;
    position: relative;
}
.balloon-string::after {
    content: '◇';
    position: absolute;
    bottom: -14px; left: 50%;
    transform: translateX(-50%);
    font-size: 12px; color: #d4a0a0;
}

/* Speech bubble */
.balloon-speech {
    background: var(--white);
    border-radius: 18px;
    padding: 12px 18px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--deep-green);
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
    position: relative;
    text-align: center;
    max-width: 200px;
    opacity: 0;
    transform: scale(.8);
    animation: speech-pop .5s .8s cubic-bezier(.22,1,.36,1) forwards;
    line-height: 1.4;
}
.balloon-container:not(.visible) .balloon-speech {
    animation: none; opacity: 0;
}
@keyframes speech-pop {
    to { opacity: 1; transform: scale(1); }
}
.balloon-speech::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--white);
    border-bottom: 0;
}
/* Sparkle decoration */
.balloon-sparkles {
    position: absolute; top: -8px; right: -8px;
    font-size: 16px;
    animation: sparkle-rotate 2s linear infinite;
}
@keyframes sparkle-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Close balloon */
.balloon-close {
    position: absolute; top: -6px; left: -6px;
    width: 22px; height: 22px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 50%;
    font-size: 12px; line-height: 18px;
    text-align: center; cursor: pointer;
    color: var(--text-light);
    transition: all .2s;
    pointer-events: auto;
}
.balloon-close:hover {
    background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
}

@media (max-width: 500px) {
    .balloon-container { right: 15px; }
    .balloon-face { width: 70px; height: 85px; }
    .balloon-speech { font-size: .78rem; padding: 10px 14px; }
}
