/* variables and all the information from the figma, features, optimization for scalability */

:root {
    --c-deep:       #4a3341;
    --c-mid:        #6d4d6e;
    --c-purple:     #7e6991;
    --c-muted:      #a3a4be;
    --c-soft:       #e0e6e9;
    --c-cream:      #f5f2f0;
    --c-white:      #fff;
    --c-dark:       #2a1e28;
    --c-text:       #3a2e38;
    --c-text-light: #8a7e88;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --radius:    14px;
    --radius-sm: 8px;
    --shadow:    0 4px 24px rgba(74, 51, 65, .10);
    --shadow-lg: 0 12px 48px rgba(74, 51, 65, .14);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    font-family: var(--font-sans);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.65;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245, 242, 240, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 51, 65, .06);
}

/* navigation */
.nav {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 28px;
}

/* hide the real checkbox  for responsivness*/
.nav__toggle { display: none; }

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-right: auto;
}
.nav__logo span { color: var(--c-mid); }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-size: .88rem;
    font-weight: 500;
    color: var(--c-text-light);
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--c-mid);
    transition: width var(--transition);
}
.nav__link:hover            { color: var(--c-deep); }
.nav__link:hover::after     { width: 100%; }

.nav__link--cta {
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--c-deep);
    color: var(--c-white) !important;
    font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover  { background: var(--c-mid); }

/*hamburger menu hidden on desktop */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    order: 3;
}
.nav__hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--c-deep);
    transition: var(--transition);
}

/* HERO SECTION */

.hero {
    min-height: 100vh;
    padding-top: 68px;
    background: linear-gradient(135deg, var(--c-cream) 0%, #ede8ec 100%);
    display: flex;
    align-items: center;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 64px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero__text { flex: 1; max-width: 580px; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(109, 77, 110, .09);
    border: 1px solid rgba(109, 77, 110, .16);
    font-size: .78rem;
    font-weight: 600;
    color: var(--c-mid);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    line-height: 1.08;
    color: var(--c-deep);
    margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--c-mid); }

.hero__langs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero__langs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-text-light);
}
.hero__langs img { border-radius: 2px; }

.hero__desc {
    font-size: .95rem;
    color: var(--c-text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}
.btn--primary {
    background: var(--c-deep);
    color: var(--c-white);
}
.btn--primary:hover { background: var(--c-mid); transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    color: var(--c-deep);
    border: 2px solid var(--c-deep);
}
.btn--outline:hover { background: var(--c-deep); color: var(--c-white); }

.btn--light {
    background: var(--c-soft);
    color: var(--c-deep);
}
.btn--light:hover { background: var(--c-white); transform: translateY(-2px); }

.btn--sm  { padding: 9px 20px; font-size: .82rem; }
.btn--block { width: 100%; justify-content: center; }

/* Hero stats box */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 28px 36px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 150px;
}
.stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--c-deep);
    line-height: 1;
    margin-bottom: 4px;
}
.stat span {
    font-size: .78rem;
    color: var(--c-text-light);
}

/* ABOUT  */


.section { padding: 88px 0; }

.section--dark { background: var(--c-deep); color: var(--c-white); }
.section--soft { background: var(--c-white); }

.section__header {
    text-align: center;
    margin-bottom: 52px;
}

.section__tag {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    background: rgba(109, 77, 110, .08);
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-mid);
    margin-bottom: 12px;
}
.section__tag--light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
}

.section__title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--c-deep);
    line-height: 1.15;
}
.section__title--light { color: var(--c-white); }

.section__desc {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--c-text-light);
    font-size: .95rem;
}
.section__desc--light { color: rgba(255,255,255,.65); }

/* Bento grid */
.bento {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento__main {
    grid-row: 1 / 3;
    padding: 40px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.bento__lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-deep);
    margin-bottom: 16px;
    line-height: 1.6;
}
.bento__main p {
    color: var(--c-text-light);
    font-size: .93rem;
    line-height: 1.7;
    margin-top: 10px;
}

.bento__card {
    padding: 28px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento__card i  { font-size: 1.4rem; color: var(--c-mid); margin-bottom: 10px; }
.bento__card h4 { font-size: .95rem; font-weight: 700; color: var(--c-deep); margin-bottom: 5px; }
.bento__card p  { font-size: .83rem; color: var(--c-text-light); }

.bento__guarantees {
    grid-column: 1 / -1;
    padding: 32px 40px;
    background: var(--c-deep);
    border-radius: var(--radius);
    color: var(--c-white);
}
.bento__guarantees h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.gtags { display: flex; flex-wrap: wrap; gap: 10px; }
.gtags span {
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    font-size: .82rem;
    font-weight: 500;
}

/* SERVICES */

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

.dcard {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    transition: var(--transition);
}
.dcard:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.22);
}
.dcard i  { font-size: 1.6rem; color: var(--c-soft); margin-bottom: 14px; }
.dcard h3 { font-size: 1rem; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.dcard p  { font-size: .85rem; color: var(--c-muted); line-height: 1.6; }

.dcard--cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.22);
}
.dcard--cta .btn { margin-top: 16px; }

/* Citizenship */

.cit__ways {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 52px;
}

.cway {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--c-cream);
    transition: var(--transition);
}
.cway:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.cway__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-mid), var(--c-purple));
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.cway h4 { font-size: .95rem; font-weight: 700; color: var(--c-deep); margin-bottom: 6px; }
.cway p  { font-size: .82rem; color: var(--c-text-light); }

.steps__title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--c-deep);
    margin-bottom: 28px;
}

.steps__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.step {
    text-align: center;
    padding: 22px 20px;
    border-radius: var(--radius);
    background: var(--c-cream);
    min-width: 148px;
    transition: var(--transition);
}
.step:hover { box-shadow: var(--shadow); }

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c-deep);
    color: var(--c-white);
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 8px;
}
.step h4   { font-size: .9rem; font-weight: 700; color: var(--c-deep); margin-bottom: 4px; }
.step span { font-size: .76rem; color: var(--c-mid); font-weight: 600; }

.step__arrow { color: var(--c-muted); font-size: .9rem; }

.faq { max-width: 720px; margin: 0 auto; }

.faq__item {
    border-bottom: 1px solid rgba(74, 51, 65, .08);
}
.faq__item[open] .faq__q { color: var(--c-mid); }

.faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 600;
    color: var(--c-deep);
    list-style: none;
    transition: color var(--transition);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--c-mid);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
    padding: 0 0 18px;
    color: var(--c-text-light);
    font-size: .92rem;
    line-height: 1.7;
}

/* Process and testimonials */
.proc__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proc {
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.proc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.proc__num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: rgba(109, 77, 110, .12);
    line-height: 1;
    margin-bottom: 8px;
}
.proc h4 { font-size: .97rem; font-weight: 700; color: var(--c-deep); margin-bottom: 6px; }
.proc p  { font-size: .85rem; color: var(--c-text-light); line-height: 1.6; }

/* reviews */
.revs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rev {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}
.rev:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.rev::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(109, 77, 110, .09);
    position: absolute;
    top: 8px; left: 18px;
    line-height: 1;
}
.rev blockquote {
    font-size: .93rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}
.rev cite {
    font-size: .82rem;
    color: var(--c-mid);
    font-style: normal;
    font-weight: 600;
}

/* Footer section */

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: start;
}

.contact-form {
    padding: 40px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group { margin-bottom: 16px; }

.form__group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-soft);
    margin-bottom: 6px;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    color: var(--c-white);
    font-family: var(--font-sans);
    font-size: .88rem;
    transition: border-color var(--transition);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,.30); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--c-muted);
    background: rgba(255,255,255,.10);
}
.form__group select option { background: var(--c-deep); color: var(--c-white); }

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 0;
}

.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci i {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: var(--c-soft);
    font-size: 1rem;
    flex-shrink: 0;
}
.ci strong { display: block; font-size: .85rem; color: var(--c-soft); margin-bottom: 2px; }
.ci a, .ci span { font-size: .88rem; color: var(--c-muted); transition: color var(--transition); }
.ci a:hover     { color: var(--c-white); }

/* Footer */
.footer {
    background: var(--c-dark);
    color: var(--c-muted);
    padding: 48px 0 28px;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__brand .nav__logo {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: inline-block;
}
.footer__brand p { font-size: .85rem; color: var(--c-text-light); max-width: 360px; }

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__links a {
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-muted);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--c-white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: .78rem;
    color: var(--c-text-light);
}
.footer__legal { opacity: .6; }

/* Responsivness redesign */

@media (max-width: 1024px) {
    .hero__inner     { flex-direction: column; text-align: center; padding: 80px 24px 56px; }
    .hero__text      { max-width: 100%; }
    .hero__langs     { justify-content: center; }
    .hero__cta-row   { justify-content: center; }
    .hero__stats     { flex-direction: row; justify-content: center; width: 100%; }

    .bento           { grid-template-columns: 1fr; }
    .bento__main     { grid-row: auto; }

    .services__grid  { grid-template-columns: repeat(2, 1fr); }
    .cit__ways       { grid-template-columns: repeat(2, 1fr); }
    .proc__row       { grid-template-columns: repeat(2, 1fr); }
    .revs            { grid-template-columns: 1fr; }
    .contact__grid   { grid-template-columns: 1fr; }

    /* Adjusted sizing for tablets */
    .section         { padding: 64px 0; }
    .section__title  { font-size: 2.2rem; }
    .stat            { padding: 20px 24px; }
    .stat strong     { font-size: 2rem; }
    .bento__main     { padding: 28px; }
    .bento__guarantees { padding: 24px 28px; }
    .dcard           { padding: 24px 20px; }
    .proc            { padding: 28px 20px; }
    .rev             { padding: 28px 24px; }
    .contact-form    { padding: 28px; }
}

@media (max-width: 768px) {
    .hero__title { font-size: 2.4rem; }
    .section__title { font-size: 2rem; }

    /* Mobile nav */
    .nav__hamburger { display: flex; }
    .nav__menu {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--c-cream);
        flex-direction: column;
        padding: 20px 24px;
        gap: 12px;
        box-shadow: var(--shadow);
        z-index: 99;
    }
    .nav__toggle:checked ~ .nav__menu { display: flex; }
    .nav__toggle:checked ~ .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle:checked ~ .nav__hamburger span:nth-child(2) { opacity: 0; }
    .nav__toggle:checked ~ .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .steps__row      { flex-direction: column; align-items: center; }
    .step__arrow     { transform: rotate(90deg); }

    .footer__row     { flex-direction: column; gap: 20px; }
    .footer__bottom  { flex-direction: column; gap: 8px; text-align: center; }

    .hero__desc        { font-size: .9rem; }
    .badge             { font-size: .72rem; padding: 5px 12px; }
    .bento__lead       { font-size: .95rem; }
    .bento__card h4    { font-size: .88rem; }
    .bento__card p     { font-size: .8rem; }
    .cway              { padding: 20px 12px; }
    .cway h4           { font-size: .88rem; }
    .steps__title      { font-size: 1.3rem; }
    .faq__q            { font-size: .9rem; padding: 14px 0; }
    .proc__num         { font-size: 2rem; }
    .ci i              { width: 38px; height: 38px; font-size: .9rem; }

    .hero__cta-row .btn {
        padding: 14px 28px;
        font-size: .92rem;
    }

    .mascot__figure img { width: 72px; height: 72px; }
    .mascot { right: 12px; bottom: 90px; z-index: 95; } 
}

@media (max-width: 480px) {
    .hero__title     { font-size: 2rem; }
    .hero__stats     { flex-direction: column; }
    .services__grid  { grid-template-columns: 1fr; }
    .cit__ways       { grid-template-columns: 1fr; }
    .proc__row       { grid-template-columns: 1fr; }
    .form__row       { grid-template-columns: 1fr; }

    /* Tighten spacing on small phones */
    .section         { padding: 48px 0; }
    .section__header { margin-bottom: 32px; }
    .container       { padding: 0 16px; }
    .hero__inner     { padding: 60px 16px 40px; }
    .hero__title     { font-size: 1.75rem; }
    .section__title  { font-size: 1.6rem; }
    .btn             { padding: 11px 22px; font-size: .84rem; }
    .stat            { padding: 18px 20px; min-width: auto; }
    .stat strong     { font-size: 1.8rem; }
    .mascot__figure img { width: 60px; height: 60px; }
    .mascot__tooltip { font-size: .78rem; min-width: 160px; right: 0; }
}

.mobile-only-banner {
    display: none;
    background: linear-gradient(135deg, rgba(109,77,110,.06) 0%, rgba(126,105,145,.08) 100%);
    border-bottom: 1px solid rgba(109,77,110,.08);
}
.mobile-only-banner__inner {
    padding: 20px 16px;
    text-align: center;
}
.mobile-only-banner__inner i {
    display: block;
    margin-bottom: 6px;
}
.mobile-only-banner__inner h2 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.mobile-only-banner__inner p {
    font-size: .85rem;
}

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 10px 16px;
    background: rgba(245, 242, 240, .96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(74, 51, 65, .08);
    box-shadow: 0 -4px 20px rgba(74, 51, 65, .10);
}
.mobile-cta-bar .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
}

@media (max-width: 768px) {
    .mobile-only-banner { display: block; }
    .mobile-cta-bar     { display: block; }
    /* Add bottom padding to body so footer isn't hidden behind sticky CTA */
    body { padding-bottom: 64px; }
}

.mascot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 95;
    opacity: 0;
    transform: translateY(40px) scale(.8);
    animation: mascotEnter .8s cubic-bezier(.34,1.56,.64,1) 3s forwards;
    cursor: pointer;
}

@keyframes mascotEnter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mascot__figure {
    position: relative;
}

.mascot__figure img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-white);
    box-shadow: 0 6px 28px rgba(74, 51, 65, .22);
    animation: mascotBounce 2.4s ease-in-out infinite;
    transition: transform .2s ease;
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-10px) rotate(3deg); }
    50%      { transform: translateY(0) rotate(0deg); }
    75%      { transform: translateY(-6px) rotate(-2deg); }
}

.mascot:hover .mascot__figure img {
    animation-play-state: paused;
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(74, 51, 65, .30);
}

.mascot__tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: var(--c-white);
    color: var(--c-text);
    font-size: .85rem;
    line-height: 1.5;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}

/* Tooltip arrow */
.mascot__tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 28px;
    width: 14px;
    height: 14px;
    background: var(--c-white);
    transform: rotate(45deg);
    box-shadow: 3px 3px 6px rgba(74, 51, 65, .06);
}

.mascot:hover .mascot__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
